From a63ddbfa68154676e82cc8e003a0381c10ea01fc Mon Sep 17 00:00:00 2001 From: Fluffy <65877598+FluffyGhoster@users.noreply.github.com> Date: Thu, 27 Jun 2024 20:04:33 +0200 Subject: [PATCH] Removes the Aurora map (#19534) --- .github/labeler.yml | 3 - .github/workflows/byond.yml | 2 +- aurorastation.dme | 5 - code/modules/shuttles/escape_pods.dm | 566 + .../fluffyghost-goodbyeoldfriend.yml | 58 + maps/aurora/aurora-1_centcomm.dmm | 106290 ------------ maps/aurora/aurora-2_under-station.dmm | 66110 ------- maps/aurora/aurora-3_sublevel.dmm | 101807 ----------- maps/aurora/aurora-4_mainlevel.dmm | 135164 --------------- maps/aurora/aurora-5_interstitial.dmm | 77148 -------- maps/aurora/aurora-6_surface.dmm | 93376 ---------- maps/aurora/code/aurora.dm | 111 - maps/aurora/code/aurora_holodeck.dm | 94 - maps/aurora/code/aurora_lifts.dm | 345 - maps/aurora/code/aurora_shuttles.dm | 562 - maps/aurora/code/aurora_unittest.dm | 65 - maps/event/generic_dock/code/generic_dock.dm | 4 - maps/runtime/code/runtime.dm | 17 + 18 files changed, 642 insertions(+), 581085 deletions(-) create mode 100644 html/changelogs/fluffyghost-goodbyeoldfriend.yml delete mode 100644 maps/aurora/aurora-1_centcomm.dmm delete mode 100644 maps/aurora/aurora-2_under-station.dmm delete mode 100644 maps/aurora/aurora-3_sublevel.dmm delete mode 100644 maps/aurora/aurora-4_mainlevel.dmm delete mode 100644 maps/aurora/aurora-5_interstitial.dmm delete mode 100644 maps/aurora/aurora-6_surface.dmm delete mode 100644 maps/aurora/code/aurora.dm delete mode 100644 maps/aurora/code/aurora_holodeck.dm delete mode 100644 maps/aurora/code/aurora_lifts.dm delete mode 100644 maps/aurora/code/aurora_shuttles.dm delete mode 100644 maps/aurora/code/aurora_unittest.dm diff --git a/.github/labeler.yml b/.github/labeler.yml index c40688ff851..a477063ea7e 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -2,9 +2,6 @@ Database: - SQL/** -'🗺️ Mapping - Aurora': -- maps/aurora/** - '🗺️ Mapping - Away Ship/Away Site': - maps/away/** diff --git a/.github/workflows/byond.yml b/.github/workflows/byond.yml index 071e65e872e..456f3af4dea 100644 --- a/.github/workflows/byond.yml +++ b/.github/workflows/byond.yml @@ -582,7 +582,7 @@ jobs: strategy: matrix: - map: [runtime, aurora, sccv_horizon, exoplanet_testing] + map: [runtime, sccv_horizon, exoplanet_testing] pod: [maptest] fail-fast: false diff --git a/aurorastation.dme b/aurorastation.dme index c6c3275facb..132bfb66bed 100644 --- a/aurorastation.dme +++ b/aurorastation.dme @@ -3767,11 +3767,6 @@ #include "maps\_common\areas\station\storage.dm" #include "maps\_common\mapsystem\map.dm" #include "maps\_common\mapsystem\map_unit.dm" -#include "maps\aurora\code\aurora.dm" -#include "maps\aurora\code\aurora_holodeck.dm" -#include "maps\aurora\code\aurora_lifts.dm" -#include "maps\aurora\code\aurora_shuttles.dm" -#include "maps\aurora\code\aurora_unittest.dm" #include "maps\away\away_sites.dm" #include "maps\away\away_site\abandoned_diner\abandoned_diner.dm" #include "maps\away\away_site\abandoned_diner\abandoned_diner_areas.dm" diff --git a/code/modules/shuttles/escape_pods.dm b/code/modules/shuttles/escape_pods.dm index 6c95c65e149..93923be9ac8 100644 --- a/code/modules/shuttles/escape_pods.dm +++ b/code/modules/shuttles/escape_pods.dm @@ -167,3 +167,569 @@ var/list/escape_pods_by_name = list() /datum/computer/file/embedded_program/docking/simple/escape_pod/prepare_for_undocking() eject_time = world.time + eject_delay*10 + + +/* OLD AURORA SHIT */ + +#define AURORA_ESCAPE_POD(NUMBER) \ +/datum/shuttle/autodock/ferry/escape_pod/pod/escape_pod##NUMBER { \ + name = "Escape Pod " + #NUMBER; \ + shuttle_area = /area/shuttle/escape_pod/pod##NUMBER; \ + location = 0; \ + dock_target = "escape_pod_" + #NUMBER; \ + arming_controller = "escape_pod_"+ #NUMBER +"_berth"; \ + waypoint_station = "escape_pod_"+ #NUMBER +"_start"; \ + landmark_transition = "escape_pod_"+ #NUMBER +"_interim"; \ + waypoint_offsite = "escape_pod_"+ #NUMBER +"_out"; \ +} \ +/obj/effect/shuttle_landmark/escape_pod/start/pod##NUMBER { \ + landmark_tag = "escape_pod_"+ #NUMBER +"_start"; \ + docking_controller = "escape_pod_" + #NUMBER +"_berth"; \ +} \ +/obj/effect/shuttle_landmark/escape_pod/out/pod##NUMBER { \ + landmark_tag = "escape_pod_"+ #NUMBER +"_out"; \ +} \ +/obj/effect/shuttle_landmark/escape_pod/transit/pod##NUMBER { \ + landmark_tag = "escape_pod_"+ #NUMBER +"_interim"; \ +} + +AURORA_ESCAPE_POD(1) +AURORA_ESCAPE_POD(2) +AURORA_ESCAPE_POD(3) +AURORA_ESCAPE_POD(4) + +#undef AURORA_ESCAPE_POD + +/datum/shuttle/autodock/ferry/escape_pod/pod + category = /datum/shuttle/autodock/ferry/escape_pod/pod + sound_takeoff = 'sound/effects/rocket.ogg' + sound_landing = 'sound/effects/rocket_backwards.ogg' + warmup_time = 10 + +/obj/effect/shuttle_landmark/escape_pod/start + name = "Docked" + base_turf = /turf/simulated/floor/reinforced/airless + base_area = /area/mine/explored + +/obj/effect/shuttle_landmark/escape_pod/transit + name = "In transit" + base_turf = /turf/space/transit/east + +/obj/effect/shuttle_landmark/escape_pod/out + name = "Escaped" + base_turf = /turf/space/dynamic + +//-// Transfer Shuttle //-// + +/datum/shuttle/autodock/ferry/emergency/aurora + name = "Escape Shuttle" + location = 1 + warmup_time = 10 + shuttle_area = /area/shuttle/escape + dock_target = "escape_shuttle" + waypoint_station = "nav_emergency_dock" + landmark_transition = "nav_emergency_interim" + waypoint_offsite = "nav_emergency_start" + +/obj/effect/shuttle_landmark/emergency/start + name = "Escape Shuttle Centcom Dock" + landmark_tag = "nav_emergency_start" + docking_controller = "centcom_dock" + base_turf = /turf/unsimulated/floor/plating + base_area = /area/centcom/evac + +/obj/effect/shuttle_landmark/emergency/interim + name = "In Transit" + landmark_tag = "nav_emergency_interim" + base_turf = /turf/space/transit/bluespace/south + +/obj/effect/shuttle_landmark/emergency/dock + name = "Escape Shuttle Dock" + landmark_tag = "nav_emergency_dock" + docking_controller = "escape_dock" + landmark_flags = SLANDMARK_FLAG_AUTOSET + +//-// Arrival Shuttle //-// + +/datum/shuttle/autodock/ferry/arrival/aurora + name = "Arrival Shuttle" + location = 1 + warmup_time = 10 + shuttle_area = /area/shuttle/arrival + move_time = 60 + dock_target = "arrival_shuttle" + waypoint_station = "nav_arrival_dock" + landmark_transition = "nav_arrival_interim" + waypoint_offsite = "nav_arrival_start" + +/obj/effect/shuttle_landmark/arrival/start + name = "Arrival Shuttle Centcom Dock" + landmark_tag = "nav_arrival_start" + docking_controller = "centcom_setup" + base_turf = /turf/unsimulated/floor/plating + base_area = /area/centcom/spawning + +/obj/effect/shuttle_landmark/arrival/interim + name = "In Transit" + landmark_tag = "nav_arrival_interim" + base_turf = /turf/space/transit/bluespace/west + +/obj/effect/shuttle_landmark/arrival/dock + name = "Arrival Shuttle Dock" + landmark_tag = "nav_arrival_dock" + docking_controller = "arrival_dock" + landmark_flags = SLANDMARK_FLAG_AUTOSET + +//-// Supply Shuttle //-// + +/datum/shuttle/autodock/ferry/supply/aurora + name = "Supply Shuttle" + location = 1 + shuttle_area = /area/supply/dock + dock_target = "supply_shuttle" + waypoint_station = "nav_supply_dock" + waypoint_offsite = "nav_supply_start" + +/obj/effect/shuttle_landmark/supply/start + name = "Supply Centcom Dock" + landmark_tag = "nav_supply_start" + base_turf = /turf/unsimulated/floor/plating + base_area = /area/centcom + +/obj/effect/shuttle_landmark/supply/dock + name = "Supply Shuttle Dock" + landmark_tag = "nav_supply_dock" + docking_controller = "cargo_bay" + landmark_flags = SLANDMARK_FLAG_AUTOSET + +//-// Merchant Shuttle //-// + +/datum/shuttle/autodock/ferry/merchant_aurora + name = "ICV Enterprise" + location = 1 + warmup_time = 10 + shuttle_area = /area/shuttle/merchant + move_time = 20 + dock_target = "merchant_shuttle" + waypoint_station = "nav_merchant_dock" + landmark_transition = "nav_merchant_interim" + waypoint_offsite = "nav_merchant_start" + +/obj/effect/shuttle_landmark/merchant/start + name = "Merchant Shuttle Base" + landmark_tag = "nav_merchant_start" + docking_controller = "merchant_station" + base_turf = /turf/space/dynamic + base_area = /area/template_noop + +/obj/effect/shuttle_landmark/merchant/interim + name = "In Transit" + landmark_tag = "nav_merchant_interim" + base_turf = /turf/space/transit/bluespace/west + +/obj/effect/shuttle_landmark/merchant/dock + name = "Second Deck Starboard Dock 1" + landmark_tag = "nav_merchant_dock" + docking_controller = "merchant_shuttle_dock" + base_turf = /turf/space + base_area = /area/space + +//-// CCIA Shuttle //-// + +/datum/shuttle/autodock/ferry/autoreturn/ccia + name = "SCC Shuttle" + location = 1 + warmup_time = 10 + shuttle_area = /area/shuttle/transport1 + dock_target = "centcom_shuttle" + waypoint_station = "nav_ccia_dock" + waypoint_offsite = "nav_ccia_start" + category = /datum/shuttle/autodock/ferry/autoreturn + +/obj/effect/shuttle_landmark/ccia/start + name = "Agent Shuttle Base" + landmark_tag = "nav_ccia_start" + docking_controller = "centcom_shuttle_bay" + base_turf = /turf/unsimulated/floor/plating + base_area = /area/centcom/ferry + +/obj/effect/shuttle_landmark/ccia/dock + name = "Second Deck Starboard Dock 2" + landmark_tag = "nav_ccia_dock" + docking_controller = "centcom_shuttle_dock_airlock" + landmark_flags = SLANDMARK_FLAG_AUTOSET + +//-// ERT Shuttle (the NT one) //-// + +/datum/shuttle/autodock/ferry/specops/ert_aurora + name = "Phoenix Shuttle" + location = 1 + warmup_time = 10 + shuttle_area = /area/shuttle/specops + dock_target = "specops_shuttle_port" + waypoint_station = "nav_horizon_dock_deck_3_port_5" + waypoint_offsite = "nav_ert_start" + +/obj/effect/shuttle_landmark/ert/start + name = "Phoenix Base" + landmark_tag = "nav_ert_start" + docking_controller = "specops_centcom_dock" + base_turf = /turf/unsimulated/floor/plating + base_area = /area/centcom/specops + +/obj/effect/shuttle_landmark/ert/dock + name = "Third Deck Port Dock 3" + landmark_tag = "nav_horizon_dock_deck_3_port_5" + docking_controller = "specops_dock_airlock" + special_dock_targets = list("Phoenix Shuttle" = "specops_shuttle_fore") + landmark_flags = SLANDMARK_FLAG_AUTOSET + +//-// Burglar Shuttle //-// + +/datum/shuttle/autodock/multi/antag/burglar_aurora + name = "Water Bear" + current_location = "nav_burglar_start" + landmark_transition = "nav_burglar_interim" + dock_target = "burglar_shuttle" + warmup_time = 10 + move_time = 75 + shuttle_area = /area/shuttle/burglar + destination_tags = list( + "nav_burglar_start", + "nav_burglar_surface", + "nav_burglar_under", + "nav_burglar_caverns", + "nav_burglar_blue" + ) + + announcer = "NDV Icarus" + arrival_message = "Attention, we just tracked a small target bypassing our defensive perimeter. Can't fire on it without hitting the station - you've got incoming visitors, like it or not." + departure_message = "Attention, your guests are pulling away - moving too fast for us to draw a bead on them. Looks like they're heading out of the system at a rapid clip." + +/obj/effect/shuttle_landmark/burglar/start + name = "Hideout" + landmark_tag = "nav_burglar_start" + docking_controller = "burglar_hideout" + base_turf = /turf/unsimulated/floor/plating + base_area = /area/antag/burglar + +/obj/effect/shuttle_landmark/burglar/interim + name = "In Transit" + landmark_tag = "nav_burglar_interim" + base_turf = /turf/space/transit/north + +/obj/effect/shuttle_landmark/burglar/surface + name = "Exposed Hull, Surface Aft of Cargo" + landmark_tag = "nav_burglar_surface" + landmark_flags = SLANDMARK_FLAG_AUTOSET + +/obj/effect/shuttle_landmark/burglar/under + name = "Under the Station, By Radiators" + landmark_tag = "nav_burglar_under" + base_turf = /turf/space + landmark_flags = SLANDMARK_FLAG_AUTOSET + +/obj/effect/shuttle_landmark/burglar/caverns + name = "Caverns, Fore of Mining" + landmark_tag = "nav_burglar_caverns" + landmark_flags = SLANDMARK_FLAG_AUTOSET + +/obj/effect/shuttle_landmark/burglar/blue + name = "Blue Dock" + landmark_tag = "nav_burglar_blue" + landmark_flags = SLANDMARK_FLAG_AUTOSET + docking_controller = "distress_shuttle_dock" + +//-// Raider Skipjack //-// + +/datum/shuttle/autodock/multi/antag/skipjack_aurora + name = "Skipjack" + current_location = "nav_skipjack_start" + landmark_transition = "nav_skipjack_interim" + dock_target = "raider_east_control" + warmup_time = 10 + move_time = 75 + shuttle_area = /area/shuttle/skipjack + destination_tags = list( + "nav_skipjack_start", + "nav_skipjack_surface", + "nav_skipjack_under", + "nav_skipjack_caverns", + "nav_skipjack_interstitial", + "nav_skipjack_toxins" + ) + + announcer = "NDV Icarus" + arrival_message = "Attention, we just tracked a small target bypassing our defensive perimeter. Can't fire on it without hitting the station - you've got incoming visitors, like it or not." + departure_message = "Attention, your guests are pulling away - moving too fast for us to draw a bead on them. Looks like they're heading out of the system at a rapid clip." + +/obj/effect/shuttle_landmark/skipjack/start + name = "Raider Hideout" + landmark_tag = "nav_skipjack_start" + docking_controller = "pirate_hideout" + base_turf = /turf/space/dynamic + base_area = /area/template_noop + +/obj/effect/shuttle_landmark/skipjack/interim + name = "In Transit" + landmark_tag = "nav_skipjack_interim" + base_turf = /turf/space/transit/north + +/obj/effect/shuttle_landmark/skipjack/surface + name = "Surface, Aft of Cargo" + landmark_tag = "nav_skipjack_surface" + landmark_flags = SLANDMARK_FLAG_AUTOSET + +/obj/effect/shuttle_landmark/skipjack/under + name = "Under the Station, By Radiators" + landmark_tag = "nav_skipjack_under" + landmark_flags = SLANDMARK_FLAG_AUTOSET + base_turf = /turf/space/dynamic + +/obj/effect/shuttle_landmark/skipjack/caverns + name = "Caverns, Aft of Mining" + landmark_tag = "nav_skipjack_caverns" + landmark_flags = SLANDMARK_FLAG_AUTOSET + +/obj/effect/shuttle_landmark/skipjack/interstitial + name = "Interstitial, Exposed Hull by Medical" + landmark_tag = "nav_skipjack_interstitial" + landmark_flags = SLANDMARK_FLAG_AUTOSET + +/obj/effect/shuttle_landmark/skipjack/toxins + name = "Caverns, By Bombrange" + landmark_tag = "nav_skipjack_toxins" + landmark_flags = SLANDMARK_FLAG_AUTOSET + +//-// Mercenary Shuttle //-// + +/datum/shuttle/autodock/multi/antag/merc_aurora + name = "ICV Raskolnikov" + current_location = "nav_merc_start" + landmark_transition = "nav_merc_interim" + dock_target = "merc_shuttle" + warmup_time = 10 + move_time = 75 + shuttle_area = /area/shuttle/mercenary + destination_tags = list( + "nav_merc_dock", + "nav_merc_start", + "nav_merc_surface", + "nav_merc_under", + "nav_merc_caverns" + ) + + announcer = "NDV Icarus" + arrival_message = "Attention, you have a large signature approaching the station - looks unarmed to surface scans. We're too far out to intercept - brace for visitors." + departure_message = "Attention, your visitors are on their way out of the system, burning delta-v like it's nothing. Good riddance." + +/obj/effect/shuttle_landmark/merc/start + name = "Mercenary Base" + landmark_tag = "nav_merc_start" + docking_controller = "merc_base" + base_turf = /turf/space/dynamic + base_area = /area/template_noop + +/obj/effect/shuttle_landmark/merc/interim + name = "In Transit" + landmark_tag = "nav_merc_interim" + base_turf = /turf/space/transit/north + +/obj/effect/shuttle_landmark/merc/dock + name = "Yellow Dock" + landmark_tag = "nav_merc_dock" + docking_controller = "nuke_shuttle_dock_airlock" + landmark_flags = SLANDMARK_FLAG_AUTOSET + +/obj/effect/shuttle_landmark/merc/surface + name = "Surface, Aft of Command" + landmark_tag = "nav_merc_surface" + landmark_flags = SLANDMARK_FLAG_AUTOSET + +/obj/effect/shuttle_landmark/merc/under + name = "Under the Station, At Radiators" + landmark_tag = "nav_merc_under" + landmark_flags = SLANDMARK_FLAG_AUTOSET + base_turf = /turf/space/dynamic + +/obj/effect/shuttle_landmark/merc/caverns + name = "Caverns, Fore of Security" + landmark_tag = "nav_merc_caverns" + landmark_flags = SLANDMARK_FLAG_AUTOSET + +//-// Merc Elite Shuttle //-// + +/datum/shuttle/autodock/multi/merc_aurora_elite + name = "Merc Elite" + current_location = "nav_mercelite_start" + warmup_time = 10 + shuttle_area = /area/shuttle/syndicate_elite + dock_target = "elite_shuttle_starboard" + destination_tags = list( + "nav_mercelite_start", + "nav_mercelite_command", + "nav_mercelite_merchant", + "nav_mercelite_yellow", + "nav_mercelite_green" + ) + +/obj/effect/shuttle_landmark/merc_elite/start + name = "Shuttle Hangar" + landmark_tag = "nav_mercelite_start" + docking_controller = "elite_shuttle_origin" + base_turf = /turf/unsimulated/floor/plating + base_area = /area/antag/mercenary + +/obj/effect/shuttle_landmark/merc_elite/command + name = "Command Surface - Maintenance" + landmark_tag = "nav_mercelite_command" + docking_controller = "command_surface_airlock" + landmark_flags = SLANDMARK_FLAG_AUTOSET + +/obj/effect/shuttle_landmark/merc_elite/merchant + name = "Merchant Dock" + landmark_tag = "nav_mercelite_merchant" + docking_controller = "merchant_shuttle_dock" + special_dock_targets = list("Merc Elite" = "elite_shuttle_port") + landmark_flags = SLANDMARK_FLAG_AUTOSET + +/obj/effect/shuttle_landmark/merc_elite/yellow + name = "Yellow Dock" + landmark_tag = "nav_mercelite_yellow" + docking_controller = "nuke_shuttle_dock_airlock" + landmark_flags = SLANDMARK_FLAG_AUTOSET + +/obj/effect/shuttle_landmark/merc_elite/green + name = "Emergency Services Dock" + landmark_tag = "nav_mercelite_green" + docking_controller = "green_dock_west" + landmark_flags = SLANDMARK_FLAG_AUTOSET + +//-// TCFL Dropship //-// + +/datum/shuttle/autodock/multi/legion + name = "Legion Shuttle" + current_location = "nav_legion_start" + warmup_time = 10 + move_time = 75 + ceiling_type = /turf/simulated/shuttle_roof/legion + shuttle_area = /area/shuttle/legion + dock_target = "legion_shuttle" + landmark_transition = "nav_legion_interim" + destination_tags = list( + "nav_legion_start", + "nav_legion_green", + "nav_legion_merchant", + "nav_legion_medical" + ) + +/obj/effect/shuttle_landmark/legion/start + name = "BLV The Tower" + landmark_tag = "nav_legion_start" + docking_controller = "legion_hangar" + base_turf = /turf/unsimulated/floor/plating + base_area = /area/centcom/legion/hangar5 + +/obj/effect/shuttle_landmark/legion/interim + name = "In Transit" + landmark_tag = "nav_legion_interim" + base_turf = /turf/space/transit/bluespace/west + +/obj/effect/shuttle_landmark/legion/green + name = "Third Deck Port Dock 1" + landmark_tag = "nav_legion_green" + docking_controller = "legion_shuttle_dock" + landmark_flags = SLANDMARK_FLAG_AUTOSET + +/obj/effect/shuttle_landmark/legion/merchant + name = "Merchant Dock" + landmark_tag = "nav_legion_merchant" + docking_controller = "merchant_shuttle_dock" + special_dock_targets = list("Legion Shuttle" = "legion_shuttle_aft_airlock") + landmark_flags = SLANDMARK_FLAG_AUTOSET + +/obj/effect/shuttle_landmark/legion/medical + name = "External Airlock by Medical" + landmark_tag = "nav_legion_medical" + landmark_flags = SLANDMARK_FLAG_AUTOSET + +//-// Research Shuttle //-// + +/datum/shuttle/autodock/multi/research_aurora + name = "Research Shuttle" + current_location = "nav_research_dock" + warmup_time = 10 + move_time = 60 + shuttle_area = /area/shuttle/research + dock_target = "science_shuttle" + landmark_transition = "nav_research_interim" + destination_tags = list( + "nav_research_dock", + "nav_research_yellow", + "nav_research_away" + ) + +/obj/effect/shuttle_landmark/research/start + name = "Research Dock" + landmark_tag = "nav_research_dock" + docking_controller = "science_bridge" + base_turf = /turf/unsimulated/floor/asteroid/ash + base_area = /area/mine/explored + +/obj/effect/shuttle_landmark/research/yellow + name = "Yellow Dock" + landmark_tag = "nav_research_yellow" + docking_controller = "yellow_shuttle_dock_airlock" + landmark_flags = SLANDMARK_FLAG_AUTOSET + +/obj/effect/shuttle_landmark/research/interim + name = "In Transit" + landmark_tag = "nav_research_interim" + base_turf = /turf/space/transit/north + +/obj/effect/shuttle_landmark/research/dock + name = "Away Site" + landmark_tag = "nav_research_away" + landmark_flags = SLANDMARK_FLAG_AUTOSET + +//-// Distress Team Shuttle //-// + +/datum/shuttle/autodock/multi/distress + name = "Distress Shuttle" + current_location = "nav_distress_away" + warmup_time = 10 + move_time = 45 + dock_target = "distress_shuttle_aft" + shuttle_area = /area/shuttle/distress + landmark_transition = "nav_distress_interim" + destination_tags = list( + "nav_distress_away", + "nav_distress_green", + "nav_distress_blue" + ) + +/obj/effect/shuttle_landmark/distress/start + name = "Distress Preparation Wing" + landmark_tag = "nav_distress_away" + docking_controller = "distress_shuttle_origin" + base_turf = /turf/unsimulated/floor/plating + base_area = /area/centcom/distress_prep + +/obj/effect/shuttle_landmark/distress/interim + name = "In Transit" + landmark_tag = "nav_distress_interim" + base_turf = /turf/space/transit/bluespace/west + +/obj/effect/shuttle_landmark/distress/green + name = "Emergency Services Dock" + landmark_tag = "nav_distress_green" + docking_controller = "green_dock_west" + special_dock_targets = list("Distress Shuttle" = "distress_shuttle_fore") + landmark_flags = SLANDMARK_FLAG_AUTOSET + +/obj/effect/shuttle_landmark/distress/blue + name = "First Deck Port Hangar Bay 2b" + landmark_tag = "nav_distress_blue" + special_dock_targets = list("Distress Shuttle" = "distress_shuttle_fore") + landmark_flags = SLANDMARK_FLAG_AUTOSET + base_turf = /turf/simulated/floor/plating diff --git a/html/changelogs/fluffyghost-goodbyeoldfriend.yml b/html/changelogs/fluffyghost-goodbyeoldfriend.yml new file mode 100644 index 00000000000..d851ad57ac3 --- /dev/null +++ b/html/changelogs/fluffyghost-goodbyeoldfriend.yml @@ -0,0 +1,58 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# - (fixes bugs) +# wip +# - (work in progress) +# qol +# - (quality of life) +# soundadd +# - (adds a sound) +# sounddel +# - (removes a sound) +# rscadd +# - (adds a feature) +# rscdel +# - (removes a feature) +# imageadd +# - (adds an image or sprite) +# imagedel +# - (removes an image or sprite) +# spellcheck +# - (fixes spelling or grammar) +# experiment +# - (experimental change) +# balance +# - (balance changes) +# code_imp +# - (misc internal code change) +# refactor +# - (refactors code) +# config +# - (makes a change to the config files) +# admin +# - (makes changes to administrator tools) +# server +# - (miscellaneous changes to server) +################################# + +# Your name. +author: FluffyGhost + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - rscdel: "Removed the old Aurora map." diff --git a/maps/aurora/aurora-1_centcomm.dmm b/maps/aurora/aurora-1_centcomm.dmm deleted file mode 100644 index bfe40566f20..00000000000 --- a/maps/aurora/aurora-1_centcomm.dmm +++ /dev/null @@ -1,106290 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/obj/machinery/door/window/southleft{ - name = "CCIAP Penny" - }, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/mob/living/simple_animal/cat/penny, -/turf/unsimulated/floor{ - icon_state = "carpet" - }, -/area/centcom/control) -"aab" = ( -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "escapeshuttle_leave"; - teleport_x = 25; - teleport_x_offset = 245; - teleport_y = 25; - teleport_y_offset = 245; - teleport_z = 6; - teleport_z_offset = 6 - }, -/turf/space/transit/bluespace/west, -/area/template_noop) -"aac" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/fake_object{ - dir = 4; - icon = 'icons/obj/recycling.dmi'; - icon_state = "conveyor0"; - name = "conveyor" - }, -/obj/structure/closet/crate/loot{ - desc = "The old dusty labels on this crate indicate that it was supposed to be shipped long ago."; - name = "forgotten shipment" - }, -/turf/unsimulated/floor/plating, -/area/antag/raider) -"aad" = ( -/obj/structure/table/wood, -/obj/machinery/chemical_dispenser/bar_soft/full{ - pixel_y = 7 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"aae" = ( -/obj/structure/table/wood, -/obj/machinery/chemical_dispenser/bar_alc/full{ - pixel_y = 7 - }, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/circuit.dmi'; - icon_state = "bcircuit" - }, -/area/antag/wizard) -"aaf" = ( -/obj/structure/table/wood, -/obj/item/storage/box/fancy/matches{ - pixel_x = -8; - pixel_y = -1 - }, -/obj/item/storage/box/fancy/matches{ - pixel_x = -8; - pixel_y = 11 - }, -/obj/item/reagent_containers/food/drinks/flask/barflask{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/flask/barflask{ - pixel_x = 6; - pixel_y = 6 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"aag" = ( -/obj/structure/table/wood, -/obj/item/storage/backpack/satchel/leather/withwallet, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"aah" = ( -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"aai" = ( -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/circuit.dmi'; - icon_state = "bcircuit" - }, -/area/antag/wizard) -"aaj" = ( -/obj/structure/table/wood, -/obj/item/device/radio/intercom/north{ - desc = "Talk through this. Evilly"; - frequency = 1213; - name = "Syndicate Intercom"; - subspace_transmission = 1; - syndie = 1 - }, -/obj/item/stack/packageWrap, -/obj/item/device/hand_labeler, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"aak" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - on = 0; - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/clothing/mask/gas/vaurca/filter, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"aal" = ( -/obj/machinery/light/small{ - brightness_power = 0.5; - dir = 1; - name = "adjusted light fixture" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"aam" = ( -/obj/machinery/vending/snack{ - name = "hacked Getmore Chocolate Corp"; - prices = list() - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"aan" = ( -/obj/structure/mirror{ - pixel_x = 27; - pixel_y = -2 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"aao" = ( -/obj/item/modular_computer/console/preset/civilian, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"aap" = ( -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "escapeshuttle_leave"; - teleport_x = 25; - teleport_x_offset = 245; - teleport_y = 25; - teleport_y_offset = 245; - teleport_z = 6; - teleport_z_offset = 6 - }, -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "escapeshuttle_leave"; - teleport_x = 25; - teleport_x_offset = 245; - teleport_y = 25; - teleport_y_offset = 245; - teleport_z = 6; - teleport_z_offset = 6 - }, -/turf/space/transit/bluespace/south, -/area/template_noop) -"aaq" = ( -/turf/space/transit/bluespace/south, -/area/template_noop) -"aar" = ( -/obj/machinery/librarycomp, -/obj/structure/table/wood, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"aas" = ( -/turf/unsimulated/mineral/asteroid, -/area/antag/raider) -"aat" = ( -/obj/structure/bed/stool/chair/shuttle, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 28 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 19 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/specops) -"aau" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "1,4"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/specops) -"aav" = ( -/turf/simulated/wall/shuttle/unique/ert{ - icon_state = "8,3" - }, -/area/shuttle/specops) -"aaw" = ( -/obj/structure/table/wood, -/obj/item/storage/box/fountainpens{ - pixel_x = -10; - pixel_y = 9 - }, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/pen/fountain/black{ - pixel_x = 5; - pixel_y = 7 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"aax" = ( -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "escapeshuttle_leave"; - teleport_x = 25; - teleport_x_offset = 245; - teleport_y = 25; - teleport_y_offset = 245; - teleport_z = 6; - teleport_z_offset = 6 - }, -/turf/space/transit/bluespace/south, -/area/template_noop) -"aay" = ( -/turf/simulated/wall/shuttle/unique/ert{ - icon_state = "8,1" - }, -/area/shuttle/specops) -"aaz" = ( -/obj/structure/closet/secure_closet{ - req_access = list(150) - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1337; - id_tag = "burglar_shuttle"; - name = "airlock controller"; - pixel_x = 23; - pixel_y = -8; - tag_door = "burglar_shuttle_hatch" - }, -/obj/item/storage/secure/briefcase, -/obj/item/storage/briefcase/aluminium, -/turf/simulated/floor/shuttle/black, -/area/shuttle/burglar) -"aaA" = ( -/obj/effect/landmark/start{ - name = "wizard" - }, -/obj/structure/bed/stool/chair/office/hover, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/circuit.dmi'; - icon_state = "bcircuit" - }, -/area/antag/wizard) -"aaB" = ( -/turf/space/transit/bluespace/west, -/area/template_noop) -"aaC" = ( -/obj/machinery/computer/cryopod{ - pixel_y = 30 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/obj/machinery/vending/wallmed1{ - pixel_x = -24; - pixel_y = 30; - req_access = list() - }, -/turf/simulated/floor/tiled/white, -/area/merchant_station) -"aaD" = ( -/obj/machinery/door/blast/regular/open{ - dir = 2; - id = "burglar_blast"; - name = "blast door" - }, -/obj/machinery/door/airlock/hatch{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "burglar_shuttle_hatch"; - locked = 1; - req_access = list(150); - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "burglar_blast"; - name = "blast door"; - pixel_y = -21; - req_access = list(150) - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/burglar) -"aaE" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1337; - id_tag = "burglar_hideout"; - name = "hangar controller"; - pixel_x = -1; - pixel_y = 26; - tag_door = "burglar_hideout_hatch" - }, -/turf/unsimulated/floor{ - dir = 4; - icon_state = "ramptop" - }, -/area/antag/burglar) -"aaF" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/steel, -/obj/item/rig/hazard/equipped/pirate{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/rig/eva/equipped/pirate{ - pixel_x = -13; - pixel_y = 7 - }, -/obj/item/rig/industrial/equipped{ - pixel_x = -8; - pixel_y = -2 - }, -/obj/item/clothing/mask/gas/half{ - pixel_x = 7; - pixel_y = -4 - }, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"aaG" = ( -/obj/structure/trash_pile, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"aaH" = ( -/obj/structure/table/rack, -/obj/item/storage/box/syndie_kit/chameleon, -/obj/item/storage/box/syndie_kit/chameleon, -/obj/item/storage/box/syndie_kit/chameleon, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"aaI" = ( -/obj/structure/bed/stool/chair/office/hover{ - can_buckle = 0; - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"aaJ" = ( -/obj/item/gun/energy/pistol{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/gun/energy/pistol{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/gun/energy/pistol{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/gun/energy/pistol{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/table/rack, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"aaK" = ( -/obj/structure/table/steel, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/circuit.dmi'; - icon_state = "bcircuit" - }, -/area/antag/wizard) -"aaL" = ( -/obj/structure/bed/stool/chair/office/hover{ - can_buckle = 0; - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"aaM" = ( -/turf/template_noop, -/area/template_noop) -"aaN" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/unsimulated/wall/riveted, -/area/template_noop) -"aaO" = ( -/obj/structure/window/reinforced, -/turf/unsimulated/wall/riveted, -/area/template_noop) -"aaP" = ( -/turf/unsimulated/wall/riveted, -/area/template_noop) -"aaQ" = ( -/obj/structure/table/rack, -/obj/item/clothing/accessory/storage/brown_vest, -/obj/item/clothing/accessory/storage/webbing, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"aaR" = ( -/obj/structure/table/rack, -/obj/item/storage/backpack, -/obj/item/storage/backpack/messenger, -/obj/item/storage/backpack/satchel/leather/withwallet, -/obj/item/storage/backpack/duffel, -/obj/item/storage/backpack/satchel, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/circuit.dmi'; - icon_state = "bcircuit" - }, -/area/antag/wizard) -"aaS" = ( -/obj/structure/bed/stool/chair/office/hover{ - can_buckle = 0; - dir = 4 - }, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/circuit.dmi'; - icon_state = "bcircuit" - }, -/area/antag/wizard) -"aaT" = ( -/obj/structure/bed/stool/chair/office/hover{ - can_buckle = 0; - dir = 8 - }, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/circuit.dmi'; - icon_state = "bcircuit" - }, -/area/antag/wizard) -"aaU" = ( -/obj/structure/table/rack, -/obj/item/clothing/glasses/eyepatch, -/obj/item/clothing/glasses/regular/scanners, -/obj/item/clothing/glasses/regular/circle, -/obj/item/clothing/glasses/regular/jamjar, -/obj/item/clothing/glasses/regular/hipster, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/circuit.dmi'; - icon_state = "bcircuit" - }, -/area/antag/wizard) -"aaV" = ( -/obj/structure/sign/greencross{ - name = "Infirmary"; - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/media/jukebox, -/turf/simulated/floor/lino/diamond, -/area/merchant_station) -"aaW" = ( -/obj/structure/table/rack, -/obj/item/clothing/accessory/offworlder/bracer, -/obj/item/rig/light/offworlder, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"aaX" = ( -/obj/structure/table/rack, -/obj/item/clothing/ears/circuitry, -/obj/item/clothing/glasses/circuitry, -/obj/item/clothing/gloves/circuitry, -/obj/item/clothing/head/circuitry, -/obj/item/clothing/shoes/circuitry, -/obj/item/clothing/suit/circuitry, -/obj/item/clothing/under/circuitry, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"aaY" = ( -/obj/machinery/photocopier, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"aaZ" = ( -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 4; - pixel_y = -2 - }, -/turf/simulated/floor/lino/diamond, -/area/merchant_station) -"aba" = ( -/obj/machinery/papershredder, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"abb" = ( -/obj/machinery/acting/changer, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"abc" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/template_noop, -/area/template_noop) -"abd" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"abe" = ( -/obj/machinery/vending/cigarette{ - name = "hacked cigarette machine"; - pixel_x = 5; - prices = null; - random_itemcount = 0 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"abf" = ( -/obj/structure/dispenser/oxygen, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"abg" = ( -/obj/structure/undies_wardrobe, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"abh" = ( -/obj/machinery/suit_cycler/wizard, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"abi" = ( -/obj/machinery/vending/snack{ - name = "hacked Getmore Chocolate Corp"; - prices = list(); - random_itemcount = 0 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"abj" = ( -/obj/machinery/door/airlock/glass{ - name = "Lounge"; - req_access = list(110); - dir = 4 - }, -/turf/simulated/floor/lino/diamond, -/area/merchant_station) -"abk" = ( -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/splint, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/obj/structure/closet/walllocker/medical{ - pixel_x = -28 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"abl" = ( -/obj/item/crowbar, -/obj/structure/table/rack, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/wizard) -"abm" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/merchant_station) -"abn" = ( -/turf/simulated/floor/holofloor/reinforced, -/area/template_noop) -"abo" = ( -/obj/structure/weightlifter, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_gym) -"abp" = ( -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_gym) -"abq" = ( -/obj/structure/table/wood, -/obj/item/flame/candle, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_chapel) -"abr" = ( -/obj/structure/table/wood, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_chapel) -"abs" = ( -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_chapel) -"abt" = ( -/obj/structure/bed/stool/chair/holochair, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_chapel) -"abu" = ( -/turf/simulated/floor/holofloor/desert, -/area/holodeck/source_desert) -"abv" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/holofloor/desert, -/area/holodeck/source_desert) -"abw" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"abx" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"aby" = ( -/obj/effect/decal/fake_object{ - density = 1; - desc = "Ding."; - icon = 'icons/obj/doors/doorlift.dmi'; - icon_state = "door_closed"; - name = "elevator door"; - opacity = 1 - }, -/turf/unsimulated/floor{ - icon_state = "cult"; - name = "plating" - }, -/area/antag/wizard) -"abz" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"abA" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"abB" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"abC" = ( -/obj/structure/table/rack/holorack, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_theatre) -"abD" = ( -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_theatre) -"abE" = ( -/obj/structure/table/wood, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_courtroom) -"abF" = ( -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_courtroom) -"abG" = ( -/obj/random/pottedplant, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_courtroom) -"abH" = ( -/turf/simulated/floor/holofloor/reinforced, -/area/holodeck/source_wildlife) -"abI" = ( -/turf/simulated/floor/holofloor/reinforced, -/area/holodeck/source_plating) -"abJ" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_emptycourt) -"abK" = ( -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_emptycourt) -"abL" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_emptycourt) -"abM" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/unsimulated/wall/riveted, -/area/template_noop) -"abN" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"abO" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"abQ" = ( -/obj/effect/landmark{ - name = "Holocarp Spawn" - }, -/turf/simulated/floor/holofloor/reinforced, -/area/holodeck/source_wildlife) -"abR" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_emptycourt) -"abS" = ( -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_emptycourt) -"abT" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_emptycourt) -"abU" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/weightlifter, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_gym) -"abV" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_gym) -"abW" = ( -/obj/structure/weightlifter, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_gym) -"abX" = ( -/turf/simulated/floor/holofloor/tiled/ramp/bottom, -/area/holodeck/source_chapel) -"abY" = ( -/obj/structure/sign/flag/nanotrasen, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_chapel) -"abZ" = ( -/obj/structure/table/stone/marble, -/obj/item/flame/candle, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_chapel) -"aca" = ( -/obj/structure/table/stone/marble, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_chapel) -"acb" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/holofloor/desert, -/area/holodeck/source_desert) -"acc" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"acd" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/pointybush, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"ace" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"acf" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 4 - }, -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"acg" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"ach" = ( -/obj/structure/bed/stool/chair/holochair, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_courtroom) -"aci" = ( -/obj/structure/window/reinforced/holowindow{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_courtroom) -"acj" = ( -/obj/machinery/door/window/holowindoor{ - dir = 1; - name = "Jury Box" - }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 9 - }, -/obj/effect/floor_decal/carpet{ - dir = 5 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"ack" = ( -/obj/effect/floor_decal/corner/white/full{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_gym) -"acl" = ( -/obj/effect/floor_decal/corner/white{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_gym) -"acm" = ( -/obj/effect/floor_decal/corner/white{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/hatch, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_gym) -"acn" = ( -/obj/effect/floor_decal/corner/white/full{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_gym) -"aco" = ( -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_chapel) -"acp" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 1 - }, -/obj/effect/floor_decal/chapel{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_chapel) -"acq" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 1 - }, -/obj/effect/floor_decal/chapel, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_chapel) -"acr" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_chapel) -"acs" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 1 - }, -/obj/effect/floor_decal/chapel{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_chapel) -"act" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 1 - }, -/obj/effect/floor_decal/chapel{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_chapel) -"acu" = ( -/obj/structure/holostool, -/turf/simulated/floor/holofloor/beach/sand, -/area/holodeck/source_picnicarea) -"acv" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_theatre) -"acw" = ( -/turf/simulated/floor/holofloor/tiled/ramp/bottom, -/area/holodeck/source_theatre) -"acx" = ( -/obj/structure/window/reinforced/holowindow, -/obj/machinery/door/window/holowindoor{ - dir = 1; - name = "Court Reporter's Box" - }, -/obj/structure/bed/stool/chair/holochair, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_courtroom) -"acy" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced/holowindow, -/obj/structure/window/reinforced/holowindow{ - dir = 8 - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_courtroom) -"acz" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced/holowindow, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_courtroom) -"acA" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced/holowindow, -/obj/structure/window/reinforced/holowindow{ - dir = 4 - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_courtroom) -"acB" = ( -/obj/structure/window/reinforced/holowindow, -/obj/machinery/door/window/holowindoor{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "Witness Box" - }, -/obj/structure/bed/stool/chair/holochair, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_courtroom) -"acC" = ( -/obj/structure/bed/stool/chair/holochair{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"acD" = ( -/obj/structure/bed/stool/chair/holochair{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/obj/effect/floor_decal/carpet/corners{ - dir = 9 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"acH" = ( -/obj/machinery/door/airlock/glass{ - name = "Merchant's Office"; - req_access = list(110); - dir = 4 - }, -/turf/simulated/floor/wood, -/area/merchant_station) -"acN" = ( -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_gym) -"acO" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_gym) -"acP" = ( -/obj/effect/floor_decal/chapel{ - dir = 4 - }, -/obj/effect/floor_decal/chapel{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_chapel) -"acQ" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/chapel{ - dir = 8 - }, -/obj/effect/floor_decal/chapel, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_chapel) -"acR" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/chapel{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_chapel) -"acS" = ( -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 5 - }, -/obj/effect/floor_decal/carpet{ - dir = 9 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_chapel) -"acT" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/chapel{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_chapel) -"acU" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/chapel, -/obj/effect/floor_decal/chapel{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_chapel) -"acV" = ( -/obj/effect/floor_decal/chapel{ - dir = 1 - }, -/obj/effect/floor_decal/chapel{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_chapel) -"acW" = ( -/obj/structure/table/wood, -/turf/simulated/floor/holofloor/beach/sand, -/area/holodeck/source_picnicarea) -"acY" = ( -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_theatre) -"acZ" = ( -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 9 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_theatre) -"ada" = ( -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_theatre) -"adb" = ( -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/obj/effect/floor_decal/carpet{ - dir = 5 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_theatre) -"adc" = ( -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 9 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"add" = ( -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"ade" = ( -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/obj/effect/floor_decal/carpet{ - dir = 5 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"adf" = ( -/obj/structure/bed/stool/chair/holochair{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"adg" = ( -/obj/structure/bed/stool/chair/holochair{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"adh" = ( -/obj/structure/table/wood, -/obj/item/clothing/accessory/holster/armpit, -/obj/item/gun/energy/pistol, -/turf/simulated/floor/carpet, -/area/merchant_station) -"adi" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/floor_decal/corner/green/full{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_gym) -"adj" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_gym) -"adk" = ( -/obj/structure/punching_bag, -/obj/effect/floor_decal/corner/green/full{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_gym) -"adl" = ( -/obj/effect/floor_decal/chapel{ - dir = 8 - }, -/obj/effect/floor_decal/chapel, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_chapel) -"adm" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/chapel{ - dir = 4 - }, -/obj/effect/floor_decal/chapel{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_chapel) -"adn" = ( -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_chapel) -"ado" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/chapel{ - dir = 1 - }, -/obj/effect/floor_decal/chapel{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_chapel) -"adp" = ( -/obj/effect/floor_decal/chapel, -/obj/effect/floor_decal/chapel{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_chapel) -"adq" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_theatre) -"adr" = ( -/obj/structure/holostool, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_theatre) -"ads" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_theatre) -"adt" = ( -/obj/structure/table/wood, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"adu" = ( -/obj/structure/table/wood, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"adv" = ( -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"adw" = ( -/obj/structure/table/wood, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"adx" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_emptycourt) -"ady" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_emptycourt) -"adz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/merchant_station) -"adB" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_gym) -"adC" = ( -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_gym) -"adD" = ( -/obj/structure/punching_bag, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_gym) -"adE" = ( -/obj/structure/bed/stool/chair/holochair{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"adF" = ( -/obj/structure/bed/stool/chair/holochair{ - dir = 1 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"adG" = ( -/obj/structure/bed/stool/chair/holochair{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"adI" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/floor_decal/corner/green/full, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_gym) -"adJ" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_gym) -"adK" = ( -/obj/structure/punching_bag, -/obj/effect/floor_decal/corner/green/full{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_gym) -"adL" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"adM" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"adN" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/palebush, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"adO" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 4 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/pointybush, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"adP" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"adQ" = ( -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"adR" = ( -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"adS" = ( -/obj/structure/closet/gmcloset, -/obj/random/backpack, -/turf/simulated/floor/wood, -/area/merchant_station) -"adT" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/obj/structure/bed/roller, -/turf/simulated/floor/tiled/white, -/area/merchant_station) -"adU" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "2,0"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"adY" = ( -/obj/machinery/light{ - dir = 8; - name = "adjusted light fixture"; - pixel_y = 16; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/merchant_station) -"aea" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Strongroom"; - req_access = list(150); - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/reinforced, -/area/shuttle/mercenary) -"aeb" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = null; - locked = 1; - name = "Escape Pod Hatch"; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/airless, -/area/template_noop) -"aec" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_shuttle_hatch"; - locked = 1; - name = "Shuttle Hatch"; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"aed" = ( -/obj/effect/floor_decal/corner/white/full, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_gym) -"aee" = ( -/obj/effect/floor_decal/corner/white{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/hatch, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_gym) -"aef" = ( -/obj/effect/floor_decal/corner/white/full{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_gym) -"aeg" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/carpet, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 10 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_theatre) -"aeh" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/carpet, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_theatre) -"aei" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/obj/effect/floor_decal/carpet, -/obj/effect/floor_decal/carpet{ - dir = 6 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_theatre) -"aej" = ( -/obj/structure/bed/stool/chair/holochair{ - dir = 8 - }, -/obj/effect/floor_decal/carpet, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 10 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"aek" = ( -/obj/structure/bed/stool/chair/holochair{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/obj/effect/floor_decal/carpet, -/obj/effect/floor_decal/carpet{ - dir = 6 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"ael" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "merchant_station_door"; - locked = 1; - req_access = list(110); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"aem" = ( -/obj/machinery/door/airlock/centcom{ - name = "Holding Cells"; - req_access = list(150); - dir = 1 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"aen" = ( -/obj/effect/step_trigger/thrower/shuttle/northwest, -/turf/space/transit/bluespace/west, -/area/template_noop) -"aep" = ( -/obj/machinery/door/airlock/external{ - frequency = 1332; - icon_state = "door_locked"; - id_tag = "pirate_hideout_door"; - locked = 1; - name = "hideout airlock"; - req_access = list(110); - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"aeq" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "8,3" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"aer" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - frequency = 1332; - icon_state = "door_locked"; - id_tag = "pirate_hideout_door"; - locked = 1; - name = "hideout airlock"; - req_access = list(110); - dir = 4 - }, -/obj/machinery/conveyor{ - id = "hideout_shipping" - }, -/turf/unsimulated/floor/plating, -/area/antag/raider) -"aes" = ( -/obj/machinery/door/airlock/glass_centcom{ - name = "Sector Administration Copula"; - req_access = null; - req_one_access = list(109,108); - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"aet" = ( -/obj/machinery/door/airlock/centcom{ - name = "Bureau Supervisor's Office"; - req_access = list(109); - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"aeu" = ( -/obj/machinery/door/airlock/centcom{ - name = "Civil Protection Station"; - req_access = list(103); - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"aev" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Holding Cell"; - req_access = list(1); - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"aew" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/template_noop, -/area/template_noop) -"aex" = ( -/obj/machinery/door/airlock/glass_centcom{ - name = "Valkyrie's Rest Kitchen"; - req_access = list(105); - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"aez" = ( -/obj/effect/floor_decal/corner/white{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_gym) -"aeA" = ( -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/obj/effect/floor_decal/carpet{ - dir = 10 - }, -/obj/effect/floor_decal/carpet{ - dir = 6 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_chapel) -"aeB" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"aeC" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"aeD" = ( -/obj/structure/bed/stool/chair/holochair{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet, -/obj/effect/floor_decal/carpet{ - dir = 10 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"aeE" = ( -/obj/structure/bed/stool/chair/holochair{ - dir = 1 - }, -/obj/effect/floor_decal/carpet, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"aeF" = ( -/obj/effect/floor_decal/carpet, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"aeG" = ( -/obj/effect/floor_decal/carpet, -/obj/random/pottedplant, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"aeH" = ( -/obj/effect/floor_decal/carpet, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/obj/effect/floor_decal/carpet{ - dir = 6 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"aeI" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_courtroom) -"aeJ" = ( -/obj/effect/floor_decal/corner/red/full, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_emptycourt) -"aeK" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_emptycourt) -"aeL" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_emptycourt) -"aeN" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/wood, -/area/merchant_station) -"aeO" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/unsimulated/wall/riveted, -/area/template_noop) -"aeP" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/unsimulated/wall/riveted, -/area/template_noop) -"aeR" = ( -/obj/structure/noticeboard{ - pixel_x = 4; - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/merchant_station) -"aeU" = ( -/turf/simulated/floor/holofloor/space, -/area/holodeck/source_space) -"aeV" = ( -/turf/simulated/floor/holofloor/snow, -/area/holodeck/source_snowfield) -"aeW" = ( -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_meetinghall) -"aeX" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"aeY" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"aeZ" = ( -/obj/structure/holohoop, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"afa" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"afb" = ( -/turf/simulated/floor/beach/sand{ - icon_state = "desert1" - }, -/area/holodeck/source_beach) -"afc" = ( -/turf/simulated/floor/beach/sand{ - icon_state = "desert4" - }, -/area/holodeck/source_beach) -"afd" = ( -/turf/simulated/floor/beach/sand{ - icon_state = "desert" - }, -/area/holodeck/source_beach) -"afe" = ( -/turf/simulated/floor/beach/sand{ - icon_state = "desert0" - }, -/area/holodeck/source_beach) -"aff" = ( -/obj/structure/table/holotable, -/obj/machinery/readybutton, -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"afg" = ( -/obj/structure/table/holotable, -/obj/item/clothing/head/helmet/thunderdome, -/obj/item/clothing/suit/armor/tdome/red, -/obj/item/clothing/under/color/red, -/obj/item/holo/esword/red, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"afh" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"afi" = ( -/obj/structure/table/holotable, -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"afj" = ( -/obj/structure/table/holotable, -/obj/item/clothing/gloves/boxing/hologlove, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_boxingcourt) -"afk" = ( -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_boxingcourt) -"afl" = ( -/obj/structure/holostool, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_boxingcourt) -"afm" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "centcom_dock_airlock"; - locked = 1; - name = "Arrivals Airlock"; - req_access = list(13); - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor, -/area/centcom/evac) -"afp" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "centcom_arrivals_airlock"; - locked = 1; - name = "Arrivals Airlock"; - req_access = list(13); - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"afr" = ( -/obj/effect/landmark{ - name = "Holocarp Spawn Random" - }, -/turf/simulated/floor/holofloor/space, -/area/holodeck/source_space) -"afs" = ( -/obj/structure/flora/grass/both, -/turf/simulated/floor/holofloor/snow, -/area/holodeck/source_snowfield) -"aft" = ( -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/obj/effect/floor_decal/carpet, -/obj/effect/floor_decal/carpet{ - dir = 10 - }, -/obj/effect/floor_decal/carpet{ - dir = 9 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_meetinghall) -"afu" = ( -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/obj/effect/floor_decal/carpet, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_meetinghall) -"afv" = ( -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/obj/effect/floor_decal/carpet, -/obj/effect/floor_decal/carpet{ - dir = 6 - }, -/obj/effect/floor_decal/carpet{ - dir = 5 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_meetinghall) -"afw" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"afx" = ( -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"afy" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"afz" = ( -/turf/simulated/floor/beach/sand{ - icon_state = "desert3" - }, -/area/holodeck/source_beach) -"afA" = ( -/obj/effect/overlay/palmtree_r, -/turf/simulated/floor/beach/sand{ - icon_state = "desert" - }, -/area/holodeck/source_beach) -"afB" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"afC" = ( -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"afD" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"afF" = ( -/turf/simulated/floor/holofloor/tiled/ramp/bottom, -/area/holodeck/source_meetinghall) -"afG" = ( -/obj/structure/table/wood, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_meetinghall) -"afH" = ( -/obj/item/clothing/glasses/sunglasses, -/turf/simulated/floor/beach/sand{ - icon_state = "desert0" - }, -/area/holodeck/source_beach) -"afI" = ( -/obj/effect/overlay/palmtree_l, -/obj/effect/overlay/coconut, -/turf/simulated/floor/beach/sand{ - icon_state = "desert0" - }, -/area/holodeck/source_beach) -"afJ" = ( -/obj/machinery/door/window/holowindoor{ - base_state = "right"; - icon_state = "right"; - name = "Red Corner" - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_boxingcourt) -"afK" = ( -/obj/structure/window/reinforced/holowindow, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_boxingcourt) -"afM" = ( -/turf/simulated/floor/holofloor/lino, -/area/holodeck/source_meetinghall) -"afN" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 1 - }, -/turf/simulated/floor/holofloor/lino, -/area/holodeck/source_meetinghall) -"afO" = ( -/obj/item/beach_ball, -/turf/simulated/floor/beach/sand{ - icon_state = "desert0" - }, -/area/holodeck/source_beach) -"afP" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_boxingcourt) -"afQ" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_boxingcourt) -"afR" = ( -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_boxingcourt) -"afS" = ( -/obj/structure/window/reinforced/holowindow{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_boxingcourt) -"afT" = ( -/obj/structure/flora/grass/green, -/turf/simulated/floor/holofloor/snow, -/area/holodeck/source_snowfield) -"afU" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 9 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_meetinghall) -"afV" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_meetinghall) -"afW" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/obj/effect/floor_decal/carpet{ - dir = 5 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_meetinghall) -"afX" = ( -/obj/effect/floor_decal/corner/red/full, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"afY" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"afZ" = ( -/obj/item/beach_ball/holoball, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"aga" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"agb" = ( -/obj/item/inflatable_duck, -/turf/simulated/floor/beach/sand{ - icon_state = "desert" - }, -/area/holodeck/source_beach) -"agc" = ( -/obj/structure/window/reinforced/holowindow/disappearing, -/obj/effect/floor_decal/corner/red/full, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"agd" = ( -/obj/structure/window/reinforced/holowindow/disappearing, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"age" = ( -/obj/structure/window/reinforced/holowindow/disappearing, -/obj/effect/floor_decal/corner/red/full{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"agf" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_boxingcourt) -"agg" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_boxingcourt) -"agh" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_boxingcourt) -"agi" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_boxingcourt) -"agj" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_meetinghall) -"agk" = ( -/obj/structure/holostool, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_meetinghall) -"agl" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_meetinghall) -"agm" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"agn" = ( -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"ago" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"agp" = ( -/turf/simulated/floor/beach/sand{ - icon_state = "beachcorner" - }, -/area/holodeck/source_beach) -"agq" = ( -/turf/simulated/floor/beach/sand{ - icon_state = "beach" - }, -/area/holodeck/source_beach) -"agr" = ( -/turf/simulated/floor/beach/sand{ - dir = 1; - icon_state = "beachcorner" - }, -/area/holodeck/source_beach) -"ags" = ( -/obj/structure/window/reinforced/holowindow/disappearing{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/full{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"agt" = ( -/obj/structure/window/reinforced/holowindow/disappearing{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"agu" = ( -/obj/structure/window/reinforced/holowindow/disappearing{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/full{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"agv" = ( -/obj/effect/floor_decal/corner/blue/full, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_boxingcourt) -"agw" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_boxingcourt) -"agx" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"agy" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"agz" = ( -/turf/simulated/floor/beach/sand{ - dir = 6; - icon_state = "beach" - }, -/area/holodeck/source_beach) -"agA" = ( -/turf/simulated/floor/beach/sand{ - icon_state = "seashallow" - }, -/area/holodeck/source_beach) -"agB" = ( -/turf/simulated/floor/beach/sand{ - dir = 10; - icon_state = "beach" - }, -/area/holodeck/source_beach) -"agC" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"agD" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"agE" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_boxingcourt) -"agF" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_boxingcourt) -"agG" = ( -/obj/structure/flora/grass/brown, -/turf/simulated/floor/holofloor/snow, -/area/holodeck/source_snowfield) -"agH" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"agI" = ( -/obj/structure/window/reinforced/holowindow{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_boxingcourt) -"agJ" = ( -/obj/machinery/door/window/holowindoor{ - dir = 1; - name = "Green Corner" - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_boxingcourt) -"agK" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/carpet, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 10 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_meetinghall) -"agL" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/carpet, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_meetinghall) -"agM" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/obj/effect/floor_decal/carpet, -/obj/effect/floor_decal/carpet{ - dir = 6 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_meetinghall) -"agO" = ( -/obj/effect/floor_decal/corner/green/full, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"agP" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/obj/structure/holohoop{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"agQ" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"agR" = ( -/obj/effect/floor_decal/corner/green/full, -/obj/structure/table/holotable, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"agS" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/obj/structure/table/holotable, -/obj/item/clothing/head/helmet/thunderdome, -/obj/item/clothing/suit/armor/tdome/green, -/obj/item/clothing/under/color/green, -/obj/item/holo/esword/green, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"agT" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"agU" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 4 - }, -/obj/structure/table/holotable, -/obj/machinery/readybutton, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"agV" = ( -/obj/structure/table/holotable, -/obj/item/clothing/gloves/boxing/hologlove{ - icon_state = "boxinggreen"; - item_state = "boxinggreen" - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_boxingcourt) -"agW" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/unsimulated/wall/riveted, -/area/template_noop) -"agX" = ( -/turf/simulated/floor/carpet, -/area/merchant_station) -"ahe" = ( -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"ahf" = ( -/obj/effect/shuttle_landmark/merchant/interim, -/turf/space/transit/bluespace/west, -/area/template_noop) -"ahp" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"ahq" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"ahr" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"ahv" = ( -/obj/effect/shuttle_landmark/distress/interim, -/turf/space/transit/bluespace/west, -/area/template_noop) -"ahA" = ( -/obj/effect/shuttle_landmark/ccia/start, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/transport1) -"ahC" = ( -/obj/effect/step_trigger/thrower/shuttle/south, -/obj/effect/step_trigger/thrower/shuttle/south, -/turf/space/transit/bluespace/south, -/area/template_noop) -"ahD" = ( -/obj/structure/window/basic{ - dir = 8 - }, -/turf/simulated/floor/lino/diamond, -/area/merchant_station) -"ahE" = ( -/turf/simulated/floor/lino/diamond, -/area/merchant_station) -"ahI" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/papershredder, -/turf/simulated/floor/wood, -/area/merchant_station) -"ahN" = ( -/obj/machinery/vending/snack{ - name = "hacked Getmore Chocolate Corp"; - prices = list() - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/raider) -"ahQ" = ( -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/template_noop, -/area/template_noop) -"ahS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/wall/shuttle, -/area/template_noop) -"ahT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/wall/shuttle, -/area/template_noop) -"ahU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/template_noop, -/area/template_noop) -"ahV" = ( -/turf/unsimulated/mineral/asteroid, -/area/template_noop) -"aif" = ( -/obj/structure/shuttle/engine/propulsion/burst, -/obj/effect/decal/cleanable/dirt, -/turf/template_noop, -/area/template_noop) -"aig" = ( -/turf/simulated/floor/airless, -/area/template_noop) -"aih" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/template_noop) -"aii" = ( -/obj/effect/step_trigger/thrower/shuttle/south, -/turf/space/transit/bluespace/south, -/area/template_noop) -"aik" = ( -/obj/structure/grille, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/template_noop) -"ain" = ( -/obj/item/stack/material/cyborg/steel, -/turf/template_noop, -/area/template_noop) -"aio" = ( -/obj/item/material/shard/shrapnel, -/turf/template_noop, -/area/template_noop) -"aip" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/template_noop) -"ait" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) -"aiv" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" - }, -/area/antag/raider) -"aiw" = ( -/obj/effect/floor_decal/spline/plain/black, -/turf/unsimulated/floor, -/area/antag/mercenary) -"aix" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"aiy" = ( -/obj/machinery/vending/security, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"aiz" = ( -/turf/unsimulated/wall/darkshuttlewall, -/area/tdome/tdomeobserve) -"aiA" = ( -/obj/effect/shuttle_landmark/escape_pod/transit/pod2, -/turf/space/transit/bluespace/south, -/area/template_noop) -"aiE" = ( -/turf/unsimulated/floor{ - dir = 4; - icon_state = "ramptop" - }, -/area/antag/raider) -"aiJ" = ( -/obj/item/stack/rods, -/turf/template_noop, -/area/template_noop) -"aiO" = ( -/obj/random/junk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/template_noop) -"aiQ" = ( -/turf/unsimulated/wall/steel, -/area/antag/raider) -"aiR" = ( -/turf/simulated/wall/shuttle/unique/burglar{ - icon_state = "10,2" - }, -/area/shuttle/burglar) -"aiU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/wall/shuttle, -/area/template_noop) -"aiV" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/template_noop) -"aiY" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/turf/unsimulated/floor/plating, -/area/antag/raider) -"ajd" = ( -/obj/structure/lattice, -/turf/space/dynamic, -/area/antag/raider) -"aje" = ( -/turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" - }, -/area/antag/raider) -"ajf" = ( -/obj/random/junk, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/template_noop) -"ajm" = ( -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 8; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/turf/simulated/floor/holofloor/space{ - blocks_air = 1; - density = 1; - dynamic_lighting = 1; - icon_state = "black" - }, -/area/antag/ninja) -"ajw" = ( -/obj/effect/shuttle_landmark/escape_pod/transit/pod1, -/turf/space/transit/bluespace/south, -/area/template_noop) -"ajz" = ( -/obj/effect/shuttle_landmark/escape_pod/transit/pod3, -/turf/space/transit/bluespace/south, -/area/template_noop) -"ajI" = ( -/obj/effect/shuttle_landmark/escape_pod/out/pod3, -/turf/template_noop, -/area/template_noop) -"ajV" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/vending/tool, -/obj/structure/fireaxecabinet/west{ - pixel_y = 29 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"ajW" = ( -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"ajX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"ajY" = ( -/obj/machinery/vending/coffee/free{ - pixel_x = 5 - }, -/obj/effect/floor_decal/corner/red/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"aka" = ( -/obj/structure/shuttle_part/transfer{ - density = 0; - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "14,6"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"akp" = ( -/obj/structure/sign/flag/nanotrasen/large/north, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 8 - }, -/obj/structure/bed/stool/chair, -/turf/unsimulated/floor, -/area/centcom/ferry) -"akr" = ( -/turf/simulated/wall/shuttle/dark/cardinal, -/area/template_noop) -"aks" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'ESTIMATED PICKUP TIME: 2-4 DAYS. CONSERVE RESOURCES.'."; - name = "\improper NSS AURORA II ESCAPE POD ZONE" - }, -/turf/simulated/wall/r_wall, -/area/template_noop) -"akx" = ( -/turf/simulated/wall/shuttle/dark/corner/underlay{ - dir = 10 - }, -/area/template_noop) -"aky" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_pod_2_recovery_hatch"; - locked = 1; - name = "Recovery Shuttle Dock"; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/airless, -/area/template_noop) -"akz" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'ESTIMATED PICKUP TIME: 2-4 DAYS. CONSERVE RESOURCES.'."; - name = "\improper NSS AURORA II ESCAPE POD ZONE" - }, -/turf/simulated/wall/shuttle/dark/cardinal, -/area/template_noop) -"akA" = ( -/turf/simulated/wall/shuttle/dark/corner/underlay{ - dir = 6 - }, -/area/template_noop) -"akD" = ( -/obj/structure/shuttle_part/raider{ - density = 0; - icon_state = "17,17" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"akF" = ( -/turf/simulated/wall/shuttle/dark/corner/underlay{ - dir = 9 - }, -/area/centcom/legion/hangar5) -"akG" = ( -/turf/space/dynamic, -/area/template_noop) -"akH" = ( -/obj/structure/shuttle_part/raider{ - density = 0; - icon_state = "19,17" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"akJ" = ( -/obj/structure/shuttle_part/raider{ - density = 0; - icon_state = "9,17" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"akK" = ( -/obj/structure/shuttle_part/raider{ - density = 0; - icon_state = "10,17" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"akP" = ( -/obj/structure/shuttle_part/raider{ - density = 0; - icon_state = "12,17" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"akR" = ( -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 4 - }, -/turf/template_noop, -/area/template_noop) -"akT" = ( -/obj/effect/shuttle_landmark/escape_pod/out/pod2, -/turf/template_noop, -/area/template_noop) -"akU" = ( -/obj/structure/shuttle/engine/propulsion/burst, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/wall/shuttle{ - dir = 1; - icon_state = "swall" - }, -/area/template_noop) -"akZ" = ( -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/template_noop, -/area/template_noop) -"ala" = ( -/obj/structure/closet/secure_closet/cabinet{ - anchored = 1; - name = "legate's closet"; - req_access = list(108,111) - }, -/obj/structure/sign/flag/biesel{ - pixel_y = 32 - }, -/obj/item/shield/energy/legion, -/obj/item/melee/energy/sword/knife, -/obj/item/melee/telebaton, -/obj/item/device/megaphone/sec, -/obj/item/storage/box/fancy/cigarettes/cigar, -/obj/item/flame/lighter/zippo, -/obj/item/reagent_containers/food/drinks/bottle/victorygin, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/backpack/satchel/leather, -/obj/item/clothing/shoes/jackboots/toeless, -/obj/item/clothing/glasses/sunglasses/aviator, -/obj/item/flag/biesel/l{ - pixel_y = 8 - }, -/obj/item/flag/biesel, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion/hangar5) -"ald" = ( -/turf/simulated/wall/shuttle/dark/corner/underlay{ - dir = 5 - }, -/area/template_noop) -"alk" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "16,16" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"alm" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "2,16"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aln" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "3,16"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"alo" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "4,16"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"alp" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "20,16" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"alq" = ( -/obj/structure/shuttle_part/raider{ - density = 0; - icon_state = "8,16" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"alr" = ( -/obj/structure/window/shuttle/unique/raider{ - icon_state = "9,16"; - name = "skipjack cockpit"; - outside_window = 1 - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"alv" = ( -/obj/structure/window/shuttle/unique/raider{ - icon_state = "10,16"; - name = "skipjack cockpit" - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"alw" = ( -/obj/structure/window/shuttle/unique/raider{ - icon_state = "11,16"; - name = "skipjack cockpit" - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"alx" = ( -/obj/structure/window/shuttle/unique/raider{ - icon_state = "12,16"; - name = "skipjack cockpit"; - outside_window = 1 - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"alz" = ( -/obj/structure/shuttle_part/raider{ - density = 0; - icon_state = "13,16" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"alH" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "16,16" - }, -/obj/structure/shuttle_part/raider{ - density = 0; - icon_state = "17,17"; - outside_part = 0; - pixel_x = 32; - pixel_y = 32 - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"alJ" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "17,16"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"alK" = ( -/obj/machinery/door/airlock/hatch{ - frequency = 1332; - icon_state = "door_locked"; - id_tag = "raider_northeast_lock"; - locked = 1; - req_access = list(150); - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1332; - master_tag = "raider_east_control"; - pixel_x = -26; - pixel_y = 12; - req_access = list(150) - }, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id = "raiderblastdoor"; - name = "blast door" - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "raiderblastdoor"; - name = "blast door"; - pixel_x = 25; - req_access = list(150) - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"alL" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "19,16"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"alM" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "20,16" - }, -/obj/structure/shuttle_part/raider{ - density = 0; - icon_state = "19,17"; - outside_part = 0; - pixel_x = -32; - pixel_y = 32 - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"alP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/template_noop) -"alR" = ( -/obj/effect/shuttle_landmark/escape_pod/out/pod1, -/turf/template_noop, -/area/template_noop) -"alS" = ( -/obj/structure/window/shuttle, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/template_noop) -"alU" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/random/junk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/template_noop) -"alV" = ( -/obj/structure/lattice/catwalk/indoor/grate/light/old{ - icon_state = "grate_light_dam1" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/emergency, -/turf/unsimulated/floor{ - icon_state = "panelscorched" - }, -/area/antag/raider) -"ama" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/rat, -/turf/simulated/floor/airless, -/area/template_noop) -"amg" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = null; - locked = 1; - name = "Escape Pod Hatch"; - req_access = list(13); - dir = 1 - }, -/turf/simulated/floor/airless, -/area/template_noop) -"amr" = ( -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/evac) -"ams" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "0,15" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"amv" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "1,15"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"amw" = ( -/obj/structure/table/steel, -/obj/item/clothing/head/pirate, -/obj/item/clothing/suit/pirate, -/obj/item/clothing/glasses/thermal/plain/monocle, -/turf/simulated/floor/carpet/art, -/area/shuttle/skipjack) -"amx" = ( -/turf/simulated/floor/carpet/art, -/area/shuttle/skipjack) -"amC" = ( -/obj/structure/bed/padded, -/obj/effect/decal/cleanable/dirt, -/obj/item/bedsheet/random, -/obj/structure/curtain/open/bed, -/turf/simulated/floor/carpet/art, -/area/shuttle/skipjack) -"amG" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "5,15"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"amI" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "6,15" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"amN" = ( -/obj/structure/shuttle_part/raider{ - density = 0; - icon_state = "8,15" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"amP" = ( -/obj/structure/window/shuttle/unique/raider{ - icon_state = "9,15"; - name = "skipjack cockpit" - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"amQ" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/steel, -/obj/random/melee, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"amU" = ( -/obj/structure/window/shuttle/unique/raider{ - icon_species_tag = 5; - icon_state = "12,15"; - name = "skipjack cockpit" - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"amX" = ( -/obj/structure/shuttle_part/raider{ - density = 0; - icon_state = "13,15" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"ana" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "15,15" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"anb" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "16,15"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"and" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 0; - frequency = 1332; - id_tag = "raider_east_vent" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"ang" = ( -/obj/effect/decal/cleanable/mucus, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"anh" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "20,15"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"anj" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "21,15" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"ank" = ( -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/template_noop, -/area/template_noop) -"anl" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "0,14" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"ano" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "1,14"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"ant" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd/construction, -/obj/item/rfd/construction, -/obj/item/device/multitool, -/obj/structure/table/steel, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"anx" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/carpet/art, -/area/shuttle/skipjack) -"any" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet/art, -/area/shuttle/skipjack) -"anF" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "5,14"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"anH" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "6,14" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"anI" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "8,14" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"anJ" = ( -/obj/structure/window/shuttle/unique/raider{ - icon_state = "9,14"; - name = "skipjack cockpit" - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"anK" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/steel, -/obj/item/reagent_containers/food/drinks/flask/barflask{ - pixel_y = 5 - }, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"anM" = ( -/obj/structure/bed/stool/chair/office/bridge/pilot, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"anP" = ( -/obj/structure/window/shuttle/unique/raider{ - icon_species_tag = 5; - icon_state = "12,14"; - name = "skipjack cockpit" - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"anR" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "13,14" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"anT" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "15,14" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"anW" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "16,14"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"anY" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"anZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1332; - id_tag = "raider_east_vent" - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aob" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "20,14"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aoe" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "21,14" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"aof" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_pod_1_recovery_hatch"; - locked = 1; - name = "Recovery Shuttle Dock"; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/airless, -/area/template_noop) -"aog" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "0,13" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"aoi" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "1,13"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aoj" = ( -/obj/machinery/vending/engivend, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"aok" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/item/clothing/under/pants/striped, -/obj/item/melee/whip, -/obj/structure/closet/cabinet, -/turf/simulated/floor/wood, -/area/shuttle/skipjack) -"aol" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/shuttle/skipjack) -"aop" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "5,13"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aoq" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "6,13" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"aot" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "8,13"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aov" = ( -/obj/structure/window/shuttle/unique/raider{ - icon_state = "9,13"; - name = "skipjack cockpit" - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aoy" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/shuttle_landmark/skipjack/start, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"aoz" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"aoA" = ( -/obj/structure/window/shuttle/unique/raider{ - icon_species_tag = 5; - icon_state = "12,13"; - name = "skipjack cockpit" - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aoB" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "13,13"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aoC" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "15,13" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"aoD" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "16,13"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aoE" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "17,13"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aoF" = ( -/obj/machinery/door/airlock/hatch{ - frequency = 1332; - icon_state = "door_locked"; - id_tag = "raider_southeast_lock"; - locked = 1; - req_access = list(150); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aoH" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "19,13"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aoI" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "20,13"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aoJ" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "21,13" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"aoO" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_pod_3_recovery_hatch"; - locked = 1; - name = "Recovery Shuttle Dock"; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/airless, -/area/template_noop) -"aoU" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "0,12" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"aoY" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "1,12"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"api" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "2,12"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"apj" = ( -/obj/machinery/door/airlock/hatch{ - name = "Captain's Quarters"; - req_access = list(150); - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/shuttle/skipjack) -"apt" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "4,12"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"apu" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "5,12"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"apv" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "6,12" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"apw" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "7,12" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"apx" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "8,12"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"apy" = ( -/obj/structure/bed/stool/chair/office/bridge/generic{ - desc = "Looks suspiciously comfortable."; - dir = 4; - name = "bolted chair" - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"apD" = ( -/obj/structure/table/rack, -/obj/item/storage/backpack/messenger/syndie, -/obj/item/storage/backpack/messenger/syndie, -/obj/item/storage/backpack/duffel/syndie, -/obj/item/storage/backpack/duffel/syndie, -/obj/item/storage/backpack/satchel/syndie, -/obj/item/storage/backpack/satchel/syndie, -/obj/item/storage/backpack/syndie, -/obj/item/storage/backpack/syndie, -/obj/item/storage/backpack/satchel/leather, -/obj/item/storage/backpack/satchel/leather, -/obj/item/storage/backpack/satchel/leather, -/obj/item/storage/backpack/satchel/leather, -/obj/item/storage/backpack/satchel, -/obj/item/storage/backpack/satchel, -/obj/item/storage/backpack/satchel, -/obj/item/storage/backpack/satchel, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"apF" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"apG" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/structure/table/steel, -/obj/effect/decal/cleanable/dirt, -/obj/item/grenade/flashbang{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/grenade/empgrenade{ - pixel_x = 7; - pixel_y = 6 - }, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"apH" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/steel, -/obj/machinery/recharger{ - pixel_x = 10; - pixel_y = 10 - }, -/obj/item/card/emag{ - pixel_x = -9; - pixel_y = 9 - }, -/obj/item/grenade/spawnergrenade/manhacks{ - pixel_x = -15; - pixel_y = 1 - }, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"apI" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "13,12"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"apJ" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "14,12" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"apK" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "15,12" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"apM" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "16,12"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"apN" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"apO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"apP" = ( -/obj/machinery/suit_cycler/syndicate{ - locked = 0 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"apR" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "20,12"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"apU" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"apW" = ( -/obj/item/stack/cable_coil, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "whiteshiny" - }, -/area/centcom/bar) -"apX" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "21,12" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"aqb" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "0,11" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"aqh" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "1,11"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aqj" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/random, -/turf/simulated/floor/carpet, -/area/shuttle/skipjack) -"aqn" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/shuttle/skipjack) -"aqo" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/bed/padded, -/obj/item/bedsheet/random, -/turf/simulated/floor/carpet, -/area/shuttle/skipjack) -"aqu" = ( -/turf/unsimulated/floor, -/area/centcom/bar) -"aqz" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "5,11"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"are" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "6,11" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"arf" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "6,20" - }, -/area/shuttle/mercenary) -"arg" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "7,11" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"arw" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "8,11"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"arM" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/table/standard, -/obj/machinery/chemical_dispenser/bar_soft/full{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/merchant_station) -"asM" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "16,3" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"atf" = ( -/turf/unsimulated/floor/plating, -/area/centcom/suppy) -"ati" = ( -/turf/unsimulated/wall/fakepdoor{ - dir = 1; - name = "shuttle bay blast door" - }, -/area/centcom/start) -"atq" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "0,10"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/supply/dock) -"atC" = ( -/turf/simulated/floor/shuttle/dark_blue, -/area/supply/dock) -"atJ" = ( -/turf/simulated/wall/shuttle/unique/cargo{ - icon_state = "1,2" - }, -/area/supply/dock) -"atK" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/supply/dock) -"atW" = ( -/turf/simulated/wall/shuttle/unique/cargo{ - icon_state = "6,6" - }, -/area/supply/dock) -"auv" = ( -/turf/simulated/wall/shuttle/unique/cargo{ - icon_state = "6,3" - }, -/area/supply/dock) -"auK" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "2,0" - }, -/turf/unsimulated/floor/plating, -/area/supply/dock) -"auL" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "3,0" - }, -/turf/unsimulated/floor/plating, -/area/supply/dock) -"auM" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "4,0" - }, -/turf/unsimulated/floor/plating, -/area/supply/dock) -"avk" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"avo" = ( -/obj/structure/railing/mapped{ - name = "adjusted railing" - }, -/obj/effect/floor_decal/spline/plain/black, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/checkpoint/aft) -"avr" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/full{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"avs" = ( -/obj/structure/sign/flag/nanotrasen/large/north, -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/porta_turret/crescent, -/turf/unsimulated/floor, -/area/centcom/holding) -"avR" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/turf/unsimulated/floor/plating, -/area/centcom/bar) -"avT" = ( -/obj/structure/cryofeed{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/unsimulated/floor/plating, -/area/centcom/holding) -"avU" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Disarmament Point"; - req_access = list(1) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"avW" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 8 - }, -/obj/structure/bed/stool/chair, -/turf/unsimulated/floor, -/area/centcom/holding) -"awh" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/turf/unsimulated/floor{ - icon_state = "plating" - }, -/area/centcom/control) -"awz" = ( -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"awC" = ( -/obj/structure/table/reinforced, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"awE" = ( -/obj/structure/closet/secure_closet{ - name = "equipment locker" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"awK" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" - }, -/area/centcom/holding) -"awS" = ( -/turf/unsimulated/floor/plating, -/area/centcom/bar) -"axs" = ( -/turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" - }, -/area/centcom/holding) -"axR" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"axZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/vending/assist, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"ayw" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/turf/unsimulated/floor/plating, -/area/centcom/control) -"ayG" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/turf/unsimulated/floor, -/area/centcom/holding) -"ayK" = ( -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/obj/structure/sign/directions/tram{ - dir = 4; - pixel_y = 29 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"ayM" = ( -/obj/item/tape/engineering{ - icon_state = "engineering_door" - }, -/obj/machinery/door/airlock/centcom{ - icon = 'icons/obj/doors/Doorglass.dmi'; - locked = 1; - name = "Rapid Transit Ticket Kiosk"; - opacity = 0; - req_access = list(101); - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/bar) -"aze" = ( -/turf/unsimulated/floor{ - dir = 8; - icon_state = "tiled_preview" - }, -/area/centcom/holding) -"azf" = ( -/turf/unsimulated/floor{ - dir = 8; - icon_state = "ramptop" - }, -/area/centcom/holding) -"azn" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "12,17"; - opacity = 1 - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"azs" = ( -/obj/structure/bed/stool/chair/office/bridge/generic{ - desc = "Looks suspiciously comfortable."; - dir = 4; - name = "bolted chair" - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"aAF" = ( -/obj/machinery/newscaster/east{ - pixel_y = 3 - }, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/control) -"aBl" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "centcom_arrivals_airlock"; - locked = 1; - name = "Arrivals Airlock"; - req_access = list(13); - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aBD" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_centcom{ - icon = 'icons/obj/doors/Doorglass.dmi'; - name = "To: Lower Shuttle Terminal"; - req_access = null; - req_one_access = list(108,109); - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aBJ" = ( -/obj/effect/decal/fake_object{ - name = "service ladder"; - pixel_y = 24 - }, -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/light/small/emergency{ - brightness_range = 2; - dir = 1; - name = "adjusted emergency light"; - pixel_x = -13 - }, -/turf/unsimulated/floor/plating, -/area/centcom/bar) -"aBK" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"aBO" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "CCIA Bodyguard Sidearm"; - req_access = list(109) - }, -/obj/item/gun/energy/disruptorpistol/magnum, -/obj/item/gun/energy/disruptorpistol/magnum, -/obj/item/gun/energy/disruptorpistol/magnum, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"aBS" = ( -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_battlemonsters) -"aBX" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "specops_centcom_dock_door"; - locked = 1; - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"aCb" = ( -/turf/unsimulated/wall/fakepdoor{ - dir = 1; - name = "shuttle bay blast door" - }, -/area/centcom/specops) -"aCc" = ( -/obj/effect/decal/fake_object{ - name = "service ladder"; - pixel_y = 24 - }, -/obj/structure/lattice/catwalk/indoor, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"aCd" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "2,4"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/specops) -"aCe" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "3,4"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/specops) -"aCf" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "specops_shuttle_port_hatch"; - locked = 1; - name = "Docking Port Airlock"; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/specops) -"aCj" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/obj/effect/decal/fake_object{ - color = "#545c68"; - dir = 8; - icon = 'icons/obj/railing.dmi'; - icon_state = "mcorneroverlay1"; - name = "railing" - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aCm" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/turf/unsimulated/floor{ - icon_state = "plating" - }, -/area/centcom/holding) -"aCs" = ( -/obj/structure/bed/stool/chair/shuttle, -/obj/machinery/vending/wallmed1{ - name = "Emergency NanoMed"; - pixel_x = -12; - pixel_y = 28; - req_access = null - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/specops) -"aCu" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "specops_shuttle_port"; - name = "port docking hatch controller"; - pixel_x = -23; - pixel_y = 28; - tag_door = "specops_shuttle_port_hatch" - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/specops) -"aCv" = ( -/turf/simulated/floor/shuttle/black, -/area/shuttle/specops) -"aCx" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "9,3"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/specops) -"aCy" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "10,3"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/specops) -"aCE" = ( -/obj/machinery/pipedispenser/orderable{ - pixel_y = 1 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"aCG" = ( -/turf/unsimulated/floor, -/area/centcom/evac) -"aCI" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/specops) -"aCK" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/shuttle/black, -/area/shuttle/specops) -"aCQ" = ( -/obj/effect/shuttle_landmark/supply/start, -/turf/simulated/floor/shuttle/dark_blue, -/area/supply/dock) -"aCR" = ( -/turf/unsimulated/wall/fakepdoor{ - dir = 1; - name = "shuttle bay blast door" - }, -/area/centcom/evac) -"aCU" = ( -/obj/item/device/radio/intercom/south{ - frequency = 1443; - name = "Spec Ops Intercom" - }, -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/specops) -"aCV" = ( -/obj/structure/bed/stool/chair/office/bridge/pilot{ - dir = 1 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/specops) -"aCX" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "9,1"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/specops) -"aDb" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/turf/unsimulated/floor/plating, -/area/centcom/holding) -"aDf" = ( -/obj/structure/holostool, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_battlemonsters) -"aDg" = ( -/obj/structure/window/reinforced/holowindow{ - dir = 4 - }, -/obj/structure/holostool, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_battlemonsters) -"aDh" = ( -/obj/structure/dueling_table/no_collide/above_layer{ - icon_state = "top_left" - }, -/obj/effect/decal/battlemonsters_logo, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_battlemonsters) -"aDo" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"aDr" = ( -/obj/structure/dueling_table/no_collide/above_layer{ - icon_state = "top_center" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_battlemonsters) -"aDA" = ( -/obj/structure/dueling_table/no_collide/above_layer{ - icon_state = "top_right" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_battlemonsters) -"aDB" = ( -/obj/structure/table/stone/marble, -/obj/machinery/chemical_dispenser/coffeemaster/full, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"aDJ" = ( -/obj/structure/window/reinforced/holowindow{ - dir = 8 - }, -/obj/structure/holostool, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_battlemonsters) -"aDK" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "11,21"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"aDL" = ( -/obj/structure/dueling_table{ - icon_state = "center_left" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_battlemonsters) -"aDM" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 4 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"aDR" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/structure/bed/stool/chair/office/bridge/generic{ - desc = "Looks suspiciously comfortable."; - dir = 8; - name = "bolted chair" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"aDU" = ( -/turf/unsimulated/floor/plating, -/area/centcom/ferry) -"aEf" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/unsimulated/floor/plating, -/area/centcom/ferry) -"aEj" = ( -/turf/unsimulated/wall/fakepdoor{ - dir = 1; - name = "shuttle bay blast door" - }, -/area/centcom/ferry) -"aEk" = ( -/obj/structure/shuttle_part/ccia{ - icon_state = "3,4" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/transport1) -"aEl" = ( -/obj/structure/shuttle_part/ccia{ - icon_state = "7,4"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/transport1) -"aEm" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "centcom_shuttle_hatch"; - locked = 1; - name = "Shuttle Hatch"; - req_access = list(13); - dir = 1 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/transport1) -"aEn" = ( -/obj/structure/shuttle_part/ccia{ - icon_state = "12,4" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/transport1) -"aEr" = ( -/obj/structure/dueling_table{ - icon_state = "center_right" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_battlemonsters) -"aEt" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "13,11"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aEu" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "14,11" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"aEw" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/item/storage/firstaid/regular{ - pixel_x = 2 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/transport1) -"aEx" = ( -/obj/structure/bed/stool/chair/shuttle, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/transport1) -"aEy" = ( -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/transport1) -"aEz" = ( -/obj/structure/shuttle_part/ccia{ - icon_state = "11,3" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/transport1) -"aEA" = ( -/obj/structure/shuttle_part/ccia{ - icon_state = "12,3" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/transport1) -"aED" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/unsimulated/floor{ - dir = 9; - icon_state = "carpet" - }, -/area/centcom/legion/hangar5) -"aEG" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "15,11" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"aEH" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "16,11"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aEP" = ( -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/holding) -"aER" = ( -/obj/structure/dueling_table/no_collide{ - icon_state = "bottom_leftt" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_battlemonsters) -"aET" = ( -/obj/structure/dueling_table/no_collide{ - icon_state = "bottom_center" - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_battlemonsters) -"aFa" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 1 - }, -/obj/item/pen/multi{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/machinery/recharger{ - pixel_x = 7 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/transport1) -"aFb" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 1 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/transport1) -"aFg" = ( -/obj/structure/closet/secure_closet/personal, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/ferry) -"aFh" = ( -/obj/structure/shuttle_part/ccia{ - icon_state = "12,0" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/transport1) -"aFl" = ( -/obj/structure/dueling_table/no_collide{ - icon_state = "bottom_right" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_battlemonsters) -"aFm" = ( -/obj/structure/dueling_table/no_collide/above_layer{ - icon_state = "top_left" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_battlemonsters) -"aFn" = ( -/obj/structure/window/shuttle/unique/transfer{ - icon_state = "5,21" - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"aFq" = ( -/obj/structure/window/shuttle/unique/transfer{ - icon_state = "6,21" - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"aFs" = ( -/obj/machinery/computer/shuttle_control/emergency, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"aFu" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "4,20"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"aFz" = ( -/obj/structure/window/shuttle/unique/transfer{ - density = 0; - icon_state = "5,20" - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"aFA" = ( -/obj/structure/table/reinforced/steel, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/paper_bin{ - pixel_y = 4 - }, -/obj/item/pen/multi{ - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"aFB" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 1 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"aFF" = ( -/obj/structure/cryofeed{ - dir = 2 - }, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/unsimulated/floor/plating, -/area/centcom/holding) -"aFG" = ( -/obj/structure/cryofeed{ - dir = 2 - }, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor/plating, -/area/centcom/holding) -"aFO" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "10,21"; - name = "transport shuttle"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"aFQ" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aFR" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aFS" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "20,11"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aFT" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "21,11" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"aFU" = ( -/obj/structure/cryofeed{ - dir = 2 - }, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/unsimulated/floor/plating, -/area/centcom/holding) -"aFZ" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "3,19"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"aGa" = ( -/obj/effect/decal/battlemonsters_logo{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_battlemonsters) -"aGc" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "1,4"; - name = "transport shuttle"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"aGd" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/template_noop) -"aGf" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "0,10" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"aGg" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "1,10"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aGh" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/shuttle/skipjack) -"aGi" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "5,10"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aGj" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "6,10"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aGk" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "7,10"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aGl" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "8,10"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aGm" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "9,10"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aGn" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "10,10"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aGt" = ( -/obj/machinery/door/airlock/hatch{ - req_access = list(150); - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"aGu" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "12,10"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aGv" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "13,10"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aGw" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "14,10"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aGx" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "15,10"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aGy" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "16,10"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aGz" = ( -/obj/effect/floor_decal/industrial/warning/cee, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/binary/passive_gate{ - dir = 1; - name = "shuttle airlock pressure regulator"; - target_pressure = 75; - unlocked = 1 - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aGI" = ( -/obj/structure/lattice/catwalk/indoor, -/turf/unsimulated/floor/plating, -/area/centcom/bar) -"aGN" = ( -/obj/item/modular_computer/console/preset/medical, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "escape_shuttle"; - pixel_x = -25; - req_one_access = list(13); - tag_door = "escape_shuttle_hatch" - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"aGO" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 8 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"aGQ" = ( -/turf/simulated/floor/shuttle/white, -/area/shuttle/escape) -"aGR" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "20,10"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aGS" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "21,10" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"aGT" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "0,9" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"aGU" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "1,9"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aGV" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/bedsheetbin, -/turf/simulated/floor/wood, -/area/shuttle/skipjack) -"aGW" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/shuttle/skipjack) -"aGX" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "5,9"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aGY" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "6,9"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aGZ" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "7,9"; - outside_part = 0 - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"aHi" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/structure/table/steel, -/obj/item/clothing/gloves/yellow/specialu, -/obj/item/clothing/gloves/yellow/specialt, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/storage/belt/utility/full, -/obj/item/storage/belt/utility/full, -/obj/item/device/multitool, -/obj/item/device/multitool, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"aHk" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/chair/shuttle, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"aHl" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aHL" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/holofloor/reinforced, -/area/holodeck/source_battlemonsters) -"aHM" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 4 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"aHN" = ( -/obj/structure/bed/roller, -/turf/simulated/floor/shuttle/white, -/area/shuttle/escape) -"aHO" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/item/clothing/suit/space/void/atmos, -/obj/item/clothing/head/helmet/space/void/atmos, -/obj/item/clothing/head/helmet/space/void/mining, -/obj/item/clothing/suit/space/void/mining, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"aHV" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/effect/ghostspawpoint{ - identifier = "OdinDoctor"; - name = "igs - OdinDoctor" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"aIf" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "12,19"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"aIg" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/escape) -"aIh" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "14,9"; - outside_part = 0 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"aIi" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "15,9"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aIj" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "16,9"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aIk" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/window/reinforced, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aIl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/door/window/southright{ - req_access = list(150) - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aIm" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aIn" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "20,9"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aIo" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "21,9" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"aIE" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "0,8" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"aIF" = ( -/obj/machinery/airlock_sensor{ - frequency = 1332; - id_tag = "raider_east_sensor"; - pixel_x = -25 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/vehicle/bike{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aIG" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "1,8"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aIH" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/cabinet, -/obj/item/clothing/under/pants/tacticool, -/obj/item/clothing/under/color/black, -/obj/item/clothing/under/color/pink, -/obj/item/clothing/under/unathi, -/obj/item/clothing/accessory/poncho/unathimantle, -/obj/item/clothing/accessory/poncho, -/turf/simulated/floor/wood, -/area/shuttle/skipjack) -"aII" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/shuttle/skipjack) -"aIJ" = ( -/obj/machinery/door/airlock/hatch{ - req_access = list(150); - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/shuttle/skipjack) -"aIK" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/shuttle/skipjack) -"aIL" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aIU" = ( -/obj/machinery/light/small{ - dir = 4; - name = "adjusted light fixture"; - pixel_y = -16 - }, -/obj/effect/landmark/latejoin, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/spawning) -"aIV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/door/airlock/hatch{ - req_access = list(150); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aIX" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aIY" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "20,8"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aIZ" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "21,8" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"aJa" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "0,7" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"aJb" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "1,7"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aJc" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "2,7"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aJd" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "3,7"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aJe" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "4,7"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aJj" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "5,7"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aJk" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "6,7"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aJG" = ( -/obj/machinery/vending/dinnerware{ - density = 0; - pixel_y = 29 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"aJH" = ( -/turf/unsimulated/floor/plating, -/area/centcom/spawning) -"aJI" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor/plating, -/area/centcom/spawning) -"aJJ" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "7,7"; - outside_part = 0 - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"aJK" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/effect/decal/cleanable/blood, -/obj/item/reagent_containers/glass/bucket/wood{ - pixel_x = -19; - pixel_y = 6 - }, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"aJL" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"aJM" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "11,7"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aJN" = ( -/obj/machinery/door/window/northleft{ - name = "infirmary?"; - req_one_access = list(150) - }, -/obj/structure/curtain/open/shower, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/shuttle/skipjack) -"aJO" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "13,7"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aKn" = ( -/obj/structure/shuttle_part/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "0,6"; - name = "autoshuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/arrival) -"aKo" = ( -/obj/structure/window/shuttle/unique/arrivals{ - icon_state = "6,0" - }, -/turf/simulated/floor/plating, -/area/shuttle/arrival) -"aKp" = ( -/turf/unsimulated/wall/fakepdoor{ - dir = 1; - name = "shuttle bay blast door" - }, -/area/centcom/spawning) -"aKq" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "14,7"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aKr" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "15,7"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aKs" = ( -/obj/structure/table/steel, -/obj/item/gun/launcher/crossbow, -/obj/item/stack/rods{ - amount = 10 - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aKt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/bed/stool/padded/red, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aKx" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/unsimulated/floor{ - dir = 1; - icon_state = "ramptop"; - name = "staircase" - }, -/area/centcom/spawning) -"aKD" = ( -/obj/structure/shuttle_part/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "0,5"; - name = "autoshuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/arrival) -"aKE" = ( -/turf/simulated/wall/shuttle/unique/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "2,5"; - name = "autoshuttle" - }, -/area/shuttle/arrival) -"aKG" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/closet/crate/trashcart{ - anchored = 1; - pixel_y = 3 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/arrival) -"aKI" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/closet/emcloset{ - anchored = 1; - pixel_y = 2 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/arrival) -"aKK" = ( -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/arrival) -"aKM" = ( -/obj/structure/table/steel, -/obj/item/trap, -/obj/item/trap, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aKO" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "20,7"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aKZ" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/turf/unsimulated/floor{ - icon_state = "plating" - }, -/area/centcom/spawning) -"aLg" = ( -/obj/structure/shuttle_part/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "0,4"; - name = "autoshuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/arrival) -"aLh" = ( -/obj/structure/shuttle_part/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "1,4"; - name = "autoshuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/arrival) -"aLi" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/turf/simulated/floor, -/area/tdome/tdome2) -"aLk" = ( -/turf/simulated/wall/shuttle/unique/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "12,4"; - name = "autoshuttle" - }, -/area/shuttle/arrival) -"aLl" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "21,7" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"aLm" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "0,6" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"aLn" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "1,6"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aLo" = ( -/obj/structure/bed/stool/chair/office/bridge/generic{ - desc = "Looks suspiciously comfortable."; - dir = 4; - name = "bolted chair" - }, -/turf/simulated/floor/carpet, -/area/shuttle/skipjack) -"aLp" = ( -/obj/structure/table/steel, -/obj/item/deck/cards{ - pixel_y = -16 - }, -/obj/item/reagent_containers/food/drinks/bottle/rum{ - pixel_y = 7 - }, -/turf/simulated/floor/carpet, -/area/shuttle/skipjack) -"aLq" = ( -/obj/structure/bed/stool/chair/office/bridge/generic{ - desc = "Looks suspiciously comfortable."; - dir = 8; - name = "bolted chair" - }, -/turf/simulated/floor/carpet, -/area/shuttle/skipjack) -"aLE" = ( -/obj/structure/shuttle_part/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "1,3"; - name = "autoshuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/arrival) -"aLG" = ( -/turf/simulated/wall/shuttle/unique/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "12,3"; - name = "autoshuttle" - }, -/area/shuttle/arrival) -"aLI" = ( -/obj/structure/shuttle_part/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "1,2"; - name = "autoshuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/arrival) -"aLJ" = ( -/turf/simulated/wall/shuttle/unique/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "12,2"; - name = "autoshuttle" - }, -/area/shuttle/arrival) -"aMa" = ( -/obj/structure/sign/flag/nanotrasen, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_battlemonsters) -"aMf" = ( -/obj/structure/shuttle_part/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "0,1"; - name = "autoshuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/arrival) -"aMg" = ( -/turf/simulated/wall/shuttle/unique/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "2,1"; - name = "autoshuttle" - }, -/area/shuttle/arrival) -"aMk" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled/dark, -/area/shuttle/skipjack) -"aMn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/shuttle/skipjack) -"aMr" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aMs" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/unsimulated/floor{ - dir = 1; - name = "staircase"; - icon_state = "tiled_preview" - }, -/area/centcom/spawning) -"aMt" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/unsimulated/floor{ - dir = 1; - name = "staircase"; - icon_state = "tiled_preview" - }, -/area/centcom/spawning) -"aMy" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/structure/bed/stool/chair/unmovable{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aMz" = ( -/turf/simulated/wall/shuttle/unique/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "2,0"; - name = "autoshuttle" - }, -/area/shuttle/arrival) -"aMA" = ( -/turf/simulated/wall/shuttle/unique/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "3,0"; - name = "autoshuttle" - }, -/area/shuttle/arrival) -"aMH" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aMJ" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/random/pottedplant{ - anchored = 1; - pixel_y = 18 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aMT" = ( -/obj/effect/floor_decal/corner/red/full, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aMV" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aMW" = ( -/turf/unsimulated/floor, -/area/centcom/spawning) -"aNe" = ( -/obj/machinery/door/airlock/hatch{ - req_access = list(150); - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/shuttle/skipjack) -"aNf" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "11,6"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aNg" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/closet/walllocker/medical/secure{ - name = "blood closet"; - pixel_x = -33; - pixel_y = 3; - req_access = null - }, -/obj/item/reagent_containers/blood/ripped, -/obj/item/reagent_containers/blood/OMinus{ - name = "soon-to-expire blood pack" - }, -/obj/item/reagent_containers/blood/OMinus{ - name = "soon-to-expire blood pack" - }, -/turf/simulated/floor/tiled/freezer, -/area/shuttle/skipjack) -"aNh" = ( -/obj/machinery/optable, -/obj/structure/closet/crate/medical{ - desc = "Property of Zeng-Hu Pharmaceuticals."; - name = "stolen medical shipment" - }, -/obj/item/reagent_containers/inhaler/pneumalin, -/obj/item/reagent_containers/inhaler/pneumalin, -/obj/item/reagent_containers/hypospray/autoinjector/survival, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/regular, -/obj/item/clothing/gloves/latex, -/obj/item/reagent_containers/glass/bottle/peridaxon, -/obj/item/reagent_containers/glass/bottle/inaprovaline, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/syringe, -/obj/item/clothing/gloves/latex, -/obj/item/clothing/mask/surgical, -/obj/item/storage/belt/medical, -/obj/random/medical, -/obj/random/medical, -/obj/random/medical, -/obj/random/medical, -/obj/random/medical, -/obj/random/medical, -/obj/item/reagent_containers/glass/bottle/bicaridine, -/obj/item/reagent_containers/glass/bottle/dermaline, -/obj/item/reagent_containers/glass/bottle/thetamycin, -/turf/simulated/floor/tiled/freezer, -/area/shuttle/skipjack) -"aNi" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "14,6"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aNs" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aNt" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aNv" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/obj/machinery/vending/coffee/free{ - pixel_x = -1 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aNx" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aNy" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aNz" = ( -/obj/effect/decal/cleanable/vomit, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aNA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aNB" = ( -/obj/structure/table/rack, -/obj/random/melee, -/obj/item/airbubble/syndie, -/obj/item/airbubble/syndie, -/obj/item/airbubble/syndie, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aNC" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "20,6"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aNE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"aNJ" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/structure/sign/directions/dock{ - pixel_x = -32 - }, -/obj/effect/floor_decal/industrial/loading/yellow, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aNK" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/loading/yellow, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aNM" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aNN" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "21,6" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"aNO" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "0,5" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"aNP" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "1,5"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aNQ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/bed/stool/chair/office/bridge/generic{ - desc = "Looks suspiciously comfortable."; - dir = 4; - name = "bolted chair" - }, -/turf/simulated/floor/carpet, -/area/shuttle/skipjack) -"aNR" = ( -/obj/structure/table/steel, -/obj/item/reagent_containers/food/drinks/flask/barflask, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/shuttle/skipjack) -"aNS" = ( -/obj/structure/bed/stool/chair/office/bridge/generic{ - desc = "Looks suspiciously comfortable."; - dir = 8; - name = "bolted chair" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/shuttle/skipjack) -"aNX" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aNY" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/odin/open{ - id = "arrivals_inner"; - name = "blast door" - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aOa" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aOb" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/shuttle/skipjack) -"aOd" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/shuttle/skipjack) -"aOe" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "7,5"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aOk" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aOl" = ( -/obj/item/modular_computer/console/preset/command, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/spawning) -"aOo" = ( -/obj/item/material/harpoon, -/obj/item/tank/oxygen, -/obj/item/clothing/shoes/magboots, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/steel, -/obj/item/clothing/suit/space/void/merc, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/merc, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"aOp" = ( -/obj/item/gun/energy/rifle/ionrifle, -/obj/item/tank/oxygen, -/obj/item/clothing/shoes/magboots, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/steel, -/obj/item/clothing/suit/space/void/engineering, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/head/helmet/space/void/engineering, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"aOq" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aOr" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "11,5"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aOt" = ( -/obj/machinery/iv_drip{ - pixel_x = -3 - }, -/obj/machinery/shower{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/shuttle/skipjack) -"aOz" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/spawning) -"aOA" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/computer/cryopod{ - pixel_y = 28 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aOB" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aOC" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"aOE" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "14,5"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aOF" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "5,24" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"aOG" = ( -/obj/structure/window/shuttle/unique/mercenary{ - icon_state = "8,25"; - outside_window = 1 - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"aOK" = ( -/obj/structure/window/shuttle/unique/mercenary{ - icon_state = "9,24" - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"aOM" = ( -/obj/structure/table/reinforced, -/obj/machinery/chemical_dispenser/bar_soft/full{ - pixel_y = 6 - }, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"aOX" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "4,16"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"aPg" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aPk" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aPl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aPm" = ( -/obj/structure/window/shuttle/unique/mercenary{ - icon_state = "6,23" - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"aPn" = ( -/obj/structure/window/shuttle/unique/mercenary{ - icon_state = "10,23" - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"aPo" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "11,23" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"aPr" = ( -/obj/structure/table/standard, -/obj/item/pizzabox/meat{ - pixel_y = 8 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"aPC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aPD" = ( -/obj/structure/bed/stool/chair/padded/black{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"aPM" = ( -/obj/machinery/door/airlock/centcom{ - name = "Unisex Restroom" - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aPO" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/spawning) -"aPQ" = ( -/obj/machinery/door/airlock/glass{ - name = "Cryogenic Storage" - }, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aPS" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "4,21" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"aPT" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "5,21" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"aPU" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "6,21"; - outside_part = 0 - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"aPW" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"aPX" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "12,21" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"aQa" = ( -/turf/unsimulated/wall/fakeairlock{ - icon_state = "door_locked"; - name = "Communications Array" - }, -/area/antag/mercenary) -"aQe" = ( -/obj/effect/decal/fake_object{ - icon = 'icons/obj/doors/rapid_pdoor.dmi'; - icon_state = "shutter0"; - name = "shutter" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"aQi" = ( -/obj/machinery/light/small{ - brightness_power = 0.5; - brightness_range = 4; - dir = 8; - name = "adjusted light fixture" - }, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-35" - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aQj" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-35" - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aQk" = ( -/obj/structure/closet/secure_closet/security{ - name = "officer's locker"; - req_access = list(103) - }, -/obj/structure/window/reinforced, -/obj/item/clothing/suit/armor/carrier/ballistic, -/obj/item/clothing/under/rank/centcom_officer, -/obj/item/clothing/shoes/sneakers, -/obj/item/clothing/gloves/white, -/obj/item/clothing/glasses/sunglasses/sechud, -/obj/item/clothing/accessory/badge/holo, -/obj/item/clothing/accessory/holster/hip, -/obj/item/device/radio/headset/ert, -/obj/item/clothing/head/beret/centcom/officer, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/spawning) -"aQm" = ( -/obj/structure/sign/flag/nanotrasen/unmovable, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/spawning) -"aQn" = ( -/obj/structure/cryofeed, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/spawning) -"aQr" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "4,20" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"aQs" = ( -/obj/structure/sign/double/map/left{ - pixel_y = 32 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"aQG" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "4,19" - }, -/area/shuttle/mercenary) -"aQH" = ( -/obj/effect/floor_decal/spline/plain/black, -/obj/machinery/door/window/northleft{ - name = "cockpit"; - req_access = list(150) - }, -/turf/simulated/floor/tiled/ramp/bottom, -/area/shuttle/mercenary) -"aQI" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "9,19" - }, -/area/shuttle/mercenary) -"aQJ" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "12,19" - }, -/area/shuttle/mercenary) -"aQK" = ( -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/structure/table/glass{ - name = "reinforced glass table"; - table_reinf = "glass" - }, -/obj/effect/landmark{ - name = "Syndicate-Uplink" - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"aQS" = ( -/obj/effect/step_trigger/thrower/shuttle/south, -/turf/template_noop, -/area/template_noop) -"aQW" = ( -/obj/structure/cryofeed, -/obj/structure/window/reinforced/crescent, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/spawning) -"aRa" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/door/airlock{ - id_tag = "odin_arrivals_stall1"; - name = "Stall 1" - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aRb" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/door/airlock{ - id_tag = "odin_arrivals_stall2"; - name = "Stall 2" - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"aRi" = ( -/obj/structure/table/glass{ - name = "reinforced glass table"; - table_reinf = "glass" - }, -/obj/item/device/laser_pointer/red, -/turf/unsimulated/floor, -/area/antag/mercenary) -"aRt" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/structure/sign/double/map/left{ - desc = "A detailed picture of a Nanotrasen facility."; - name = "operation map"; - pixel_y = 31 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"aRx" = ( -/obj/item/device/megaphone/red{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/structure/table/glass{ - name = "reinforced glass table"; - table_reinf = "glass" - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"aRB" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "12,21"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"aRE" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/photocopier, -/turf/unsimulated/floor, -/area/antag/mercenary) -"aRT" = ( -/obj/structure/bed/stool/chair/padded/brown, -/obj/effect/landmark{ - name = "TCFLLegate" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "carpet14-10" - }, -/area/centcom/legion/hangar5) -"aSf" = ( -/obj/machinery/door/airlock/centcom{ - name = "The Big Empty"; - req_access = list(103) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/spawning) -"aTs" = ( -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/shuttle/tan, -/area/shuttle/arrival) -"aTW" = ( -/obj/machinery/igniter, -/obj/structure/sign/flag/nanotrasen, -/turf/simulated/floor, -/area/tdome) -"aTX" = ( -/turf/simulated/floor, -/area/tdome) -"aTY" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/tdome) -"aUh" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"aUm" = ( -/turf/simulated/floor/bluegrid, -/area/tdome) -"aUn" = ( -/obj/machinery/flasher{ - id = "flash"; - name = "Thunderdome Flash" - }, -/turf/simulated/floor/bluegrid, -/area/tdome) -"aVf" = ( -/obj/effect/landmark{ - name = "Penguin Spawn Random" - }, -/obj/structure/flora/tree/dead, -/turf/simulated/floor/holofloor/snow, -/area/holodeck/source_snowfield) -"aVg" = ( -/obj/effect/landmark{ - name = "Penguin Spawn Emperor" - }, -/obj/structure/flora/tree/pine, -/turf/simulated/floor/holofloor/snow, -/area/holodeck/source_snowfield) -"aVh" = ( -/obj/effect/decal/fake_object/light_source/invisible, -/turf/simulated/floor/holofloor/space{ - blocks_air = 1; - density = 1; - dynamic_lighting = 1; - icon_state = "black" - }, -/area/antag/ninja) -"aVj" = ( -/obj/structure/table/rack, -/obj/random/melee, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"aVk" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "20,5"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aVo" = ( -/obj/structure/table/reinforced/wood, -/obj/item/reagent_containers/food/drinks/bottle/cognac{ - pixel_x = -5; - pixel_y = 15 - }, -/obj/item/reagent_containers/food/drinks/bottle/wine{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -7; - pixel_y = 1 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -1; - pixel_y = -4 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"aVr" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "21,5" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"aVs" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "0,4" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"aVt" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "1,4"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aVu" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/skipjack) -"aVv" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/shuttle/skipjack) -"aVC" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "4,21"; - name = "transport shuttle"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"aVG" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "2,19"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"aVH" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "11,16"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"aVJ" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "12,16"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"aVK" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "13,16"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"aVL" = ( -/obj/structure/bed/stool/chair/shuttle, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"aVP" = ( -/obj/effect/shuttle_landmark/emergency/start, -/turf/simulated/floor/shuttle/black, -/area/shuttle/escape) -"aVT" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "13,8"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"aVU" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"aVV" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"aVX" = ( -/obj/machinery/iv_drip, -/turf/simulated/floor/shuttle/white, -/area/shuttle/escape) -"aWc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"aWd" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"aWf" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/mob/living/heavy_vehicle/premade/combat, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"aWm" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - name = "adjusted window" - }, -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"aWn" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - name = "adjusted window" - }, -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"aWp" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/simulated/floor/shuttle/white, -/area/shuttle/escape) -"aWu" = ( -/turf/simulated/floor/shuttle/black, -/area/shuttle/escape) -"aWv" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/escape) -"aWB" = ( -/obj/structure/window/shuttle/unique/transfer{ - icon_state = "13,17" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"aWC" = ( -/obj/random/pottedplant, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"aWD" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "13,6"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"aWE" = ( -/obj/structure/dueling_table/no_collide/above_layer{ - icon_state = "top_center" - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_battlemonsters) -"aWF" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/turf/simulated/floor/shuttle/white, -/area/shuttle/escape) -"aWH" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "2,4"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"aWI" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "4,2"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"aWJ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/shuttle/skipjack) -"aWL" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "3,19" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"aWM" = ( -/obj/machinery/door/airlock/centcom{ - name = "Bedroom" - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/antag/mercenary) -"aWO" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/shuttle/white, -/area/shuttle/escape) -"aWT" = ( -/obj/machinery/atmospherics/unary/cryo_cell, -/turf/simulated/floor/shuttle/white, -/area/shuttle/escape) -"aWU" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "2,3"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"aWV" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "4,3"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"aWW" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "6,3"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"aWX" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "8,3"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"aWZ" = ( -/obj/structure/shuttle_part/transfer{ - density = 0; - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "13,3"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"aXa" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "2,2"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"aXb" = ( -/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/southleft, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/plating, -/area/shuttle/escape) -"aXc" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "12,2"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"aXd" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "13,2"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"aXe" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "2,1"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"aXf" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "3,1"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"aXg" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "6,1"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"aXh" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "2,0"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"aXi" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "3,0"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"aXl" = ( -/obj/structure/dueling_table/no_collide/above_layer{ - icon_state = "top_right" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_battlemonsters) -"aXm" = ( -/obj/structure/dueling_table{ - icon_state = "center_center" - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_battlemonsters) -"aXn" = ( -/obj/structure/dueling_table/no_collide{ - icon_state = "bottom_leftt" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_battlemonsters) -"aXo" = ( -/obj/structure/dueling_table/no_collide{ - icon_state = "bottom_center" - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_battlemonsters) -"aXp" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/machinery/door/window/southright{ - dir = 8; - req_access = list(102) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"aXq" = ( -/obj/structure/closet/walllocker/emerglocker/south, -/obj/machinery/light, -/turf/simulated/floor/shuttle/black, -/area/shuttle/escape) -"aXr" = ( -/obj/structure/dueling_table/no_collide{ - icon_state = "bottom_right" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_battlemonsters) -"aXs" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/holofloor/reinforced, -/area/holodeck/source_battlemonsters) -"aXt" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/holofloor/reinforced, -/area/holodeck/source_battlemonsters) -"aXu" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/holofloor/reinforced, -/area/holodeck/source_battlemonsters) -"aXv" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/holofloor/reinforced, -/area/holodeck/source_battlemonsters) -"aXw" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/holofloor/reinforced, -/area/holodeck/source_battlemonsters) -"aXz" = ( -/obj/structure/bed/stool/chair/padded/beige, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"aXF" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/shuttle/skipjack) -"aXS" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "7,4"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aXW" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "8,4"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aXX" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "9,4"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aYm" = ( -/obj/structure/closet/crate/loot{ - desc = "The old dusty labels on this crate indicate that it was supposed to be shipped long ago."; - name = "forgotten shipment" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"aYK" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "11,4"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aYL" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "12,4"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aYM" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "13,4"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"aYO" = ( -/obj/structure/table/reinforced, -/obj/item/airbubble/syndie, -/obj/item/airbubble/syndie, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"aYQ" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "12,15" - }, -/area/shuttle/mercenary) -"aYR" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "13,15" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"aYV" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "2,1" - }, -/turf/unsimulated/floor/plating, -/area/supply/dock) -"aZd" = ( -/turf/unsimulated/floor/plating, -/area/centcom/distress_prep) -"aZA" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/unsimulated/floor{ - icon_state = "carpet10-8" - }, -/area/centcom/legion/hangar5) -"aZX" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "14,4"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"bag" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/unsimulated/floor/plating, -/area/centcom/bar) -"bbx" = ( -/obj/vehicle/droppod/syndie{ - connected_blastdoor = "merc_droppod_2" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/antag/mercenary) -"bbD" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"bbH" = ( -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/spawning) -"bcu" = ( -/obj/machinery/light/small{ - brightness_power = 0.5; - dir = 8; - name = "adjusted light fixture" - }, -/turf/unsimulated/floor/plating, -/area/centcom/spawning) -"bcv" = ( -/obj/structure/sign/flag/biesel{ - pixel_y = 32 - }, -/obj/machinery/button/remote/blast_door{ - id = "tcfl_jotun"; - name = "MBT Garage"; - pixel_x = 28; - pixel_y = -6; - req_access = list(108,111) - }, -/obj/machinery/light/small{ - dir = 4; - name = "adjusted light fixture" - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion/hangar5) -"bcC" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/mercenary) -"bcL" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"bdl" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/effect/floor_decal/industrial/warning/cee, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"bdu" = ( -/obj/structure/weapon_rack/dragunov{ - desc = "An old dusty rifle, once the pride of the bar."; - pixel_y = 26 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/antag/raider) -"bdI" = ( -/obj/machinery/computer/slot_machine, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/raider) -"bdK" = ( -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 8; - icon = 'icons/obj/railing.dmi'; - icon_state = "mcorneroverlay1"; - name = "railing" - }, -/turf/simulated/floor/holofloor/space{ - blocks_air = 1; - density = 1; - dynamic_lighting = 1; - icon_state = "black" - }, -/area/antag/ninja) -"bdL" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "4,1" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"bdY" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"bew" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 5 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "CentComBarShutters"; - name = "Bar Shutters"; - pixel_x = -24; - req_access = list(105) - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"bfa" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -14; - pixel_y = 6 - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/distress_prep) -"bfv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"bfw" = ( -/obj/structure/table/rack, -/obj/item/pinpointer/nukeop{ - pixel_x = -2; - pixel_y = -4 - }, -/obj/item/pinpointer/nukeop{ - pixel_x = -2; - pixel_y = -4 - }, -/obj/item/pinpointer/nukeop{ - pixel_x = -2; - pixel_y = -4 - }, -/obj/item/pinpointer/nukeop{ - pixel_x = -2; - pixel_y = -4 - }, -/obj/item/device/binoculars{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/device/binoculars{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/device/binoculars{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/device/binoculars{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"bfN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"bgp" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/vending/tacticool/ert{ - density = 0; - pixel_x = -1; - pixel_y = 30 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"bhd" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"bhe" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "14,14" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"bhl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"bid" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/fake_object{ - density = 1; - desc = "A secure supply crate, It carries the insignia of the Tau Ceti Foreign Legion. It appears quite scuffed."; - icon = 'icons/obj/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "foreign legion supply crate"; - pixel_x = 3; - pixel_y = 8 - }, -/obj/effect/decal/fake_object{ - desc = "A secure supply crate, It carries the insignia of the Tau Ceti Foreign Legion. It appears quite scuffed."; - icon = 'icons/obj/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "foreign legion supply crate" - }, -/obj/effect/decal/fake_object{ - desc = "A secure supply crate, It carries the insignia of the Tau Ceti Foreign Legion. It appears quite scuffed."; - icon = 'icons/obj/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "foreign legion supply crate"; - pixel_x = 2; - pixel_y = 19 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"bir" = ( -/obj/item/storage/bag/inflatable{ - pixel_y = 8 - }, -/obj/item/storage/bag/inflatable{ - pixel_y = 8 - }, -/obj/item/storage/bag/inflatable{ - pixel_y = 8 - }, -/obj/item/storage/bag/inflatable{ - pixel_y = 8 - }, -/obj/item/grenade/chem_grenade/metalfoam{ - pixel_x = -7; - pixel_y = -8 - }, -/obj/item/grenade/chem_grenade/metalfoam{ - pixel_y = -8 - }, -/obj/item/grenade/chem_grenade/metalfoam{ - pixel_x = 7; - pixel_y = -8 - }, -/obj/item/grenade/chem_grenade/metalfoam{ - pixel_x = -7; - pixel_y = -8 - }, -/obj/item/grenade/chem_grenade/metalfoam{ - pixel_y = -8 - }, -/obj/item/grenade/chem_grenade/metalfoam{ - pixel_x = 7; - pixel_y = -8 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/structure/table/reinforced, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"biK" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/turf/simulated/floor, -/area/tdome/tdome1) -"bjr" = ( -/obj/structure/flora/rock{ - pixel_x = 3; - pixel_y = 18 - }, -/turf/simulated/floor/beach/sand{ - dir = 10; - icon_state = "beach" - }, -/area/centcom/shared_dream) -"bjD" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"bjR" = ( -/obj/structure/table/rack, -/obj/item/plastique{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/plastique{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/plastique{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/plastique{ - pixel_x = 8 - }, -/obj/item/plastique{ - pixel_x = 8 - }, -/obj/item/plastique{ - pixel_x = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/plastique{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/plastique{ - pixel_x = 8 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"bkg" = ( -/obj/machinery/appliance/cooker/stove{ - stat = 0 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"bkm" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack, -/obj/item/deployable_kit/legion_turret{ - name = "blaster turret assembly kit" - }, -/obj/item/deployable_kit/legion_turret{ - name = "blaster turret assembly kit" - }, -/obj/item/deployable_kit/legion_turret{ - name = "blaster turret assembly kit" - }, -/obj/item/deployable_kit/legion_turret{ - name = "blaster turret assembly kit" - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"bkr" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/powered/pump/filled{ - start_pressure = 15000 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"bkL" = ( -/obj/effect/step_trigger/thrower/shuttle/east, -/turf/space/transit/bluespace/south, -/area/template_noop) -"bld" = ( -/obj/machinery/door/window/eastleft{ - name = "cockpit"; - req_access = null; - req_one_access = list(38,72) - }, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/shuttle/transport1) -"bln" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/undies_wardrobe{ - anchored = 1; - icon = 'icons/obj/crate.dmi'; - icon_state = "drop_crate-grey"; - name = "underwear crate" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/ninja) -"blQ" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled{ - start_pressure = 15000 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"bmI" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "4,0" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"bmM" = ( -/obj/effect/ghostspawpoint{ - identifier = "OdinJanitor"; - name = "igs - OdinJanitor" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"bmV" = ( -/obj/structure/bed/stool/padded/red, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"bnB" = ( -/turf/simulated/floor/shuttle/black, -/area/shuttle/distress) -"boM" = ( -/obj/structure/sign/directions/dock{ - dir = 4; - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"bpk" = ( -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "CentComKitchenShutters"; - name = "Kitchen Shutters"; - pixel_x = -24; - req_access = list(105) - }, -/obj/structure/table/stone/marble, -/obj/machinery/chemical_dispenser/bar_soft/full{ - pixel_y = 6 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"bpF" = ( -/turf/simulated/wall/shuttle/unique/ert{ - icon_state = "8,1" - }, -/area/centcom/specops) -"bpY" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/emitter{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"bqf" = ( -/obj/effect/decal/fake_object{ - icon = 'icons/obj/doors/rapid_pdoor.dmi'; - icon_state = "shutter0"; - name = "shutter" - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"bqi" = ( -/obj/item/ore, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"bro" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"brw" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"brB" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/tray, -/obj/machinery/light/small, -/obj/structure/toilet{ - dir = 4; - pixel_y = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/shuttle/skipjack) -"brN" = ( -/obj/structure/diona/vines, -/turf/simulated/floor/diona, -/area/centcom/shared_dream) -"bsc" = ( -/obj/machinery/pipedispenser/orderable, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"bsi" = ( -/obj/machinery/floodlight, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"bsj" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"bsu" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "20,4"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"bsH" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/decal/fake_object{ - density = 1; - desc = "A particularly scuffed cargo trolley."; - icon = 'icons/obj/vehicles.dmi'; - icon_state = "cargo_trailer"; - name = "cargo trailer"; - pixel_x = 1 - }, -/obj/effect/decal/fake_object{ - desc = "A crate of military supplies."; - icon = 'icons/obj/crate.dmi'; - icon_state = "dropcrate"; - name = "metal crate"; - pixel_x = 1; - pixel_y = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"bsS" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/tray, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/holding) -"bsZ" = ( -/turf/space/dynamic, -/area/antag/raider) -"bto" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/ferry) -"btV" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "2,16"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"buB" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/antag/burglar) -"bvm" = ( -/obj/machinery/door/window/westleft{ - name = "Auxillary Cryogenics" - }, -/turf/simulated/floor/carpet/cyan, -/area/centcom/ferry) -"bvr" = ( -/obj/structure/closet/gimmick{ - name = "emergency response team wardrobe" - }, -/obj/item/clothing/under/syndicate/combat, -/obj/item/clothing/under/ert, -/obj/item/clothing/head/beret/centcom/officer, -/obj/item/storage/backpack/ert/security, -/obj/item/clothing/suit/armor/vest/ert/security, -/obj/item/clothing/head/helmet/ert/security, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/sign/flag/elyra{ - pixel_x = 29 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"bvA" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "21,4" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"bxL" = ( -/obj/machinery/pipedispenser/disposal/orderable, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"bye" = ( -/obj/effect/decal/fake_object/light_source{ - density = 1; - icon_state = "bonfire_on_fire"; - light_color = "#FA644B"; - light_range = 6; - name = "bonfire" - }, -/turf/simulated/floor/beach/sand{ - icon_state = "desert" - }, -/area/centcom/shared_dream) -"byi" = ( -/obj/machinery/light{ - dir = 8; - name = "adjusted light fixture"; - pixel_y = -16; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "ramptop"; - name = "staircase" - }, -/area/antag/mercenary) -"byk" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/obj/machinery/door/blast/odin{ - density = 0; - icon_state = "pdoor0"; - id = "CentComPort"; - name = "Security Doors"; - opacity = 0 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"byL" = ( -/obj/structure/railing/mapped, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/black, -/turf/unsimulated/floor/plating, -/area/antag/burglar) -"bzb" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "0,3" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"bze" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "1,3"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"bzK" = ( -/obj/machinery/photocopier, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"bAr" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "8,4" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"bBd" = ( -/obj/structure/grille/broken, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/item/material/shard, -/obj/item/ore{ - name = "meteor fragment"; - pixel_y = -4 - }, -/obj/item/stack/rods, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"bBe" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/effect/decal/fake_object/light_source/invisible, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"bBH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch{ - name = "Maintenance"; - req_access = list(150); - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"bCG" = ( -/obj/structure/table/standard, -/obj/machinery/vending/wallmed1{ - pixel_x = 27; - req_access = null - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/item/reagent_containers/glass/bottle/bicaridine{ - pixel_x = -8 - }, -/obj/item/reagent_containers/glass/bottle/dermaline{ - pixel_x = 9 - }, -/obj/item/reagent_containers/glass/bottle/inaprovaline, -/obj/item/reagent_containers/glass/bottle/thetamycin{ - pixel_x = 9; - pixel_y = 7 - }, -/obj/item/reagent_containers/glass/bottle/antitoxin{ - pixel_y = 7 - }, -/obj/item/reagent_containers/glass/bottle/dexalin_plus{ - pixel_x = 9; - pixel_y = -11 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/holding) -"bCU" = ( -/obj/structure/table/rack, -/obj/item/ammo_magazine/a10mm{ - pixel_x = -5 - }, -/obj/item/ammo_magazine/a10mm{ - pixel_x = -5 - }, -/obj/item/ammo_magazine/a10mm{ - pixel_x = -5 - }, -/obj/item/ammo_magazine/a10mm{ - pixel_x = -5 - }, -/obj/item/ammo_magazine/a10mm{ - pixel_x = 2 - }, -/obj/item/ammo_magazine/a10mm{ - pixel_x = 2 - }, -/obj/item/ammo_magazine/a10mm{ - pixel_x = 2 - }, -/obj/item/ammo_magazine/a10mm{ - pixel_x = 2 - }, -/obj/item/ammo_magazine/a10mm{ - pixel_x = 9 - }, -/obj/item/ammo_magazine/a10mm{ - pixel_x = 9 - }, -/obj/item/ammo_magazine/a10mm{ - pixel_x = 9 - }, -/obj/item/ammo_magazine/a10mm{ - pixel_x = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"bDi" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "2,3"; - outside_part = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/skipjack) -"bDq" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "9,1"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"bDu" = ( -/obj/machinery/appliance/cooker/fryer{ - stat = 0 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"bDy" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"bDR" = ( -/obj/structure/bed/stool/chair/office/bridge/pilot, -/turf/simulated/floor/shuttle/black, -/area/shuttle/burglar) -"bEa" = ( -/obj/machinery/door/airlock/centcom{ - name = "Washroom" - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/distress_prep) -"bFS" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/obj/structure/table/rack, -/obj/item/melee/telebaton{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/item/melee/telebaton{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/item/melee/telebaton{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/item/crowbar{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/crowbar{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/crowbar{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"bGo" = ( -/obj/machinery/door/airlock/centcom{ - locked = 1; - name = "Mass Transit Wing Maintenance"; - req_access = list(109) - }, -/turf/unsimulated/floor{ - icon_state = "whiteshiny" - }, -/area/centcom/bar) -"bGq" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/chemical_dispenser/ert{ - dir = 4 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"bGw" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"bGF" = ( -/obj/machinery/washing_machine, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/shuttle/skipjack) -"bGK" = ( -/obj/structure/lattice/catwalk, -/obj/item/ore{ - name = "meteor fragment"; - pixel_x = -8; - pixel_y = -8 - }, -/turf/space/dynamic, -/area/template_noop) -"bGR" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/structure/computerframe, -/turf/simulated/floor/tiled/dark, -/area/centcom/bar) -"bGV" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "7,12" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"bHJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"bHL" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/green/full{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"bIt" = ( -/obj/machinery/vending/coffee, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"bIQ" = ( -/obj/structure/table/rack, -/obj/item/clothing/under/color/red, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/melee/energy/axe, -/obj/effect/decal/fake_object/light_source/invisible, -/turf/simulated/floor, -/area/tdome/tdome2) -"bJf" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "5,2"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"bJv" = ( -/obj/machinery/door/airlock/glass, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/antag/raider) -"bJH" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"bJW" = ( -/obj/structure/closet/hazmat/general, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"bKj" = ( -/obj/structure/closet/secure_closet/refrigerator/standard, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"bKw" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Holding Cell"; - req_access = list(1) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"bKL" = ( -/obj/structure/bed/stool/padded/red, -/turf/simulated/floor/tiled/dark, -/area/shuttle/skipjack) -"bLj" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "10,0" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"bLK" = ( -/turf/unsimulated/floor, -/area/centcom/holding) -"bLO" = ( -/turf/simulated/wall/shuttle/dark/corner/underlay{ - dir = 9 - }, -/area/centcom/legion) -"bLX" = ( -/obj/structure/undies_wardrobe, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/industrial/warning, -/turf/unsimulated/floor, -/area/antag/mercenary) -"bMc" = ( -/obj/structure/table/wood, -/obj/item/material/ashtray/bronze, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/item/storage/box/tcaf_pamphlet, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"bMd" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"bMp" = ( -/obj/structure/table/rack, -/obj/item/storage/box/handcuffs{ - pixel_x = -1; - pixel_y = -4 - }, -/obj/item/storage/box/handcuffs{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"bMw" = ( -/obj/structure/table/wood/gamblingtable, -/obj/item/deck/cards, -/obj/item/storage/box/fancy/crayons{ - pixel_x = 17; - pixel_y = 14 - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"bMQ" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "2,7" - }, -/area/shuttle/mercenary) -"bOg" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -12; - pixel_y = 6 - }, -/obj/item/pen/blue{ - pixel_x = -12; - pixel_y = 6 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/unsimulated/floor{ - icon_state = "carpet" - }, -/area/centcom/legion/hangar5) -"bPc" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Bay"; - req_access = list(5); - dir = 1 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"bPL" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - icon_state = "barricade"; - name = "barricade" - }, -/turf/unsimulated/wall/fakeairlock, -/area/antag/raider) -"bPP" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"bQM" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass, -/area/centcom/bar) -"bQP" = ( -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/holding) -"bQZ" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/porta_turret/crescent, -/obj/effect/floor_decal/industrial/warning/full, -/turf/unsimulated/floor, -/area/centcom/control) -"bRm" = ( -/obj/structure/table/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/machinery/button/remote/blast_door/open_only{ - id = "tcfl_hangar5"; - name = "raise post-launch shutters"; - pixel_x = 4; - pixel_y = 6; - req_access = list(108,111) - }, -/turf/unsimulated/floor{ - dir = 6; - icon_state = "carpet" - }, -/area/centcom/legion/hangar5) -"bRJ" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "4,16"; - opacity = 1 - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"bSa" = ( -/obj/structure/sign/pharmacy, -/turf/unsimulated/wall/steel, -/area/antag/raider) -"bSI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"bTd" = ( -/obj/structure/table/rack, -/obj/item/tank/oxygen/red, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/syndicate/black/red, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/head/helmet/space/syndicate/black/red, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/antag/burglar) -"bTm" = ( -/obj/structure/table/reinforced, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"bTB" = ( -/obj/machinery/door/airlock/hatch{ - icon_state = "door_locked"; - locked = 1; - name = "Thruster Maintenance Hatch"; - req_access = list(112) - }, -/turf/unsimulated/floor/plating, -/area/centcom/distress_prep) -"bTZ" = ( -/obj/structure/shuttle_part/ccia{ - icon_state = "0,1" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/transport1) -"bUd" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/ss13/odin5, -/turf/unsimulated/floor, -/area/centcom/evac) -"bUn" = ( -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass, -/area/centcom/spawning) -"bUC" = ( -/obj/item/device/radio/intercom/south, -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/distress) -"bVd" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1; - name = "adjusted light fixture"; - pixel_x = -16; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/ferry) -"bVx" = ( -/obj/machinery/computer/shuttle_control/multi/merc_elite, -/turf/simulated/floor/shuttle/black, -/area/shuttle/syndicate_elite) -"bVz" = ( -/obj/structure/table/steel, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/flame/lighter/zippo, -/obj/item/storage/box/fancy/cigarettes, -/turf/simulated/floor/tiled/dark, -/area/shuttle/skipjack) -"bWj" = ( -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/legion) -"bWB" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "6,3"; - outside_part = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/skipjack) -"bXx" = ( -/obj/structure/table/reinforced/wood, -/obj/machinery/chemical_dispenser/coffee/full{ - pixel_y = 2; - spawn_cartridges = list(/obj/item/reagent_containers/chem_disp_cartridge/coffee,/obj/item/reagent_containers/chem_disp_cartridge/milk,/obj/item/reagent_containers/chem_disp_cartridge/cream,/obj/item/reagent_containers/chem_disp_cartridge/sugar) - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"bXB" = ( -/turf/space, -/area/antag/ninja) -"bXZ" = ( -/obj/item/modular_computer/console/preset/security, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"bYs" = ( -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/control) -"bYv" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/unsimulated/floor/plating, -/area/centcom/bar) -"bZd" = ( -/obj/random/pottedplant, -/turf/simulated/floor/wood, -/area/merchant_station) -"bZv" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/ss13/odin2, -/turf/unsimulated/floor, -/area/centcom/evac) -"bZQ" = ( -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/obj/machinery/atm{ - pixel_y = 28 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"cal" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "7,3"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"caA" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "8,3" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"caG" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "9,3"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"cbf" = ( -/obj/machinery/teleport/pad, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/ninja) -"cbz" = ( -/obj/item/storage/bag/money{ - pixel_x = -11; - pixel_y = 5 - }, -/obj/item/storage/bag/money, -/obj/item/spacecash/c1{ - pixel_x = -9; - pixel_y = -13 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/burglar) -"cbI" = ( -/turf/simulated/wall/shuttle/unique/cargo{ - icon_state = "0,7" - }, -/area/supply/dock) -"cce" = ( -/obj/machinery/door/airlock/centcom{ - frequency = 1337; - id_tag = "legion_hangar_hatch"; - name = "Hangar 5"; - req_access = list(111) - }, -/obj/machinery/door/blast/odin/shuttle/tcfl{ - dir = 4; - id = "tcflhangar5" - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"ccs" = ( -/obj/machinery/vending/cigarette{ - name = "Free Cigarette Machine"; - prices = list() - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/evac) -"ccz" = ( -/obj/effect/decal/fake_object/light_source{ - icon_state = "lantern-on"; - light_color = "#FAA019"; - light_range = 6; - name = "lantern"; - pixel_x = 5; - pixel_y = 16 - }, -/turf/simulated/floor/exoplanet/barren, -/area/centcom/shared_dream) -"ccF" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "centcom_setup"; - name = "docking port controller"; - pixel_x = 25; - req_one_access = list(13); - tag_door = "centcom_arrivals_airlock" - }, -/obj/structure/filingcabinet, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/spawning) -"ccI" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/ss13/odin3, -/turf/unsimulated/floor, -/area/centcom/evac) -"ccN" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "13,0"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"ccP" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/centcom/shared_dream) -"cdq" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "15,4" - }, -/area/shuttle/legion) -"cdV" = ( -/obj/effect/decal/fake_object{ - color = "#ff0000"; - dir = 4; - icon = 'icons/atmos/pipes.dmi'; - icon_state = "intact-scrubbers"; - name = "pipe" - }, -/obj/effect/decal/fake_object{ - color = "#0000ff"; - dir = 4; - icon = 'icons/atmos/pipes.dmi'; - icon_state = "intact-supply"; - name = "pipe" - }, -/obj/effect/decal/fake_object{ - color = "#ff0000"; - icon = 'icons/obj/power_cond_white.dmi'; - icon_state = "4-8"; - name = "cable" - }, -/turf/unsimulated/floor/plating, -/area/centcom/bar) -"cel" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"cep" = ( -/turf/simulated/wall/shuttle/unique/mercenary/small{ - icon_state = "7,3" - }, -/area/shuttle/syndicate_elite) -"cew" = ( -/obj/structure/bed/stool/chair/padded/black{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"ceT" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "12,16"; - opacity = 1 - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"cfh" = ( -/obj/effect/floor_decal/corner/blue/full, -/obj/structure/table/rack, -/obj/item/storage/box/cdeathalarm_kit{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/item/device/camera, -/obj/item/device/megaphone/sec, -/obj/item/device/megaphone/sec, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"cfo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"cgd" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "1,19"; - name = "transport shuttle"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"cha" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/control) -"chb" = ( -/obj/item/hoist_kit, -/obj/item/ladder_mobile{ - pixel_y = 6 - }, -/obj/structure/closet/toolcloset/empty, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/item/pickaxe/jackhammer, -/obj/item/pickaxe/jackhammer, -/obj/item/pickaxe/jackhammer, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"chs" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor/plating, -/area/antag/raider) -"chw" = ( -/obj/effect/floor_decal/corner/green/full, -/turf/unsimulated/floor, -/area/centcom/holding) -"chH" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"cie" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"cik" = ( -/obj/effect/landmark/thunderdome1, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/tdome/tdome1) -"ciV" = ( -/turf/simulated/wall/elevator, -/area/centcom/spawning) -"ciX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/unsimulated/floor/plating, -/area/antag/burglar) -"cjb" = ( -/obj/structure/table/reinforced, -/obj/item/device/multitool, -/obj/structure/fireaxecabinet/west, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"cjF" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"cjZ" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "7,1"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"ckl" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "1,0" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"ckv" = ( -/turf/unsimulated/floor/plating, -/area/antag/mercenary) -"clb" = ( -/obj/machinery/appliance/cooker/oven{ - stat = 0 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"clg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"clq" = ( -/obj/structure/closet{ - icon_door = "blue"; - name = "Spare Uniforms" - }, -/obj/item/clothing/under/legion, -/obj/item/clothing/under/legion, -/obj/item/clothing/under/legion, -/obj/item/clothing/under/legion, -/obj/item/clothing/under/legion, -/obj/item/clothing/mask/gas/vaurca/filter, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion) -"cmb" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/mob/living/silicon/decoy{ - name = "Bubble" - }, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/circuit.dmi'; - icon_state = "bcircuit" - }, -/area/centcom/control) -"cmA" = ( -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "CCIABS" - }, -/obj/structure/window/reinforced/polarized{ - id = "CCIABS" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "CCIABS" - }, -/turf/unsimulated/floor/plating, -/area/centcom/control) -"cnf" = ( -/obj/structure/table/reinforced/wood, -/obj/machinery/chemical_dispenser/coffeemaster/full{ - pixel_x = -2; - pixel_y = 7 - }, -/obj/structure/sign/flag/nanotrasen/large/north, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"coi" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "12,3"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"cor" = ( -/obj/effect/ghostspawpoint{ - identifier = "TCFLSentinel"; - name = "igs - TCFLSentinel" - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion) -"cov" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"coC" = ( -/mob/living/heavy_vehicle/premade/combatripley, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion) -"coK" = ( -/obj/machinery/washing_machine, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion) -"coX" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "legion weapon cabinet"; - req_access = list(111) - }, -/obj/item/gun/energy/blaster, -/obj/item/gun/energy/blaster, -/obj/item/gun/energy/blaster, -/obj/item/gun/energy/blaster, -/turf/unsimulated/floor, -/area/centcom/legion) -"cpq" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "13,3" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"cpE" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "legion weapon cabinet"; - req_access = list(111) - }, -/obj/item/gun/energy/blaster/carbine, -/obj/item/gun/energy/blaster/carbine, -/obj/item/gun/energy/blaster/carbine, -/obj/item/gun/energy/blaster/carbine, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"cpV" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "legion weapon cabinet"; - req_access = list(111) - }, -/obj/item/ammo_magazine/gauss, -/obj/item/ammo_magazine/gauss, -/obj/item/ammo_magazine/gauss, -/obj/item/ammo_magazine/gauss, -/obj/item/ammo_magazine/gauss/emp, -/obj/item/ammo_magazine/gauss/emp, -/obj/item/gun/energy/blaster/rifle, -/obj/item/gun/projectile/gauss, -/turf/unsimulated/floor, -/area/centcom/legion) -"cqK" = ( -/obj/machinery/vending/coffee, -/obj/machinery/vending/coffee{ - name = "Free Hot Drinks machine"; - prices = list() - }, -/obj/effect/floor_decal/corner/blue/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeobserve) -"cqP" = ( -/obj/item/clothing/glasses/welding/superior{ - pixel_x = -5 - }, -/obj/item/clothing/glasses/welding/superior{ - pixel_x = -5; - pixel_y = -8 - }, -/obj/structure/table/reinforced, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"cqS" = ( -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion) -"crg" = ( -/obj/item/reagent_containers/food/condiment/flour{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/condiment/flour, -/obj/structure/table/stone/marble, -/obj/item/storage/box/gloves{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/device/hand_labeler{ - pixel_x = -6; - pixel_y = -4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"crk" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1337; - id_tag = "loner_basement"; - name = "hangar controller"; - pixel_x = 26; - pixel_y = -1; - tag_door = "loner_basement_hatch" - }, -/turf/unsimulated/floor, -/area/antag/loner) -"crr" = ( -/obj/machinery/washing_machine, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion) -"crN" = ( -/obj/random/pottedplant, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion/hangar5) -"crO" = ( -/turf/simulated/wall, -/area/merchant_station/warehouse) -"crY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = -9; - pixel_y = 7 - }, -/turf/unsimulated/floor{ - icon_state = "wood-broken4" - }, -/area/centcom/legion/hangar5) -"csc" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"cti" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "14,3"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"cur" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "9,1" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"cvf" = ( -/obj/structure/sign/poster{ - icon_state = "tcflposter2"; - pixel_x = 29; - pixel_y = 7; - poster_type = "/datum/poster/bay_68" - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion/hangar5) -"cvk" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "15,3"; - outside_part = 0 - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"cvq" = ( -/turf/simulated/wall/shuttle/unique/cargo{ - icon_state = "0,2" - }, -/area/supply/dock) -"cvx" = ( -/obj/structure/cryofeed, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/spawning) -"cvJ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"cww" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"cwK" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/landmark/thunderdome1, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/tdome/tdome1) -"cyX" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"czf" = ( -/obj/machinery/button/remote/blast_door{ - id = "odincheckpoint_starboard"; - name = "starboard blast door"; - pixel_x = 23; - pixel_y = -22; - req_access = list(103) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"cAr" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/grass, -/area/centcom/shared_dream) -"cAL" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"cCj" = ( -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/unsimulated/floor{ - icon_state = "carpet" - }, -/area/centcom/bar) -"cCk" = ( -/obj/structure/cryofeed, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/ferry) -"cCo" = ( -/obj/structure/table/rack, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"cCB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/undies_wardrobe{ - anchored = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"cCD" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "19,3"; - outside_part = 0 - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"cCN" = ( -/obj/machinery/smartfridge/stocked, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"cCQ" = ( -/obj/structure/window/shuttle/unique/mercenary/small{ - icon_state = "6,11" - }, -/turf/simulated/floor/plating, -/area/shuttle/syndicate_elite) -"cCU" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "7,7"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"cCW" = ( -/obj/structure/noticeboard{ - pixel_y = 31 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"cDi" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "20,3"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"cDK" = ( -/turf/unsimulated/wall/fakeairlock{ - icon = 'icons/obj/doors/Doorext.dmi'; - icon_state = "door_locked"; - name = "Service Airlock" - }, -/area/centcom/legion) -"cDL" = ( -/obj/item/device/flashlight/lamp, -/obj/structure/table/reinforced, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion) -"cEa" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 31 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 21 - }, -/obj/structure/closet/secure_closet/guncabinet{ - name = "contraband"; - req_access = list(101) - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "CentComArrivalsForeChkpt"; - name = "Fore Checkpoint Blast Doors"; - pixel_x = -23; - req_access = list(103) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"cEm" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "16,2" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"cEy" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "21,3" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"cEO" = ( -/obj/structure/bed/stool/chair, -/obj/item/handcuffs/ziptie, -/obj/effect/decal/cleanable/blood/splatter, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion) -"cFg" = ( -/turf/simulated/wall/shuttle/unique/distress{ - icon_state = "6,0" - }, -/area/shuttle/distress) -"cFp" = ( -/obj/structure/table/rack, -/obj/item/clothing/under/color/red, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/clothing/suit/armor/vest, -/obj/item/clothing/head/helmet/swat, -/obj/item/gun/energy/laser, -/obj/effect/decal/fake_object/light_source/invisible, -/turf/simulated/floor, -/area/tdome/tdome2) -"cFZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent, -/obj/structure/railing/mapped, -/turf/unsimulated/floor/plating, -/area/centcom/bar) -"cHx" = ( -/obj/machinery/light{ - dir = 8; - name = "adjusted light fixture"; - pixel_y = -32; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor/plating, -/area/centcom/spawning) -"cHN" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "0,2" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"cHW" = ( -/obj/machinery/vending/boozeomat{ - pixel_x = -30; - random_itemcount = 1; - req_access = null - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"cIl" = ( -/turf/simulated/wall/shuttle/unique/distress{ - icon_state = "5,0" - }, -/area/shuttle/distress) -"cIQ" = ( -/obj/item/storage/box/fancy/cookiesnack, -/obj/item/storage/box/fancy/admints{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/item/material/ashtray/glass{ - pixel_x = -16; - pixel_y = 3 - }, -/obj/item/storage/box/fancy/admints{ - pixel_x = 4; - pixel_y = 10 - }, -/obj/item/storage/box/fancy/admints{ - pixel_y = 10 - }, -/obj/structure/table/reinforced/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/ferry) -"cJl" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "3,21"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"cJm" = ( -/obj/structure/bed/stool/padded/red, -/obj/effect/ghostspawpoint{ - identifier = "ERTSpawn"; - name = "igs - ERT" - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/distress_prep) -"cJB" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"cJI" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "1,2"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"cJJ" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "2,2"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"cKw" = ( -/obj/structure/table/reinforced/wood, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/machinery/light{ - dir = 8; - name = "adjusted light fixture"; - pixel_y = -16; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"cKC" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "3,2"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"cKI" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion) -"cKK" = ( -/obj/machinery/computer/pod{ - id = "thunderdomegen"; - name = "Thunderdome General Supply" - }, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"cKU" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "10,1"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"cLb" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "4,2"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"cLJ" = ( -/obj/effect/decal/fake_object{ - icon = 'icons/obj/doors/rapid_pdoor.dmi'; - icon_state = "shutter0"; - name = "shutter" - }, -/obj/structure/table/reinforced, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/antag/raider) -"cLT" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Cell 1"; - req_access = list(111); - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"cMd" = ( -/obj/vehicle/droppod/syndie{ - connected_blastdoor = "merc_droppod_6" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/antag/mercenary) -"cMo" = ( -/obj/structure/window/shuttle/unique/mercenary{ - icon_state = "8,24" - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"cMK" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Cell 2"; - req_access = list(111); - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"cMT" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "5,2"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"cNm" = ( -/obj/structure/closet/crate/internals{ - name = "emergency equipment" - }, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/item/airbubble, -/obj/item/airbubble, -/obj/item/storage/firstaid/o2{ - pixel_y = 2 - }, -/obj/item/storage/bag/inflatable, -/obj/item/device/flashlight/flare/glowstick/red, -/obj/item/device/flashlight/flare/glowstick/red, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor/plating, -/area/centcom/distress_prep) -"cNL" = ( -/obj/structure/closet/crate/secure/legion, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/handcuffs, -/obj/item/device/flash, -/obj/item/device/flash, -/obj/item/device/flash, -/obj/item/device/flash, -/obj/item/storage/box/teargas, -/turf/unsimulated/floor, -/area/centcom/legion) -"cNN" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion/hangar5) -"cNS" = ( -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/ferry) -"cOf" = ( -/obj/item/storage/box/drinkingglasses{ - pixel_x = -7; - pixel_y = 8 - }, -/obj/structure/table/wood{ - table_reinf = "wood" - }, -/obj/effect/decal/fake_object{ - desc = "A dusty, stuffed parrot. It's firmly nailed to the table."; - icon = 'icons/mob/npc/pets.dmi'; - icon_state = "parrot_sit"; - name = "Hootie"; - pixel_x = 9; - pixel_y = 1 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/antag/raider) -"cOn" = ( -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 8; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/turf/simulated/floor/holofloor/space{ - blocks_air = 1; - density = 1; - dynamic_lighting = 1; - icon_state = "black" - }, -/area/antag/ninja) -"cPn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/fake_object{ - density = 1; - desc = "This one is beyond repair and only worth as much as its weight in scrap. The cockpit has some long dried bloodstains."; - icon = 'icons/mecha/mecha.dmi'; - icon_state = "combatripley-broken"; - name = "wrecked combat ripley"; - pixel_y = 4 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"cPC" = ( -/obj/machinery/door/window/southright{ - dir = 8; - name = "Escort Post"; - req_access = list(109) - }, -/obj/effect/floor_decal/corner/grey{ - dir = 9 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"cPP" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "elite_shuttle_hatch_port"; - locked = 1; - name = "Port Airlock"; - req_access = list(150); - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id = "mercelite_port"; - name = "blastdoor" - }, -/obj/machinery/button/remote/blast_door{ - id = "mercelite_port"; - name = "external blast door"; - pixel_x = -1; - pixel_y = 28; - req_access = list(150) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/syndicate_elite) -"cQv" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "6,2"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"cQY" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "7,2"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"cRd" = ( -/obj/effect/landmark{ - name = "raiderstart" - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/antag/raider) -"cRg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/fake_object{ - density = 1; - desc = "The half-built chassis of some kind of outdated mech. It's rather dusty."; - icon = 'icons/mecha/mech_construction.dmi'; - icon_state = "hermes7"; - name = "half-built mech"; - pixel_x = -4; - pixel_y = 3 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"cRn" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "5,1"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"cRB" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"cRG" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "hideout_shipping"; - pixel_y = -4 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"cRL" = ( -/obj/structure/bed/stool/chair/padded/brown{ - can_buckle = 0; - dir = 1; - name = "old chair" - }, -/turf/simulated/floor/carpet, -/area/centcom/shared_dream) -"cRP" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"cRV" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "supply_shuttle"; - pixel_x = 25; - req_one_access = list(13,31); - tag_door = "supply_shuttle_hatch" - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/supply/dock) -"cSw" = ( -/obj/machinery/mech_recharger, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"cSV" = ( -/turf/unsimulated/wall/fakepdoor{ - name = "Blast door" - }, -/area/centcom/distress_prep) -"cTw" = ( -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/checkpoint/fore) -"cTS" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "8,2" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"cUG" = ( -/turf/simulated/wall/shuttle/unique/ert{ - icon_state = "8,3" - }, -/area/centcom/specops) -"cUL" = ( -/obj/structure/sink{ - pixel_y = 26 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"cUR" = ( -/obj/random/pottedplant{ - pixel_y = 8 - }, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"cVj" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/heavy_vehicle/premade/light/legion, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"cVA" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"cVH" = ( -/obj/structure/window/shuttle/unique/mercenary/small{ - icon_state = "6,12"; - outside_window = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"cWe" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 5 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"cWr" = ( -/obj/structure/table/standard, -/obj/item/storage/belt/utility/full, -/obj/item/storage/belt/utility/full, -/obj/item/storage/belt/utility/full, -/obj/item/storage/belt/utility/full, -/obj/item/device/multitool, -/obj/item/device/multitool, -/obj/item/device/multitool, -/obj/item/device/multitool, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"cWx" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "elite_shuttle_origin_airlock"; - locked = 1; - name = "Shuttle Access"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor, -/area/antag/mercenary) -"cWK" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "9,2"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"cWO" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/railing/mapped, -/turf/unsimulated/floor, -/area/antag/burglar) -"cWR" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/turf/template_noop, -/area/template_noop) -"cWU" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/stack/material/plasteel{ - amount = 50 - }, -/obj/item/stack/material/plasteel{ - amount = 50 - }, -/obj/item/stack/material/plasteel{ - amount = 50 - }, -/obj/item/stack/material/plasteel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"cXi" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass/reinforced{ - amount = 50 - }, -/obj/item/stack/material/glass/reinforced{ - amount = 50 - }, -/obj/item/stack/material/glass/reinforced{ - amount = 50 - }, -/obj/item/stack/material/glass/reinforced{ - amount = 50 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"cXA" = ( -/obj/effect/decal/fake_object{ - icon = 'icons/obj/doors/rapid_pdoor.dmi'; - icon_state = "shutter1"; - name = "shutter"; - opacity = 1 - }, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"cXK" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/door/blast/odin/open{ - _wifi_id = "tcfl_droppod_3"; - name = "Droppod C" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"cYA" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "2,0"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/specops) -"cYR" = ( -/obj/structure/shuttle_part/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "12,0"; - name = "autoshuttle"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/arrival) -"cYT" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "1,16"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"cZw" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/turf/unsimulated/floor/plating, -/area/centcom/distress_prep) -"cZH" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - checks_for_access = 1; - frequency = 1380; - id_tag = "arrival_shuttle"; - pixel_y = -25; - req_one_access = list(101); - tag_door = "arrival_shuttle_hatch" - }, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/pottedplant{ - icon_state = "plant-01"; - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/trash/coffee{ - pixel_x = 12; - pixel_y = -10 - }, -/turf/simulated/floor/grass, -/area/shuttle/arrival) -"cZW" = ( -/turf/simulated/wall/shuttle/unique/distress{ - icon_state = "9,4" - }, -/area/shuttle/distress) -"dac" = ( -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 8; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 1; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/turf/simulated/floor/holofloor/space{ - blocks_air = 1; - density = 1; - dynamic_lighting = 1; - icon_state = "black" - }, -/area/antag/ninja) -"dau" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/door/blast/odin/open{ - _wifi_id = "tcfl_droppod_4"; - name = "Droppod D" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"daH" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/light/small{ - brightness_power = 0.5; - dir = 1; - name = "adjusted light fixture" - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"dbq" = ( -/obj/structure/lattice, -/obj/item/stack/rods, -/turf/space/dynamic, -/area/antag/raider) -"dby" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/item/clothing/head/welding, -/obj/item/weldingtool, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"dbL" = ( -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/item/material/shard, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"dbM" = ( -/obj/machinery/vending/cigarette{ - name = "hacked cigarette machine"; - pixel_x = 5; - prices = null - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/raider) -"dbW" = ( -/obj/effect/decal/fake_object{ - name = "service ladder"; - pixel_y = 24 - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/unsimulated/floor/plating, -/area/antag/ninja) -"dck" = ( -/turf/simulated/wall/shuttle/unique/mercenary/small{ - icon_state = "7,5" - }, -/area/shuttle/syndicate_elite) -"dct" = ( -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "CCIABS" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "CCIABS" - }, -/obj/structure/grille, -/turf/unsimulated/floor/plating, -/area/centcom/control) -"dcu" = ( -/obj/structure/table/reinforced/steel, -/obj/item/paper_bin{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/pen{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/pen{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/card/emag, -/turf/simulated/floor/shuttle/black, -/area/shuttle/burglar) -"dcT" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"ddn" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/turf/simulated/floor/carpet/cyan, -/area/centcom/ferry) -"ddo" = ( -/obj/structure/table/reinforced, -/obj/random/contraband, -/obj/random/contraband, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/southright{ - name = "contraband shelf" - }, -/obj/effect/floor_decal/corner/blue/full{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"ddK" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "0,2"; - name = "transport shuttle" - }, -/obj/structure/shuttle_part/transfer{ - density = 0; - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "0,3"; - name = "transport shuttle"; - pixel_y = 32 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"deb" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"deN" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/obj/effect/landmark{ - name = "raiderstart" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/raider) -"dff" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"dft" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion) -"dfV" = ( -/turf/unsimulated/wall/steel, -/area/antag/ninja) -"dfX" = ( -/obj/machinery/light/small/emergency, -/obj/effect/shuttle_landmark/burglar/start, -/turf/simulated/floor/shuttle/black, -/area/shuttle/burglar) -"dgi" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/odin{ - id = "merc_armory"; - name = "Armory Access" - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"dgF" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "2,20"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"dhq" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "12,2"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"dhs" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/door/window{ - dir = 1; - name = "desk access"; - req_access = list(109) - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"dhC" = ( -/obj/machinery/porta_turret/crescent, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"dib" = ( -/obj/structure/ore_box{ - icon_state = "orebox1" - }, -/turf/simulated/floor/exoplanet/barren, -/area/centcom/shared_dream) -"dio" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"diR" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "1,6" - }, -/area/shuttle/mercenary) -"djL" = ( -/obj/structure/table/rack, -/obj/item/plastique{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/plastique{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/plastique{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/plastique{ - pixel_x = 8 - }, -/obj/item/plastique{ - pixel_x = 8 - }, -/obj/item/plastique{ - pixel_x = 8 - }, -/obj/item/plastique{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/plastique{ - pixel_x = 8 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"djX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/fake_object{ - icon = 'icons/obj/doors/rapid_pdoor.dmi'; - icon_state = "shutter0"; - name = "shutter" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"dka" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "3,16" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"dlh" = ( -/obj/machinery/vending/snack{ - name = "Free Chocolate Corp"; - prices = list() - }, -/obj/effect/floor_decal/corner/blue/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeobserve) -"dlj" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "13,2" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"dlQ" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "15,2" - }, -/area/shuttle/mercenary) -"dmw" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 8 - }, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/table/reinforced, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"dmL" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "3,2"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"dmM" = ( -/obj/structure/sink/kitchen{ - name = "sink"; - pixel_y = 23 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/antag/raider) -"dnd" = ( -/obj/machinery/door/window/brigdoor/eastright{ - name = "Shuttle Brig" - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/escape) -"dnh" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "14,2"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"dnE" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "15,2"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"dnS" = ( -/turf/simulated/floor/exoplanet/barren, -/area/centcom/shared_dream) -"dob" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue, -/turf/unsimulated/floor, -/area/centcom/holding) -"doP" = ( -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/ferry) -"doU" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 36; - pixel_y = -9 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 36; - pixel_y = 1 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"dpM" = ( -/obj/structure/bed/stool/bar/padded/red, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/raider) -"dql" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "16,2"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"dqu" = ( -/obj/machinery/power/emitter{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"dqP" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "17,2"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"dqT" = ( -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/grass, -/area/centcom/spawning) -"drc" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "1,1" - }, -/turf/unsimulated/floor/plating, -/area/supply/dock) -"drE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "carpet" - }, -/area/antag/raider) -"dtU" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/obj/structure/sign/staff_only{ - pixel_y = 4 - }, -/turf/unsimulated/floor{ - icon_state = "plating" - }, -/area/centcom/spawning) -"duk" = ( -/obj/structure/shuttle_part/burglar, -/turf/unsimulated/floor/plating, -/area/shuttle/burglar) -"dus" = ( -/obj/structure/bed/stool/hover, -/turf/simulated/floor/ice, -/area/centcom/shared_dream) -"dvj" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "addon9" - }, -/area/shuttle/mercenary) -"dvq" = ( -/obj/structure/bedsheetbin{ - pixel_y = 4 - }, -/obj/structure/table/reinforced, -/obj/item/material/twohanded/pike/flag{ - pixel_y = 6 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion) -"dvz" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "4,7"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"dvO" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "10,1" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"dwe" = ( -/obj/structure/table/reinforced/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"dxC" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"dxD" = ( -/obj/structure/shuttle_part/mercenary/small, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"dyI" = ( -/obj/machinery/vending/assist/synd, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"dyS" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"dzj" = ( -/obj/structure/shuttle_part/tcfl{ - icon_state = "15,5" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/legion) -"dzq" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"dzN" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "18,2"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"dzP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - frequency = 1332; - icon_state = "door_locked"; - id_tag = "pirate_hideout_door"; - locked = 1; - name = "hideout airlock"; - req_access = list(110); - dir = 1 - }, -/obj/machinery/conveyor{ - id = "hideout_shipping" - }, -/turf/unsimulated/floor/plating, -/area/antag/raider) -"dzT" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"dAj" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "19,2"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"dBk" = ( -/obj/structure/curtain/open/shower, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/machinery/shower{ - pixel_y = 20 - }, -/turf/simulated/floor/tiled, -/area/merchant_station) -"dBV" = ( -/turf/unsimulated/floor{ - dir = 1; - icon_state = "ramptop"; - name = "staircase" - }, -/area/centcom/spawning) -"dBX" = ( -/obj/machinery/door/blast/odin/open{ - _wifi_id = "merc_droppod_4"; - name = "Pod D" - }, -/obj/effect/floor_decal/industrial/loading/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"dCx" = ( -/obj/structure/table/reinforced/steel, -/obj/item/device/flashlight/lamp, -/obj/item/screwdriver{ - pixel_x = -1; - pixel_y = -12 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"dDk" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/heavy_vehicle/premade/combatripley, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"dDH" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/antag/raider) -"dDI" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd/construction, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"dEw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor/plating, -/area/antag/mercenary) -"dFD" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "20,2"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"dGi" = ( -/obj/structure/shuttle_part/transfer{ - density = 0; - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "1,3"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"dGn" = ( -/obj/structure/closet/secure_closet/refrigerator/standard, -/obj/item/storage/box/fancy/egg_box, -/obj/item/storage/box/fancy/egg_box, -/obj/item/reagent_containers/food/drinks/carton/soymilk, -/obj/item/reagent_containers/food/drinks/carton/soymilk, -/obj/item/reagent_containers/food/drinks/carton/milk, -/obj/item/reagent_containers/food/drinks/carton/milk, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"dGq" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"dGw" = ( -/obj/machinery/mech_recharger, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/specops) -"dHW" = ( -/obj/machinery/chemical_dispenser/bar_soft/full{ - pixel_y = 7 - }, -/obj/structure/table/wood{ - table_reinf = "wood" - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/antag/raider) -"dHX" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "8,5" - }, -/obj/structure/shuttle_part/mercenary/small{ - density = 0; - icon_state = "8,6"; - pixel_y = 32 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"dHY" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"dIb" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"dIt" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - name = "EXTERNAL AIRLOCK" - }, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/ferry) -"dIG" = ( -/obj/structure/closet{ - icon_door = "blue"; - name = "megacorp clothing" - }, -/obj/item/clothing/under/rank/engineer/heph, -/obj/item/clothing/under/rank/engineer/heph, -/obj/item/clothing/under/rank/engineer/heph, -/obj/item/clothing/under/rank/engineer/heph, -/obj/item/clothing/under/rank/security/pmc, -/obj/item/clothing/under/rank/security/pmc, -/obj/item/clothing/under/rank/security/pmc, -/obj/item/clothing/under/rank/security/pmc, -/obj/item/clothing/accessory/sleevepatch/erisec, -/obj/item/clothing/accessory/sleevepatch/erisec, -/obj/item/clothing/accessory/sleevepatch/erisec, -/obj/item/clothing/accessory/sleevepatch/erisec, -/obj/item/clothing/head/softcap/pmc, -/obj/item/clothing/head/softcap/pmc, -/obj/item/clothing/head/softcap/pmc, -/obj/item/clothing/under/rank/security/zavod, -/obj/item/clothing/under/rank/security/zavod, -/obj/item/clothing/under/rank/security/zavod, -/obj/item/clothing/under/rank/security/zavod, -/obj/item/clothing/under/rank/warden/zavod, -/obj/item/clothing/under/rank/warden/zavod, -/obj/item/clothing/under/rank/warden/zavod, -/obj/item/clothing/under/rank/warden/zavod, -/obj/item/clothing/suit/storage/toggle/labcoat/zavodskoi, -/obj/item/clothing/suit/storage/toggle/labcoat/zavodskoi, -/obj/item/clothing/accessory/sleevepatch/zavodskoisec, -/obj/item/clothing/accessory/sleevepatch/zavodskoisec, -/obj/item/clothing/accessory/sleevepatch/zavodskoisec, -/obj/item/clothing/accessory/sleevepatch/zavodskoisec, -/obj/item/clothing/head/beret/corporate/zavod/alt, -/obj/item/clothing/head/beret/corporate/zavod/alt, -/obj/item/clothing/head/beret/corporate/zavod/alt, -/obj/item/clothing/head/beret/corporate/zavod/alt, -/obj/item/clothing/head/beret/corporate/zavod, -/obj/item/clothing/head/beret/corporate/zavod, -/obj/item/clothing/head/beret/corporate/zavod, -/obj/item/clothing/head/beret/corporate/zavod, -/obj/item/clothing/under/rank/engineer/apprentice/heph, -/obj/item/clothing/under/rank/engineer/apprentice/heph, -/obj/item/clothing/under/rank/engineer/heph, -/obj/item/clothing/under/rank/engineer/heph, -/obj/item/clothing/head/beret/corporate/heph, -/obj/item/clothing/head/beret/corporate/heph, -/obj/item/clothing/head/beret/corporate/heph, -/obj/item/clothing/head/beret/corporate/heph, -/obj/item/clothing/suit/storage/toggle/labcoat/heph, -/obj/item/clothing/suit/storage/toggle/labcoat/heph, -/obj/item/clothing/under/rank/scientist/zeng, -/obj/item/clothing/under/rank/scientist/zeng, -/obj/item/clothing/under/rank/scientist/zeng, -/obj/item/clothing/under/rank/liaison/zeng, -/obj/item/clothing/suit/storage/toggle/labcoat/zeng, -/obj/item/clothing/suit/storage/toggle/labcoat/zeng, -/obj/item/clothing/head/beret/corporate/zeng/alt, -/obj/item/clothing/head/beret/corporate/zeng/alt, -/obj/item/clothing/head/beret/corporate/zeng/alt, -/obj/item/clothing/head/beret/corporate/zeng, -/obj/item/clothing/accessory/sleevepatch/idrissec, -/obj/item/clothing/accessory/sleevepatch/idrissec, -/obj/item/clothing/accessory/sleevepatch/idrissec, -/obj/item/clothing/accessory/sleevepatch/idrissec, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/clothing/under/rank/security/idris, -/obj/item/clothing/under/rank/security/idris, -/obj/item/clothing/under/rank/security/idris, -/obj/item/clothing/under/rank/security/idris, -/obj/item/clothing/head/beret/corporate/idris, -/obj/item/clothing/head/beret/corporate/idris, -/obj/item/clothing/head/beret/corporate/idris, -/obj/item/clothing/head/beret/corporate/idris, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"dIN" = ( -/obj/item/modular_computer/console/preset/command, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/specops) -"dJe" = ( -/obj/item/reagent_containers/food/drinks/cans/cola, -/obj/item/reagent_containers/food/drinks/cans/cola, -/obj/item/reagent_containers/food/drinks/cans/cola, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/blue/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeobserve) -"dJl" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "21,2" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"dJn" = ( -/obj/effect/floor_decal/spline/plain/black, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"dKp" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion) -"dKC" = ( -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 8 - }, -/area/centcom/legion) -"dKL" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"dKP" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/bed/stool/chair/padded/blue{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/evac) -"dKS" = ( -/obj/machinery/door/airlock/centcom{ - name = "Laundry"; - req_access = list(103,111) - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"dLD" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/escape) -"dLZ" = ( -/turf/simulated/floor/wood, -/area/merchant_station) -"dMa" = ( -/turf/simulated/wall/shuttle/unique/cargo{ - icon_state = "6,2" - }, -/area/supply/dock) -"dMf" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "9,0" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"dMA" = ( -/obj/structure/window/shuttle/unique/ccia{ - icon_state = "3,1" - }, -/turf/simulated/floor/plating, -/area/shuttle/transport1) -"dML" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"dNv" = ( -/obj/structure/bed/stool/chair/padded/blue{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/holding) -"dNJ" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "0,1" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"dOm" = ( -/obj/machinery/door/airlock/centcom{ - name = "Checkpoint"; - req_access = list(111) - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/legion) -"dOH" = ( -/obj/structure/table/reinforced/wood, -/obj/item/reagent_containers/food/condiment/shaker/salt{ - pixel_x = 13; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/shaker/peppermill{ - pixel_x = 19; - pixel_y = 5 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"dPn" = ( -/obj/vehicle/droppod/syndie{ - connected_blastdoor = "merc_droppod_5" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/antag/mercenary) -"dPL" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "1,1" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"dPO" = ( -/obj/item/flame/candle{ - pixel_y = -9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood{ - table_reinf = "wood" - }, -/turf/unsimulated/floor{ - icon_state = "carpet" - }, -/area/antag/raider) -"dPP" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 22 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 32 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/legion) -"dPU" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/structure/sign/flag/nanotrasen{ - pixel_y = 30 - }, -/obj/structure/bed/stool/chair, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"dQg" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "2,1" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"dQv" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"dQD" = ( -/obj/structure/bed/stool/chair/office/bridge/pilot{ - dir = 1 - }, -/turf/simulated/floor/shuttle/black, -/area/centcom/specops) -"dQN" = ( -/obj/effect/landmark{ - name = "Nuclear-Bomb" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/reinforced, -/area/shuttle/mercenary) -"dRD" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/fake_object/light_source/invisible, -/turf/simulated/floor, -/area/tdome) -"dSG" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "3,1" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"dTe" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/railing/mapped, -/obj/structure/window/reinforced/crescent, -/turf/unsimulated/floor/plating, -/area/centcom/bar) -"dTj" = ( -/obj/structure/shuttle_part/raider, -/turf/space/dynamic, -/area/shuttle/skipjack) -"dTp" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "tiled_preview" - }, -/area/centcom/distress_prep) -"dUb" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "5,1" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"dUn" = ( -/obj/structure/window/shuttle/unique/mercenary{ - icon_state = "6,22" - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"dUu" = ( -/obj/structure/bed/stool/chair/office/bridge/pilot, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "centcom_shuttle"; - pixel_x = 6; - pixel_y = 27; - tag_door = "centcom_shuttle_hatch" - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/transport1) -"dUF" = ( -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/burglar) -"dUK" = ( -/obj/structure/bed/stool/chair/padded/brown, -/obj/effect/landmark{ - name = "raiderstart" - }, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - dir = 1; - icon_state = "carpet" - }, -/area/antag/raider) -"dUS" = ( -/obj/structure/table/stone/marble, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/shaker/peppermill{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/condiment/shaker/salt{ - pixel_x = 8; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/condiment/shaker/spacespice{ - pixel_x = 3; - pixel_y = 1 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"dUW" = ( -/obj/structure/table/rack, -/obj/item/clothing/under/color/green, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/clothing/suit/armor/tdome/green, -/obj/item/clothing/head/helmet/thunderdome, -/obj/item/melee/baton/loaded, -/obj/item/melee/energy/sword/green, -/obj/effect/decal/fake_object/light_source/invisible, -/turf/simulated/floor, -/area/tdome/tdome1) -"dVj" = ( -/turf/unsimulated/floor{ - icon_state = "wood-broken5" - }, -/area/centcom/legion) -"dVC" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "6,1" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"dVV" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "7,1" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"dVZ" = ( -/obj/structure/sign/flag/biesel{ - pixel_y = 30 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/legion) -"dWj" = ( -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "tcflhangar5"; - name = "Hangar 5 Access"; - pixel_x = 9; - pixel_y = -22; - req_access = list(103) - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"dWO" = ( -/obj/effect/ghostspawpoint{ - identifier = "OdinPrepatory"; - name = "igs - OdinPrepatory" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/spawning) -"dWP" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/toxin{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/storage/firstaid/fire, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/item/storage/firstaid/toxin{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/storage/firstaid/fire, -/obj/structure/sign/nosmoking_1{ - pixel_y = 30 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"dWZ" = ( -/obj/effect/landmark{ - name = "CCIAEscort" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"dXe" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "8,1" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"dXh" = ( -/obj/machinery/door/airlock/centcom{ - name = "Commander's Office"; - req_access = list(108); - dir = 4 - }, -/obj/machinery/door/blast/odin{ - dir = 2; - id = "commander_port"; - name = "Commander's Office" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"dXk" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "9,1" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"dXz" = ( -/obj/structure/table/reinforced/steel, -/obj/item/clothing/head/welding{ - pixel_y = 6 - }, -/obj/item/weldingtool/hugetank, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"dXB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"dXJ" = ( -/obj/structure/table/reinforced/steel, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = -16; - pixel_y = -1 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = -9; - pixel_y = -1 - }, -/obj/item/storage/box/fancy/cookiesnack{ - pixel_x = -1; - pixel_y = 4 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/escape) -"dXR" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "10,1"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"dXX" = ( -/turf/simulated/wall/shuttle/unique/raider{ - desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; - icon_state = "11,1"; - name = "Skipjack" - }, -/area/shuttle/skipjack) -"dYk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - dir = 5; - icon_state = "carpet" - }, -/area/antag/raider) -"dYB" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"dYV" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "12,1" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"dZm" = ( -/obj/structure/shuttle/engine/propulsion/burst/left{ - dir = 8 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"dZx" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"dZM" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "10,20" - }, -/area/shuttle/mercenary) -"dZW" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/supply/dock) -"ear" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/arrival) -"eay" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "13,1" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"eaA" = ( -/obj/effect/step_trigger/thrower/shuttle/northeast, -/turf/space/transit/bluespace/west, -/area/template_noop) -"eaK" = ( -/obj/structure/window/reinforced/crescent, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/steel, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"ebr" = ( -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/window/reinforced/crescent, -/obj/effect/floor_decal/sign/a, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/holding) -"ebt" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "7,9" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"eby" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/fake_object{ - icon = 'icons/obj/airlock_machines.dmi'; - icon_state = "airlock_control_off"; - name = "Port Airlock Controller"; - pixel_x = -24; - pixel_y = 25 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"edG" = ( -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 1 - }, -/area/centcom/legion) -"edH" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/loot{ - desc = "The old dusty labels on this crate indicate that it was supposed to be shipped long ago."; - name = "forgotten shipment" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"edR" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"eei" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Elevator Maintenance Hatch"; - req_access = list(111) - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"eew" = ( -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 4; - icon = 'icons/obj/railing.dmi'; - icon_state = "mcorneroverlay1"; - name = "railing" - }, -/turf/simulated/floor/holofloor/space{ - blocks_air = 1; - density = 1; - dynamic_lighting = 1; - icon_state = "black" - }, -/area/antag/ninja) -"eeI" = ( -/obj/effect/decal/fake_object{ - icon = 'icons/obj/doors/rapid_pdoor.dmi'; - icon_state = "shutter0"; - name = "shutter" - }, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/item/material/ashtray, -/obj/structure/table/reinforced, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/antag/raider) -"efo" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet, -/obj/effect/floor_decal/corner/blue/diagonal, -/obj/effect/decal/fake_object/light_source/invisible, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeobserve) -"efD" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"efQ" = ( -/obj/structure/closet/wardrobe/orange, -/turf/unsimulated/floor, -/area/centcom/legion) -"egj" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/item/paper_bin{ - pixel_y = 3 - }, -/obj/item/pen, -/obj/structure/table/reinforced, -/turf/unsimulated/floor, -/area/centcom/control) -"ehQ" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "10,2"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"eic" = ( -/turf/simulated/floor, -/area/tdome/tdome1) -"eit" = ( -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "tcflemergencyroom"; - name = "Emergency Room Shutters"; - pixel_x = -25; - pixel_y = -2 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/legion) -"eiJ" = ( -/obj/structure/table/reinforced/wood, -/obj/item/modular_computer/laptop/preset/representative{ - pixel_y = 6 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/ferry) -"ejd" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/item/rig/ert/medical, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"ejA" = ( -/obj/structure/sign/directions/cryo, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/ferry) -"ekC" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"ekG" = ( -/obj/item/device/laser_pointer/blue{ - pixel_x = -12; - pixel_y = 5 - }, -/obj/structure/table/standard, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"emj" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "16,1" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"emM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/fake_object{ - icon = 'icons/obj/doors/rapid_pdoor.dmi'; - icon_state = "shutter0"; - name = "shutter" - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"emO" = ( -/obj/structure/table/reinforced/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"emP" = ( -/turf/unsimulated/wall/fakepdoor{ - dir = 4; - name = "shuttle bay blast door" - }, -/area/centcom/specops) -"enn" = ( -/obj/machinery/computer/slot_machine, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/raider) -"ens" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "14,1" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"enB" = ( -/obj/structure/bed/stool/chair, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"enD" = ( -/obj/effect/decal/fake_object{ - desc = "An automated gun turret."; - icon = 'icons/obj/turrets.dmi'; - icon_state = "cover_0"; - name = "turret" - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/unsimulated/floor, -/area/centcom/spawning) -"enP" = ( -/obj/structure/table/rack, -/obj/item/storage/box/stunshells, -/obj/item/storage/box/practiceshells, -/obj/item/storage/box/trackingslugs, -/obj/effect/decal/warning_stripes, -/obj/item/clothing/mask/gas/vaurca/filter, -/turf/unsimulated/floor, -/area/antag/loner) -"enU" = ( -/turf/simulated/wall/shuttle/unique/ert{ - icon_state = "8,0" - }, -/area/shuttle/specops) -"epa" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-22"; - pixel_y = 23 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"epk" = ( -/obj/effect/decal/fake_object{ - icon = 'icons/obj/doors/rapid_pdoor.dmi'; - icon_state = "shutter0"; - name = "shutter" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"epL" = ( -/obj/structure/window/shuttle/unique/burglar{ - icon_state = "0,1"; - outside_window = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/burglar) -"eqb" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"eqc" = ( -/obj/structure/bed/stool/chair{ - name = "uncomfortable chair" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"eqs" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "13,20"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"eqw" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "15,1" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"eqB" = ( -/obj/machinery/papershredder, -/turf/unsimulated/floor, -/area/antag/mercenary) -"erT" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "16,1" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"esk" = ( -/obj/structure/closet/secure_closet{ - req_access = list(150) - }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "mercworkshop"; - name = "shutter"; - pixel_x = 10; - pixel_y = -22; - req_access = null - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"esA" = ( -/obj/structure/shuttle_part/ccia{ - icon_state = "7,0"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/transport1) -"esM" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "17,1" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"esR" = ( -/obj/item/extinguisher, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"eta" = ( -/obj/structure/closet/crate/trashcart{ - anchored = 1; - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/arrival) -"etl" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/checkpoint/fore) -"etD" = ( -/obj/structure/shuttle/engine/router{ - dir = 4 - }, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"etN" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "18,1" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"eum" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"euo" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "19,1" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"evt" = ( -/obj/structure/bed/stool/chair/office/hover{ - can_buckle = 0; - dir = 4 - }, -/turf/simulated/floor/grass, -/area/centcom/shared_dream) -"evC" = ( -/obj/structure/table/stone/marble, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_y = 3 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"evM" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/vending/security{ - density = 0; - pixel_x = -2; - pixel_y = 30 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"ewl" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced/crescent, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/turf/space/dynamic, -/area/antag/raider) -"ewu" = ( -/obj/structure/bed/stool/chair/office/dark, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"exa" = ( -/obj/structure/shuttle_part/transfer{ - density = 0; - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "14,18"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"exn" = ( -/obj/structure/shuttle_part/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "13,1"; - name = "autoshuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/arrival) -"exX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"eyb" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"eyj" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor/plating, -/area/centcom/evac) -"eyM" = ( -/obj/item/device/flashlight/lamp{ - pixel_x = 6 - }, -/obj/item/storage/box/syndie_kit/clerical{ - pixel_x = 1; - pixel_y = 7 - }, -/obj/structure/table/glass{ - name = "reinforced glass table"; - table_reinf = "glass" - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"ezv" = ( -/obj/machinery/door/airlock/centcom{ - name = "Telecommunications Monitoring"; - req_access = null; - req_one_access = list(106,108,109) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"ezF" = ( -/obj/machinery/door/airlock/centcom{ - name = "Green Access"; - req_access = list(101) - }, -/obj/machinery/door/blast/regular{ - id = "crescent_thunderdome"; - name = "Thunderdome" - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"ezR" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 9 - }, -/obj/structure/table/stone/marble, -/obj/random/booze, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/loner) -"eAg" = ( -/obj/structure/railing/mapped, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass, -/area/centcom/bar) -"eAt" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/industrial/warning, -/turf/unsimulated/floor, -/area/antag/mercenary) -"eAT" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "20,1" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"eBh" = ( -/obj/structure/sink/kitchen{ - pixel_y = 27 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"eBz" = ( -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/bar) -"eBX" = ( -/obj/random/junk, -/turf/unsimulated/floor/plating, -/area/centcom/spawning) -"eCE" = ( -/obj/structure/table/reinforced/wood, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"eCT" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/machinery/light/small/emergency{ - brightness_range = 4; - dir = 8; - name = "adjusted emergency light" - }, -/turf/space/dynamic, -/area/antag/raider) -"eDn" = ( -/obj/machinery/acting/changer, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/centcom/distress_prep) -"eDp" = ( -/obj/structure/table/rack, -/obj/item/storage/box/teargas{ - pixel_x = -1; - pixel_y = -4 - }, -/obj/item/storage/box/flashbangs{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"eDr" = ( -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass, -/area/centcom/spawning) -"eDB" = ( -/turf/simulated/wall/shuttle/unique/cargo{ - icon_state = "0,6" - }, -/area/supply/dock) -"eDH" = ( -/turf/simulated/floor/reinforced, -/area/shuttle/mercenary) -"eEC" = ( -/obj/structure/shuttle_part/raider{ - density = 0; - icon_state = "21,1" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"eEO" = ( -/obj/machinery/door/airlock/centcom{ - name = "Laundry"; - req_access = list(103,111) - }, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/centcom/legion) -"eES" = ( -/obj/machinery/body_scanconsole{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"eEU" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "6,1" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"eFg" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/material/ashtray/glass{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/effect/decal/fake_object{ - desc = "An intricate set of blueprints of a spacestation."; - icon = 'icons/obj/items.dmi'; - icon_state = "blueprints"; - name = "station blueprints"; - pixel_y = -8 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/burglar) -"eFy" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "9,3"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"eGb" = ( -/obj/structure/coatrack, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"eGe" = ( -/obj/machinery/chemical_dispenser/ert{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"eGr" = ( -/obj/structure/shuttle_part/burglar{ - icon_state = "12,0" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/burglar) -"eGO" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"eHe" = ( -/obj/machinery/smartfridge/foodheater, -/obj/structure/table/stone/marble, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"eHI" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "14,7" - }, -/area/shuttle/mercenary) -"eHM" = ( -/obj/structure/window/shuttle/unique/mercenary{ - icon_state = "10,25"; - outside_window = 1 - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"eHN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"eHY" = ( -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/specops) -"eIe" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"eIJ" = ( -/obj/random/pottedplant{ - anchored = 1; - pixel_y = 18 - }, -/obj/effect/floor_decal/corner/grey/full{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"eIK" = ( -/turf/simulated/floor/tiled/ramp/bottom, -/area/merchant_station) -"eIS" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"eJc" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/turf/simulated/floor, -/area/centcom/holding) -"eKl" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"eKz" = ( -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/centcom/distress_prep) -"eLs" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/ss13/odin1, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"eLv" = ( -/turf/simulated/wall/elevator, -/area/centcom/legion) -"eLJ" = ( -/turf/simulated/wall/shuttle/unique/burglar{ - icon_state = "8,0" - }, -/area/shuttle/burglar) -"eLM" = ( -/obj/structure/closet{ - name = "contraband" - }, -/obj/item/material/kitchen/utensil/knife/boot, -/obj/item/gun/projectile/pirate, -/obj/item/gun/projectile/improvised_handgun, -/turf/unsimulated/floor, -/area/centcom/legion) -"eMb" = ( -/obj/structure/bed/stool/chair/shuttle, -/turf/simulated/floor/tiled/dark, -/area/shuttle/syndicate_elite) -"eMc" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "elite_shuttle_hatch_starboard"; - locked = 1; - name = "Starboard Airlock"; - req_access = list(150); - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id = "mercelite_starboard"; - name = "blastdoor" - }, -/obj/machinery/button/remote/blast_door{ - id = "mercelite_starboard"; - name = "external blast door"; - pixel_x = 1; - pixel_y = 28; - req_access = list(150) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/syndicate_elite) -"eMQ" = ( -/obj/structure/table/reinforced, -/obj/random/contraband, -/obj/random/contraband, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/southleft{ - name = "contraband shelf" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"eNd" = ( -/obj/effect/floor_decal/corner/grey{ - dir = 9 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"eNz" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "1,0" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"eNP" = ( -/turf/simulated/wall/shuttle/unique/mercenary/small{ - icon_state = "6,2" - }, -/area/shuttle/syndicate_elite) -"eOy" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "4,11"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/supply/dock) -"eOz" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/antag/burglar) -"eOF" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "2,0" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"eOH" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "1,7" - }, -/area/shuttle/mercenary) -"eOP" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "3,0" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"eOT" = ( -/obj/structure/table/reinforced/wood, -/obj/item/reagent_containers/food/condiment/shaker/salt{ - pixel_x = -4; - pixel_y = 19 - }, -/obj/item/reagent_containers/food/condiment/shaker/peppermill{ - pixel_x = 2; - pixel_y = 19 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"ePj" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/thunderdomeadmin, -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/effect/decal/fake_object/light_source/invisible, -/obj/structure/bed/stool/chair/folding{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"ePq" = ( -/obj/machinery/chem_master{ - dir = 4; - pixel_x = -2; - pixel_y = -3 - }, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/holding) -"ePz" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "5,23" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"ePR" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"eQs" = ( -/obj/machinery/door/blast/regular{ - id = "thunderdomegen"; - name = "General Supply" - }, -/turf/simulated/floor, -/area/tdome/tdome1) -"eRh" = ( -/obj/structure/shuttle_part/burglar{ - icon_state = "7,0"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/burglar) -"eRo" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/raider) -"eRq" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/spawning) -"eRy" = ( -/obj/structure/sign/directions/civ{ - dir = 4; - pixel_x = 32; - pixel_y = -9 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"eRF" = ( -/turf/simulated/wall/shuttle/unique/ert{ - icon_state = "6,0" - }, -/area/centcom/specops) -"eTj" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "tcflcheckpoint"; - name = "Security Checkpoint" - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"eTq" = ( -/obj/structure/table/reinforced, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/legion) -"eTt" = ( -/obj/structure/bed/stool/chair/padded/blue{ - dir = 8 - }, -/obj/effect/landmark{ - name = "LateJoinConsular Officer" - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/ferry) -"eTx" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "4,0" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"eTK" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/bottle/inaprovaline{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/item/reagent_containers/glass/bottle/inaprovaline{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/item/reagent_containers/glass/bottle/inaprovaline{ - pixel_x = 8 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"eUc" = ( -/obj/structure/table/reinforced/wood, -/obj/machinery/chemical_dispenser/bar_soft/full{ - pixel_x = -8; - pixel_y = 7 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"eUi" = ( -/obj/structure/flora/tree/jungle/small{ - density = 0 - }, -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/grass, -/area/centcom/shared_dream) -"eUW" = ( -/obj/structure/table/rack, -/obj/item/clothing/under/color/green, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/clothing/suit/armor/vest, -/obj/item/clothing/head/helmet/swat, -/obj/item/gun/energy/laser, -/turf/simulated/floor, -/area/tdome/tdome1) -"eUY" = ( -/obj/machinery/bodyscanner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"eUZ" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Cockpit"; - req_access = list(150); - dir = 1 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/syndicate_elite) -"eVj" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "tcflcheckpoint"; - name = "Security Checkpoint" - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"eVL" = ( -/obj/machinery/vending/coffee/free{ - pixel_x = -1 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/evac) -"eVV" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "5,0" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"eWB" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/atm{ - pixel_x = 28; - pixel_y = -2 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"eXA" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"eYC" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1337; - id_tag = "distress_shuttle_origin"; - name = "dock controller"; - pixel_y = 28; - tag_door = "distress_origin_airlock" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"eYM" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "6,0" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"eZg" = ( -/obj/machinery/porta_turret/legion, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"eZt" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/ferry) -"eZw" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "4,19"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"eZI" = ( -/obj/structure/shuttle_part/raider{ - density = 0; - icon_state = "7,0" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"faD" = ( -/obj/machinery/light/spot{ - dir = 1; - icon_state = "tube1" - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"faT" = ( -/obj/item/modular_computer/console/preset/medical, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/control) -"fbo" = ( -/obj/structure/closet/secure_closet/security{ - name = "officer's locker"; - req_access = list(103) - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/clothing/suit/armor/carrier/ballistic, -/obj/item/clothing/under/rank/centcom_officer, -/obj/item/clothing/shoes/sneakers, -/obj/item/clothing/gloves/white, -/obj/item/clothing/glasses/sunglasses/sechud, -/obj/item/clothing/accessory/badge/holo, -/obj/item/clothing/accessory/holster/hip, -/obj/item/device/radio/headset/ert, -/obj/item/clothing/head/beret/centcom/officer, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/spawning) -"fbu" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/recharge_station, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"fcf" = ( -/obj/structure/shuttle_part/raider{ - density = 0; - icon_state = "10,0" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"fch" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/iv_drip, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/holding) -"fcm" = ( -/obj/structure/table/rack, -/obj/item/material/knife/bayonet{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/material/knife/bayonet{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/material/knife/bayonet{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/material/knife/bayonet{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/material/knife/bayonet{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/material/knife/bayonet{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/melee/telebaton{ - pixel_x = 2; - pixel_y = 9 - }, -/obj/item/melee/telebaton{ - pixel_x = 2; - pixel_y = 9 - }, -/obj/item/melee/telebaton{ - pixel_x = 2; - pixel_y = 9 - }, -/obj/item/melee/telebaton{ - pixel_x = 2; - pixel_y = 9 - }, -/obj/item/melee/telebaton{ - pixel_x = 2; - pixel_y = 9 - }, -/obj/item/melee/telebaton{ - pixel_x = 2; - pixel_y = 9 - }, -/obj/item/melee/energy/sword/knife{ - pixel_x = 9; - pixel_y = -4 - }, -/obj/item/melee/energy/sword/knife{ - pixel_x = 9; - pixel_y = -4 - }, -/obj/item/melee/energy/sword/knife{ - pixel_x = 9; - pixel_y = -4 - }, -/obj/item/melee/energy/sword/knife{ - pixel_x = 9; - pixel_y = -4 - }, -/obj/item/melee/energy/sword/knife{ - pixel_x = 9; - pixel_y = -4 - }, -/obj/item/melee/energy/sword/knife{ - pixel_x = 9; - pixel_y = -4 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"fcL" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "4,15" - }, -/area/shuttle/mercenary) -"fdh" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "6,10"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/supply/dock) -"fdr" = ( -/obj/structure/table/wood, -/obj/random/coin, -/obj/item/clothing/mask/gas/vaurca/filter, -/obj/item/clothing/mask/gas/vaurca/filter, -/obj/item/clothing/mask/gas/vaurca/filter, -/obj/item/clothing/mask/gas/vaurca/filter, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/raider) -"fdH" = ( -/obj/machinery/door/airlock/centcom{ - name = "Internal Affairs Agent's Office"; - req_access = list(109) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"feA" = ( -/obj/structure/closet/crate/secure/legion{ - locked = 0; - opened = 1 - }, -/obj/item/deployable_kit/legion_barrier, -/obj/item/deployable_kit/legion_barrier, -/obj/item/deployable_kit/legion_barrier, -/obj/item/deployable_kit/legion_barrier, -/obj/item/deployable_kit/legion_barrier, -/obj/item/deployable_kit/legion_barrier, -/obj/item/deployable_kit/legion_barrier, -/obj/item/deployable_kit/legion_barrier, -/obj/item/deployable_kit/legion_barrier, -/obj/item/deployable_kit/legion_barrier, -/obj/item/deployable_kit/legion_barrier, -/obj/item/deployable_kit/legion_barrier, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"feN" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"feQ" = ( -/obj/structure/shuttle_part/raider{ - density = 0; - icon_state = "11,0" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"ffm" = ( -/obj/machinery/light/spot{ - dir = 1; - icon_state = "tube1" - }, -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"ffn" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "0,1" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"ffx" = ( -/obj/structure/shuttle_part/raider{ - density = 0; - icon_state = "14,0" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"ffH" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "16,8" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"ffN" = ( -/obj/machinery/door/airlock{ - id_tag = "odin_valkyrie_stall1"; - name = "Stall 1" - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"fgy" = ( -/obj/item/storage/toolbox/syndicate{ - pixel_y = -11 - }, -/obj/item/storage/toolbox/syndicate{ - pixel_y = 5 - }, -/obj/structure/table/standard, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/ninja) -"fgI" = ( -/obj/structure/bed/stool/chair/folding, -/obj/effect/landmark/thunderdomeobserve, -/obj/effect/floor_decal/corner/blue/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeobserve) -"fgO" = ( -/obj/structure/shuttle_part/ccia{ - icon_state = "11,1" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/transport1) -"fid" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_dininghall) -"fis" = ( -/obj/structure/bed/stool/chair/padded/blue{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/evac) -"fit" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"fiE" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "15,0" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"fja" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "11,19" - }, -/area/shuttle/mercenary) -"fjq" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/holding) -"fkb" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/obj/machinery/door/blast/odin/open{ - _wifi_id = "merc_droppod_5"; - name = "Pod E" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"fkx" = ( -/obj/structure/window/reinforced/polarized{ - id = "CCIABS" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "CCIABS" - }, -/obj/structure/grille, -/turf/unsimulated/floor/plating, -/area/centcom/control) -"fkH" = ( -/obj/item/deck/cards, -/obj/structure/table/wood, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/distress_prep) -"fkY" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "2,2" - }, -/area/shuttle/mercenary) -"flh" = ( -/obj/machinery/door/blast/odin{ - id = "hideout_access"; - name = "blast door" - }, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"flO" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "16,0" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"fmz" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "17,0" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"fmE" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "6,7"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"fmH" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "9,3"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"fmM" = ( -/obj/structure/shuttle_part/ccia{ - icon_state = "2,4" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/transport1) -"fnm" = ( -/obj/structure/shuttle_part/ccia{ - icon_state = "11,4" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/transport1) -"foD" = ( -/obj/effect/decal/fake_object{ - desc = "It's used to monitor rooms."; - dir = 8; - icon = 'icons/obj/monitors.dmi'; - icon_state = "camera"; - name = "surveillance camera" - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"foQ" = ( -/obj/structure/sign/flag/nanotrasen{ - pixel_y = 30 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/evac) -"fpk" = ( -/obj/machinery/acting/changer, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/burglar) -"fpt" = ( -/obj/structure/sign/pods{ - desc = "A direction sign which reads 'DROPPODS'."; - name = "\improper DROPPODS"; - pixel_x = -32; - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"fpS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"fpW" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"fqq" = ( -/obj/structure/curtain/black{ - icon_state = "open"; - opacity = 0 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"fqt" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = 1; - pixel_y = -31 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/syndicate_elite) -"fqx" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "18,0" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"fqz" = ( -/obj/structure/bed/stool/chair{ - can_buckle = 0; - name = "dusty chair" - }, -/turf/simulated/floor/exoplanet/barren, -/area/centcom/shared_dream) -"fri" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_dininghall) -"frs" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/syndicate/black, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/syndicate/black, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"frw" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/effect/decal/fake_object{ - name = "service ladder"; - pixel_y = 24 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"frK" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/syndicate/black/med, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/syndicate/black/med, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"fso" = ( -/obj/structure/railing/mapped{ - name = "adjusted railing" - }, -/obj/structure/table/glass{ - name = "reinforced glass table"; - table_reinf = "glass" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/evac) -"fsy" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "Ion Rifle" - }, -/obj/item/gun/energy/rifle/ionrifle, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"fsT" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"ftc" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "19,0" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"ftu" = ( -/obj/structure/shuttle_part/raider{ - icon_state = "20,0" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"ftC" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "loner_basement_hatch"; - locked = 1; - name = "Hangar Access" - }, -/obj/machinery/door/blast/odin{ - dir = 2; - id = "loner_basement"; - name = "Hangar Access" - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"fuj" = ( -/obj/structure/shuttle_part/transfer{ - density = 0; - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "14,8"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"fuy" = ( -/obj/effect/floor_decal/spline/plain/black, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/specops) -"fuZ" = ( -/obj/structure/lattice/catwalk/indoor/grate/light/old{ - icon_state = "grate_light_dam2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset/offworlder, -/turf/unsimulated/floor/plating, -/area/antag/raider) -"fvg" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"fvm" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 1; - pixel_y = 1 - }, -/turf/simulated/floor/tiled/white, -/area/merchant_station) -"fvz" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/pill_bottle/rmt{ - pixel_x = -12 - }, -/turf/simulated/floor/tiled/white, -/area/merchant_station) -"fvA" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "5,1" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"fvK" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/template_noop, -/area/template_noop) -"fvL" = ( -/turf/unsimulated/floor{ - dir = 1; - icon_state = "ramptop" - }, -/area/antag/ninja) -"fvQ" = ( -/obj/structure/shuttle/engine/propulsion/burst/right{ - dir = 8 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"fwl" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/merchant_station) -"fwz" = ( -/obj/structure/shuttle_part/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "12,6"; - name = "autoshuttle"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/arrival) -"fwF" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"fwX" = ( -/obj/machinery/light{ - name = "adjusted light fixture"; - pixel_x = 16; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/distress_prep) -"fyB" = ( -/obj/effect/floor_decal/corner/grey/full{ - dir = 8 - }, -/obj/structure/bed/stool/chair/padded/black{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"fyK" = ( -/obj/structure/mirror{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/merchant_station) -"fzh" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "11,3"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"fzQ" = ( -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"fzR" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/merchant_station) -"fAi" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 - }, -/obj/effect/landmark{ - name = "raiderstart" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/raider) -"fAY" = ( -/turf/simulated/floor/shuttle/black, -/area/shuttle/burglar) -"fCl" = ( -/obj/item/storage/box/cdeathalarm_kit{ - pixel_x = -9; - pixel_y = 3 - }, -/obj/structure/table/steel, -/obj/item/modular_computer/handheld/pda/ert{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/modular_computer/handheld/pda/ert{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/modular_computer/handheld/pda/ert{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/modular_computer/handheld/pda/ert{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/modular_computer/handheld/pda/ert{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/modular_computer/handheld/pda/ert{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"fCO" = ( -/turf/simulated/floor/tiled, -/area/merchant_station) -"fDg" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"fDn" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/brown, -/obj/random/plushie, -/obj/structure/curtain/open/bed, -/turf/simulated/floor/wood, -/area/merchant_station) -"fDN" = ( -/obj/structure/bed/stool/bar/padded/red, -/obj/effect/landmark{ - name = "lonerspawn" - }, -/turf/unsimulated/floor, -/area/antag/loner) -"fEm" = ( -/obj/structure/sink{ - pixel_y = 18 - }, -/obj/structure/mirror{ - pixel_y = 33 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/merchant_station) -"fEX" = ( -/obj/effect/floor_decal/corner/grey/full{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"fEY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"fFd" = ( -/obj/item/aiModule/nanotrasen, -/obj/item/aiModule/reset, -/obj/item/aiModule/freeformcore, -/obj/item/aiModule/protectStation, -/obj/item/aiModule/quarantine, -/obj/item/aiModule/paladin, -/obj/item/aiModule/robocop, -/obj/item/aiModule/safeguard, -/obj/structure/table/reinforced/steel, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"fFe" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/obj/structure/disposalpipe/segment, -/turf/unsimulated/floor/plating, -/area/tdome/tdomeadmin) -"fFB" = ( -/obj/structure/shuttle_part/mercenary/small{ - density = 0; - icon_state = "4,0" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"fFC" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1337; - id_tag = "elite_shuttle_starboard"; - name = "starboard docking controller"; - pixel_x = 6; - pixel_y = 28; - tag_door = "elite_shuttle_hatch_starboard" - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1337; - id_tag = "elite_shuttle_port"; - name = "port docking controller"; - pixel_x = -7; - pixel_y = 28; - tag_door = "elite_shuttle_hatch_port" - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/syndicate_elite) -"fFJ" = ( -/obj/machinery/door/airlock/hatch{ - name = "Thruster Access" - }, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"fGd" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "1,1" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"fGe" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/item/storage/box/autoinjectors{ - pixel_x = 12; - pixel_y = 10 - }, -/obj/item/storage/box/beakers{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/item/storage/box/syringes{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/storage/box/pillbottles{ - pixel_x = 12; - pixel_y = -4 - }, -/obj/structure/table/standard, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"fGh" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/vending/boozeomat/merchant, -/turf/simulated/floor/tiled, -/area/merchant_station) -"fGK" = ( -/obj/structure/shuttle_part/distress{ - icon_state = "0,3"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/distress) -"fHv" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/unsimulated/floor/plating, -/area/antag/mercenary) -"fHF" = ( -/obj/structure/table/reinforced/steel, -/obj/item/aicard, -/obj/item/paper/monitorkey, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"fIp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/fake_object{ - icon = 'icons/obj/atmos.dmi'; - icon_state = "orange-1"; - name = "ruptured phoron canister" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "floorscorched2" - }, -/area/antag/raider) -"fIR" = ( -/obj/structure/table/reinforced/wood, -/obj/effect/decal/fake_object{ - color = "#8bbbd5"; - icon = 'icons/obj/decals.dmi'; - icon_state = "valkyrie_rest1"; - name = "Valkyrie's Rest"; - pixel_x = -6; - pixel_y = 27 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 14; - pixel_y = 11 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 22; - pixel_y = 11 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 30; - pixel_y = 11 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 14; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 22; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 30; - pixel_y = 8 - }, -/obj/machinery/chemical_dispenser/bar_alc/full{ - pixel_x = -13; - pixel_y = 7 - }, -/obj/effect/decal/fake_object{ - color = "#8bbbd5"; - icon = 'icons/obj/decals.dmi'; - icon_state = "valkyrie_rest2"; - name = "Valkyrie's Rest"; - pixel_x = 24; - pixel_y = 27 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"fKx" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "0,1" - }, -/turf/unsimulated/floor/plating, -/area/supply/dock) -"fKU" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 1; - name = "adjusted light fixture"; - icon_state = "tube_empty" - }, -/obj/item/pizzabox/vegetable{ - pixel_y = 12 - }, -/turf/simulated/floor/tiled, -/area/merchant_station) -"fLb" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = -9; - pixel_y = 7 - }, -/obj/item/mop, -/turf/simulated/floor/tiled/white, -/area/merchant_station) -"fLi" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/ss13/odin4, -/turf/unsimulated/floor, -/area/centcom/evac) -"fMi" = ( -/obj/structure/shuttle_part/ccia{ - icon_state = "6,4"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/transport1) -"fMm" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/obj/effect/landmark{ - name = "raiderstart" - }, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "carpet7-3" - }, -/area/antag/raider) -"fMR" = ( -/obj/structure/lattice/catwalk, -/turf/template_noop, -/area/template_noop) -"fNc" = ( -/obj/structure/table/stone/marble, -/obj/machinery/reagentgrinder{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/material/knife{ - pixel_x = -9; - pixel_y = -14 - }, -/obj/item/storage/box/produce{ - pixel_x = 3; - pixel_y = -11 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"fNk" = ( -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"fNM" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 1; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/merchant_station) -"fNO" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"fOf" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/bed/stool/padded/red{ - pixel_y = 10 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"fOu" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/item/stack/rods, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"fOK" = ( -/obj/effect/floor_decal/corner/green, -/turf/unsimulated/floor, -/area/centcom/bar) -"fOL" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "0,8" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"fOM" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"fPE" = ( -/obj/structure/shuttle_part/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "1,0"; - name = "autoshuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/arrival) -"fQc" = ( -/obj/structure/railing/mapped{ - name = "adjusted railing" - }, -/obj/structure/bed/stool/chair/padded/blue{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/evac) -"fQr" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"fQC" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"fQE" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/item/storage/box/donkpockets, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"fQM" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/centcom/shared_dream) -"fQS" = ( -/obj/item/deck/cards, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood{ - table_reinf = "wood" - }, -/turf/unsimulated/floor{ - icon_state = "carpet" - }, -/area/antag/raider) -"fRm" = ( -/obj/machinery/door/airlock/glass_centcom{ - name = "Valkyrie's Rest Kitchen"; - req_access = list(105) - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"fRx" = ( -/turf/unsimulated/floor/elevatorshaft, -/area/centcom/legion) -"fSp" = ( -/turf/unsimulated/floor{ - dir = 8; - icon_state = "tiled_preview" - }, -/area/centcom/ferry) -"fSX" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "2,18"; - name = "transport shuttle"; - outside_part = 0 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"fSY" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/item/storage/toolbox/electrical{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/stack/cable_coil{ - pixel_x = -6; - pixel_y = -1 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"fTh" = ( -/obj/structure/table/reinforced/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/item/pen, -/obj/structure/window/reinforced/crescent, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"fTk" = ( -/obj/machinery/door/airlock/centcom{ - name = "Holding Cells"; - req_access = list(111); - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"fTp" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "tcflcheckpoint"; - name = "Security Checkpoint" - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"fTt" = ( -/obj/structure/railing/mapped{ - name = "adjusted railing" - }, -/obj/structure/bed/stool/chair/padded/blue{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/evac) -"fTC" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "3,7" - }, -/area/shuttle/mercenary) -"fTE" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/window/reinforced, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "tcflcheckpointinner"; - name = "Checkpoint Inner"; - pixel_x = -5; - pixel_y = 5 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "tcflcheckpoint"; - name = "Security Checkpoint" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/legion) -"fTG" = ( -/obj/structure/shuttle_part/distress{ - icon_state = "1,3"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/distress) -"fTS" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/door/window/brigdoor/southleft{ - name = "Checkpoint"; - req_access = list(111) - }, -/obj/item/paper_bin{ - pixel_x = -16; - pixel_y = 2 - }, -/obj/item/pen/blue{ - pixel_x = -16; - pixel_y = 4 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "tcflcheckpoint"; - name = "Security Checkpoint" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/legion) -"fUg" = ( -/obj/machinery/chemical_dispenser/ert{ - pixel_x = -3 - }, -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/holding) -"fUN" = ( -/obj/structure/table/wood, -/obj/item/device/megaphone/sec, -/obj/item/device/megaphone/sec, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/distress_prep) -"fVh" = ( -/obj/structure/shuttle_part/distress{ - icon_state = "10,0"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/distress) -"fVC" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/window/reinforced, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "tcflcheckpointouter"; - name = "Checkpoint Outer"; - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "tcflcheckpoint"; - name = "Security Checkpoint" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/legion) -"fVF" = ( -/obj/structure/table/reinforced, -/obj/item/device/camera_film, -/obj/item/device/camera, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"fWO" = ( -/obj/effect/ghostspawpoint{ - identifier = "OdinBartender"; - name = "igs - OdinBartender" - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"fXq" = ( -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/antag/raider) -"fXv" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood, -/area/merchant_station) -"fXJ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/unsimulated/floor/plating, -/area/centcom/ferry) -"fXQ" = ( -/obj/machinery/door/airlock/silver{ - name = "Washroom"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/merchant_station) -"fYr" = ( -/obj/structure/bed/stool/bar/padded/red, -/obj/effect/landmark{ - name = "raiderstart" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/raider) -"fYz" = ( -/obj/machinery/vending/coffee/free{ - pixel_x = -1 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"fYO" = ( -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/obj/structure/bed/roller, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"fYX" = ( -/obj/structure/closet/walllocker/emerglocker/west, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"gaD" = ( -/obj/structure/sign/directions/com{ - dir = 1; - pixel_y = -4 - }, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/control) -"gaS" = ( -/obj/structure/table/rack, -/obj/item/storage/secure/briefcase, -/obj/item/storage/briefcase/aluminium, -/obj/item/device/camera, -/obj/item/device/taperecorder, -/obj/item/device/megaphone/red, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/ninja) -"gbB" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "ramptop"; - name = "staircase" - }, -/area/centcom/spawning) -"gbL" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/space/dynamic, -/area/template_noop) -"gbM" = ( -/obj/structure/curtain/black{ - icon_state = "open"; - opacity = 0 - }, -/turf/simulated/floor/wood, -/area/merchant_station) -"gcj" = ( -/obj/structure/railing/mapped{ - name = "adjusted railing" - }, -/obj/item/flame/lighter/zippo/gold{ - pixel_y = 3 - }, -/obj/structure/table/glass{ - name = "reinforced glass table"; - table_reinf = "glass" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/evac) -"gct" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 - }, -/obj/effect/landmark{ - name = "raiderstart" - }, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - dir = 4; - icon_state = "carpet" - }, -/area/antag/raider) -"gdf" = ( -/obj/structure/lattice, -/turf/space/dynamic, -/area/centcom/distress_prep) -"gdk" = ( -/obj/structure/bed/stool/chair/padded/blue{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/evac) -"gdz" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"gdM" = ( -/obj/item/screwdriver{ - pixel_y = 12 - }, -/obj/item/stack/tile/floor{ - pixel_x = -3; - pixel_y = -2 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"gdU" = ( -/obj/machinery/door/airlock/hatch{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "arrival_shuttle_hatch"; - locked = 1; - name = "Shuttle Hatch"; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/shuttle/tan, -/area/shuttle/arrival) -"gei" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/vending/snack{ - name = "Snack Machine"; - prices = list() - }, -/turf/simulated/floor/tiled, -/area/merchant_station) -"gey" = ( -/obj/machinery/light, -/turf/simulated/floor/shuttle/black, -/area/shuttle/escape) -"geT" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/unsimulated/floor{ - dir = 1; - icon_state = "ramptop"; - name = "staircase" - }, -/area/centcom/spawning) -"gfl" = ( -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/obj/machinery/newscaster/north, -/turf/simulated/floor/lino/diamond, -/area/merchant_station) -"gfu" = ( -/obj/structure/table/stone/marble, -/obj/machinery/appliance/mixer/candy{ - pixel_y = 6 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"gfT" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "1,3" - }, -/area/shuttle/mercenary) -"ggE" = ( -/obj/random/tool, -/turf/unsimulated/floor/plating, -/area/centcom/holding) -"ggI" = ( -/obj/structure/table/reinforced/wood, -/obj/item/modular_computer/laptop/preset/command/captain, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"ght" = ( -/turf/simulated/wall/shuttle/unique/mercenary/small{ - icon_state = "3,9" - }, -/area/shuttle/syndicate_elite) -"ghF" = ( -/obj/machinery/telecomms/bus/preset_cent, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"ghN" = ( -/obj/random/junk, -/turf/template_noop, -/area/template_noop) -"ghR" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"ghU" = ( -/obj/effect/decal/fake_object{ - icon = 'icons/obj/doors/rapid_pdoor.dmi'; - icon_state = "pdoor0"; - name = "blast door" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"giw" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"giS" = ( -/obj/structure/sign/directions/tram{ - dir = 1; - pixel_y = 5 - }, -/obj/structure/sign/directions/civ{ - dir = 1; - pixel_x = 2; - pixel_y = -4 - }, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/checkpoint/fore) -"gji" = ( -/obj/item/gun/projectile/automatic/wt550/lethal{ - pixel_y = -1 - }, -/obj/item/gun/projectile/automatic/wt550/lethal{ - pixel_y = -1 - }, -/obj/item/gun/projectile/automatic/wt550/lethal{ - pixel_y = 6 - }, -/obj/item/gun/projectile/automatic/wt550/lethal{ - pixel_y = 6 - }, -/obj/structure/table/reinforced/steel, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"gju" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/obj/structure/table/wood, -/turf/simulated/floor/lino/diamond, -/area/merchant_station) -"gjN" = ( -/turf/simulated/floor/beach/sand{ - icon_state = "desert0" - }, -/area/centcom/shared_dream) -"gkg" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/unsimulated/floor, -/area/centcom/legion) -"gkV" = ( -/obj/structure/table/reinforced, -/obj/item/storage/pill_bottle/kelotane{ - pixel_y = 12 - }, -/obj/item/storage/pill_bottle/kelotane{ - pixel_x = -6; - pixel_y = 12 - }, -/obj/item/storage/pill_bottle/kelotane{ - pixel_x = 6; - pixel_y = 12 - }, -/obj/item/storage/pill_bottle/antitox{ - pixel_x = -6 - }, -/obj/item/storage/pill_bottle/antitox, -/obj/item/storage/pill_bottle/antitox{ - pixel_x = 6 - }, -/obj/item/storage/pill_bottle/mortaphenyl{ - pixel_y = -12 - }, -/obj/item/storage/pill_bottle/mortaphenyl{ - pixel_x = -6; - pixel_y = -12 - }, -/obj/item/storage/pill_bottle/mortaphenyl{ - pixel_x = 6; - pixel_y = -12 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"glr" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "specops_shuttle_fore_hatch"; - locked = 1; - name = "Forward Docking Hatch"; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/specops) -"glx" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/machinery/porta_turret/legion, -/obj/effect/floor_decal/industrial/warning, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"gmv" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "1,13"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"gmG" = ( -/obj/effect/decal/fake_object{ - desc = "A nondescript coat."; - icon = 'icons/obj/coatrack.dmi'; - icon_state = "coat_lilith_coat"; - name = "coat"; - pixel_x = 8 - }, -/obj/structure/coatrack{ - pixel_x = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/centcom/shared_dream) -"gnj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/fake_object{ - density = 1; - desc = "A particularly scuffed cargo trolley."; - icon = 'icons/obj/vehicles.dmi'; - icon_state = "cargo_trailer"; - name = "cargo trailer"; - pixel_x = 1 - }, -/obj/effect/decal/fake_object{ - desc = "This one looks particularly heavy."; - icon = 'icons/obj/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "legion supply crate"; - pixel_x = 1; - pixel_y = 3 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"gnt" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 - }, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/simulated/floor/lino/diamond, -/area/merchant_station) -"gnF" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/binary/passive_gate{ - dir = 4; - name = "shuttle airlock pressure regulator"; - target_pressure = 75; - unlocked = 1 - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"goi" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/obj/structure/sign/double/map/right{ - desc = "A framed picture of a station."; - pixel_x = -16; - pixel_y = 32 - }, -/turf/unsimulated/floor/plating, -/area/antag/loner) -"gou" = ( -/obj/structure/filingcabinet, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"gov" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/structure/sign/flag/nanotrasen/unmovable, -/turf/unsimulated/floor, -/area/centcom/spawning) -"goO" = ( -/obj/effect/decal/fake_object/light_source/invisible, -/turf/simulated/floor/bluegrid, -/area/tdome) -"goT" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"gpf" = ( -/obj/structure/closet/wardrobe/suit, -/obj/random/colored_jumpsuit, -/obj/random/backpack, -/obj/item/clothing/shoes/workboots, -/obj/item/clothing/shoes/workboots/toeless, -/obj/item/clothing/shoes/sandals, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots/toeless, -/obj/item/clothing/shoes/laceup, -/obj/item/rig/light/offworlder, -/obj/item/clothing/accessory/offworlder/bracer, -/turf/simulated/floor/wood, -/area/merchant_station) -"gpl" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/fake_object{ - name = "service ladder"; - pixel_y = 24 - }, -/obj/effect/decal/fake_object{ - density = 1; - desc = "What jerk stacked these here?"; - icon = 'icons/obj/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "inconveniently placed crate"; - pixel_x = 3; - pixel_y = 8 - }, -/obj/effect/decal/fake_object{ - desc = "What jerk stacked these here?"; - icon = 'icons/obj/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "inconveniently placed crate"; - pixel_x = 2; - pixel_y = 19 - }, -/obj/effect/decal/fake_object{ - desc = "What jerk stacked these here?"; - icon = 'icons/obj/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "inconveniently placed crate"; - pixel_x = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"gpo" = ( -/obj/structure/railing/mapped{ - name = "adjusted railing" - }, -/obj/machinery/light{ - dir = 4; - name = "adjusted light fixture"; - pixel_y = 16; - icon_state = "tube_empty" - }, -/obj/structure/bed/stool/chair/padded/blue{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/evac) -"gpF" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/machinery/door/window/brigdoor/westright{ - name = "checkpoint desk"; - req_access = list(101) - }, -/turf/unsimulated/floor, -/area/centcom/ferry) -"gpZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/fake_object{ - density = 1; - desc = "A wooden crate containing spare parts."; - icon = 'icons/obj/crate.dmi'; - icon_state = "densecrate"; - name = "mechanical supply crate"; - pixel_x = 1 - }, -/obj/structure/sign/emergency/exit/ladder{ - dir = 1; - pixel_x = -9; - pixel_y = 30 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"gqa" = ( -/obj/structure/computerframe, -/turf/simulated/floor/tiled/dark, -/area/centcom/bar) -"grz" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"grY" = ( -/obj/effect/decal/fake_object{ - desc = "Ding."; - icon = 'icons/obj/doors/doorlift.dmi'; - icon_state = "door_open"; - name = "elevator door" - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"gsg" = ( -/turf/simulated/wall/shuttle/unique/cargo{ - icon_state = "0,5" - }, -/area/supply/dock) -"gsr" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "1,6" - }, -/area/shuttle/legion) -"gsJ" = ( -/obj/structure/shuttle_part/tcfl{ - icon_state = "2,6" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/legion) -"gsY" = ( -/obj/structure/table/stone/marble, -/obj/machinery/appliance/mixer/cereal{ - pixel_y = 4 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"gtA" = ( -/obj/structure/closet{ - icon_door = "blue"; - name = "misc clothing" - }, -/obj/item/clothing/mask/pig, -/obj/item/clothing/mask/gas/owl_mask, -/obj/item/clothing/mask/horsehead, -/obj/item/clothing/mask/gas/monkeymask, -/obj/item/clothing/mask/luchador/tecnicos, -/obj/item/clothing/shoes/laceup/brown, -/obj/item/clothing/shoes/laceup/brown, -/obj/item/clothing/shoes/workboots, -/obj/item/clothing/shoes/workboots, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/under/suit_jacket/tan, -/obj/item/clothing/under/suit_jacket/navy, -/obj/item/clothing/under/suit_jacket, -/obj/item/clothing/under/suit_jacket/burgundy, -/obj/item/clothing/under/suit_jacket/checkered, -/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/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"gug" = ( -/obj/structure/window/shuttle/unique/transfer{ - icon_state = "9,21" - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"gus" = ( -/turf/simulated/wall/shuttle/unique/mercenary/small{ - icon_state = "3,2" - }, -/area/shuttle/syndicate_elite) -"guL" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/obj/machinery/door/blast/odin/open{ - _wifi_id = "loner_droppod_1"; - name = "Pod L" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/loner) -"guX" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "centcom_dock"; - name = "docking port controller"; - pixel_x = 25; - req_one_access = list(13); - tag_door = "centcom_dock_airlock" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"gva" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/turf/unsimulated/floor{ - name = "staircase"; - icon_state = "tiled_preview" - }, -/area/centcom/spawning) -"gvx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"gvA" = ( -/obj/effect/floor_decal/corner/grey{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/control) -"gvF" = ( -/obj/structure/window/shuttle/unique/mercenary{ - icon_state = "6,24" - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"gvP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/freezer/rations, -/obj/item/storage/box/drinkingglasses, -/turf/simulated/floor/tiled/dark, -/area/shuttle/skipjack) -"gwf" = ( -/obj/structure/bed/stool/padded/red{ - pixel_y = 10 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"gws" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "0,9" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"gwC" = ( -/obj/structure/shuttle_part/tcfl{ - icon_state = "3,6" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/legion) -"gwD" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/syndicate/black/blue, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/syndicate/black/blue, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"gwQ" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "4,6" - }, -/area/shuttle/legion) -"gxu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/conveyor{ - id = "merchant_shipping" - }, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"gxW" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "5,6" - }, -/area/shuttle/legion) -"gyi" = ( -/obj/effect/step_trigger/thrower/shuttle/east, -/turf/space/transit/bluespace/west, -/area/template_noop) -"gyj" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - id = "odinasshutters"; - name = "Blast Shutters"; - opacity = 0 - }, -/obj/machinery/door/window/brigdoor/northright{ - req_access = list(103) - }, -/obj/structure/table/reinforced, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "arrivals_inner"; - name = "inner blast door"; - pixel_x = -24; - pixel_y = -3; - req_access = list(103) - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "arrivals_outer"; - name = "outer blast door"; - pixel_x = 27; - pixel_y = -3; - req_access = list(103) - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/spawning) -"gyn" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/random/tool, -/turf/unsimulated/floor/plating, -/area/centcom/spawning) -"gyC" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/obj/machinery/door/blast/odin/open{ - _wifi_id = "merc_droppod_7"; - name = "Pod G" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"gzj" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"gzk" = ( -/obj/machinery/suit_cycler{ - req_access = list(110) - }, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"gzU" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 9 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"gAb" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/obj/machinery/computer/cryopod{ - pixel_x = -28; - pixel_y = 19 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"gAA" = ( -/obj/effect/floor_decal/corner/red{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"gAT" = ( -/obj/machinery/light, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"gBb" = ( -/obj/structure/table/stone/marble, -/obj/item/storage/box/fancy/donut{ - pixel_x = -15; - pixel_y = 4 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = 9; - pixel_y = 1 - }, -/obj/effect/floor_decal/spline/plain/black, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/burglar) -"gBg" = ( -/obj/machinery/door/window/brigdoor/southleft{ - name = "holding cell"; - req_access = list(150) - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"gCf" = ( -/obj/machinery/acting/changer, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/ninja) -"gCr" = ( -/turf/unsimulated/wall/riveted{ - opacity = 0; - permit_ao = 0 - }, -/area/antag/wizard) -"gDr" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/random/voidsuit, -/obj/random/voidsuit, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"gDt" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/item/tank/air, -/obj/item/tank/air, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"gDY" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "6,2" - }, -/area/shuttle/mercenary) -"gEh" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/landmark/thunderdome2, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/tdome/tdome2) -"gEw" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/mercenary) -"gEz" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/spline/plain/black, -/obj/structure/sign/poster{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/merchant_station) -"gEL" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "6,6" - }, -/area/shuttle/legion) -"gES" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "10,19"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"gEY" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/drinkingglasses, -/obj/item/material/kitchen/utensil/knife, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"gFg" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"gFh" = ( -/obj/machinery/door/airlock{ - id_tag = "odin_valkyrie_stall2"; - name = "Stall 2" - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"gFo" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "7,6" - }, -/area/shuttle/legion) -"gFC" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/spline/plain/black, -/turf/simulated/floor/tiled, -/area/merchant_station) -"gGr" = ( -/obj/structure/window/shuttle/unique/mercenary/small{ - icon_state = "2,11" - }, -/turf/simulated/floor/plating, -/area/shuttle/syndicate_elite) -"gGv" = ( -/obj/structure/table/reinforced/steel, -/obj/item/gun/projectile/pistol{ - pixel_y = 6 - }, -/obj/item/gun/projectile/pistol{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/unsimulated/floor, -/area/antag/burglar) -"gGx" = ( -/obj/structure/bed/stool/chair/office/bridge/pilot, -/obj/structure/extinguisher_cabinet/north, -/turf/simulated/floor/shuttle/black, -/area/shuttle/distress) -"gGS" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"gHw" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "8,6" - }, -/area/shuttle/legion) -"gIf" = ( -/obj/machinery/door/airlock/hatch{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "legion_shuttle_hatch"; - locked = 1; - name = "Dropship Hatch"; - req_access = list(111); - dir = 1 - }, -/obj/machinery/door/blast/regular/open{ - dir = 8; - id = "tcflblastport"; - name = "Starboard Blast Door" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"gIn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1332; - master_tag = "raider_east_control"; - pixel_x = 22; - pixel_y = 24; - req_access = list(150) - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"gIs" = ( -/obj/effect/step_trigger/thrower/shuttle/southwest, -/turf/space/transit/bluespace/south, -/area/template_noop) -"gJO" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" - }, -/area/antag/raider) -"gKo" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/syndicate_elite) -"gKq" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/spline/plain/black, -/obj/machinery/vending/dinnerware{ - random_itemcount = 1 - }, -/turf/simulated/floor/tiled, -/area/merchant_station) -"gLc" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_dininghall) -"gLk" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "loner_basement"; - name = "external hangar access"; - pixel_x = -23; - pixel_y = 4; - req_access = list(150) - }, -/turf/unsimulated/floor/plating, -/area/antag/mercenary) -"gLr" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "11,6" - }, -/area/shuttle/legion) -"gLC" = ( -/obj/structure/janitorialcart/full{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"gLL" = ( -/obj/structure/dispenser/oxygen, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"gLQ" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "12,6" - }, -/area/shuttle/legion) -"gLR" = ( -/obj/structure/shuttle_part/tcfl{ - icon_state = "17,6" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/legion) -"gMc" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 1 - }, -/turf/simulated/floor/lino/diamond, -/area/merchant_station) -"gMf" = ( -/obj/item/clothing/glasses/sunglasses/sechud/tactical{ - pixel_x = -1; - pixel_y = 7 - }, -/obj/item/clothing/glasses/sunglasses/sechud/tactical{ - pixel_x = -1; - pixel_y = 7 - }, -/obj/item/clothing/glasses/sunglasses/sechud/tactical{ - pixel_x = -1; - pixel_y = 7 - }, -/obj/item/clothing/glasses/sunglasses/sechud/tactical{ - pixel_x = -1; - pixel_y = 7 - }, -/obj/item/clothing/glasses/sunglasses/sechud/tactical{ - pixel_x = -1; - pixel_y = 7 - }, -/obj/item/clothing/glasses/sunglasses/sechud/tactical{ - pixel_x = -1; - pixel_y = 7 - }, -/obj/item/clothing/glasses/night{ - pixel_x = -1; - pixel_y = -3 - }, -/obj/item/clothing/glasses/night{ - pixel_x = -1; - pixel_y = -3 - }, -/obj/item/clothing/glasses/night{ - pixel_x = -1; - pixel_y = -3 - }, -/obj/item/clothing/glasses/night{ - pixel_x = -1; - pixel_y = -3 - }, -/obj/item/clothing/glasses/night{ - pixel_x = -1; - pixel_y = -3 - }, -/obj/item/clothing/glasses/night{ - pixel_x = -1; - pixel_y = -3 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/table/reinforced/steel, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"gMq" = ( -/obj/structure/window/shuttle/unique/transfer{ - icon_state = "6,22"; - outside_window = 1 - }, -/turf/simulated/floor/plating, -/area/shuttle/escape) -"gMC" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor/plating, -/area/centcom/suppy) -"gMF" = ( -/obj/structure/window/reinforced/crescent, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"gMK" = ( -/obj/machinery/computer/shuttle_control/merchant, -/turf/simulated/floor/wood, -/area/merchant_station) -"gMM" = ( -/obj/structure/shuttle_part/distress{ - icon_state = "8,4"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/distress) -"gNf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ore, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"gND" = ( -/obj/machinery/door/airlock/centcom{ - name = "Entertainment Wing Maintenance"; - req_access = list(108,109) - }, -/turf/unsimulated/floor/plating, -/area/centcom/spawning) -"gNM" = ( -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "CCIABS" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "CCIABS" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "CCIABS" - }, -/turf/unsimulated/floor/plating, -/area/centcom/control) -"gNQ" = ( -/obj/structure/bed/stool, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"gOp" = ( -/obj/machinery/door/airlock/centcom{ - name = "Washroom"; - req_access = list(112) - }, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/centcom/distress_prep) -"gON" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/centcom/shared_dream) -"gOV" = ( -/obj/item/clothing/accessory/storage/webbingharness/pouches/ert, -/obj/item/clothing/accessory/storage/webbingharness/alt{ - slots = 5 - }, -/obj/item/clothing/accessory/storage/webbingharness{ - slots = 5 - }, -/obj/item/device/binoculars, -/obj/structure/table/reinforced, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"gPm" = ( -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/distress_prep) -"gPJ" = ( -/obj/item/clothing/mask/pig, -/obj/item/clothing/mask/gas/owl_mask, -/obj/item/clothing/mask/horsehead, -/obj/item/clothing/mask/gas/monkeymask, -/obj/item/clothing/mask/luchador/tecnicos, -/obj/item/clothing/shoes/laceup/brown, -/obj/item/clothing/shoes/laceup/brown, -/obj/item/clothing/shoes/workboots, -/obj/item/clothing/shoes/workboots, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/under/suit_jacket/tan, -/obj/item/clothing/under/suit_jacket/navy, -/obj/item/clothing/under/suit_jacket, -/obj/item/clothing/under/suit_jacket/burgundy, -/obj/item/clothing/under/suit_jacket/checkered, -/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/structure/closet/crate/drop/grey{ - name = "spare clothing" - }, -/obj/item/clothing/accessory/holster/thigh/brown, -/obj/item/clothing/accessory/holster/hip/brown, -/obj/item/clothing/accessory/holster/armpit/brown, -/obj/item/clothing/gloves/black_leather, -/obj/item/clothing/gloves/black_leather, -/obj/item/clothing/accessory/storage/webbingharness/alt{ - slots = 5 - }, -/obj/item/clothing/accessory/storage/webbingharness/pouches/ert, -/obj/item/clothing/accessory/storage/webbingharness{ - slots = 5 - }, -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/accessory/storage/brown_vest, -/obj/item/clothing/accessory/storage/white_vest, -/turf/unsimulated/floor, -/area/antag/burglar) -"gPO" = ( -/turf/unsimulated/floor{ - icon_state = "wood-broken3" - }, -/area/antag/raider) -"gQw" = ( -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"gRg" = ( -/obj/structure/window/shuttle/unique/burglar{ - icon_state = "3,1" - }, -/turf/simulated/floor/plating, -/area/shuttle/burglar) -"gRD" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/item/device/flashlight/lamp, -/turf/unsimulated/floor, -/area/centcom/ferry) -"gRJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"gSc" = ( -/obj/machinery/door/airlock/centcom{ - name = "Commander's Office"; - req_access = list(108) - }, -/obj/machinery/door/blast/odin{ - dir = 2; - id = "commander_starboard"; - name = "Commander's Office" - }, -/obj/machinery/button/remote/blast_door{ - id = "commander_starboard"; - name = "starboard blast door"; - pixel_y = -22; - req_access = list(108) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"gSj" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "4,22" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"gSG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = -14; - pixel_y = -5 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = -5 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = -10 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 4 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 4; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/obj/item/storage/box/gloves{ - pixel_x = -12; - pixel_y = 11 - }, -/obj/structure/table/steel, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"gSK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - dir = 1; - icon_state = "tiled_preview" - }, -/area/antag/raider) -"gTk" = ( -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"gTC" = ( -/obj/effect/step_trigger/thrower/shuttle/south, -/turf/unsimulated/mineral/asteroid, -/area/template_noop) -"gTK" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/dark, -/area/shuttle/syndicate_elite) -"gTY" = ( -/obj/machinery/door/airlock/glass{ - name = "Infirmary"; - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/merchant_station) -"gUc" = ( -/obj/effect/step_trigger/thrower/shuttle/north, -/turf/template_noop, -/area/template_noop) -"gUK" = ( -/obj/effect/decal/fake_object{ - density = 1; - desc = "Ding."; - icon = 'icons/obj/doors/doorlift.dmi'; - icon_state = "door_closed"; - name = "elevator door" - }, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/centcom/legion) -"gVd" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"gVo" = ( -/obj/effect/decal/fake_object{ - density = 1; - icon = 'icons/obj/fireplace.dmi'; - icon_state = "fireplace"; - name = "fireplace"; - pixel_x = -16; - pixel_y = -16 - }, -/obj/effect/decal/fake_object{ - density = 1; - icon = 'icons/obj/fireplace.dmi'; - icon_state = "fireplace_fire2"; - name = "fireplace"; - pixel_x = -16; - pixel_y = -16 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/centcom/shared_dream) -"gVK" = ( -/obj/structure/lattice, -/obj/structure/sign/fire{ - pixel_y = 30 - }, -/turf/space/dynamic, -/area/template_noop) -"gVU" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"gWY" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"gXe" = ( -/obj/machinery/door/airlock/centcom{ - name = "Dock"; - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"gXh" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_dininghall) -"gXF" = ( -/obj/item/storage/belt/security/tactical, -/obj/item/storage/belt/security/tactical, -/obj/item/storage/belt/security/tactical, -/obj/item/storage/belt/security/tactical, -/obj/item/storage/belt/security/tactical, -/obj/item/storage/belt/security/tactical, -/obj/item/melee/baton/loaded{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/melee/baton/loaded{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/melee/baton/loaded{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/melee/baton/loaded{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/melee/baton/loaded{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/melee/baton/loaded{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/crowbar{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/crowbar{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/crowbar{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/crowbar{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/crowbar{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/crowbar{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/item/shield/riot/tact{ - pixel_x = -18 - }, -/obj/item/shield/riot/tact{ - pixel_x = -18 - }, -/obj/item/shield/riot/tact{ - pixel_x = -18 - }, -/obj/item/shield/riot/tact{ - pixel_x = -18 - }, -/obj/item/shield/riot/tact{ - pixel_x = -18 - }, -/obj/item/shield/riot/tact{ - pixel_x = -18 - }, -/obj/structure/table/reinforced/steel, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"gYa" = ( -/obj/machinery/door/airlock/centcom{ - name = "Entertainment Wing Maintenance"; - req_access = list(106) - }, -/turf/unsimulated/floor/plating, -/area/centcom/spawning) -"gYb" = ( -/turf/simulated/wall/shuttle/unique/ert{ - icon_state = "5,0" - }, -/area/centcom/specops) -"gYs" = ( -/obj/effect/decal/fake_object{ - desc = "A button. It's unpowered. Typical."; - icon = 'icons/obj/turbolift.dmi'; - icon_state = "button"; - name = "elevator button"; - pixel_y = 4 - }, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/legion) -"gYQ" = ( -/obj/item/tape/engineering{ - icon_state = "engineering_door" - }, -/obj/effect/decal/fake_object{ - density = 1; - desc = "Ding."; - icon = 'icons/obj/doors/doorlift.dmi'; - icon_state = "door_closed"; - name = "elevator door" - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"gYT" = ( -/turf/unsimulated/wall/steel, -/area/antag/loner) -"gYU" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "10,22"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"gYV" = ( -/obj/item/tape/engineering{ - icon_state = "engineering_door" - }, -/obj/effect/decal/fake_object{ - density = 1; - desc = "Ding."; - icon = 'icons/obj/doors/doorlift.dmi'; - icon_state = "o_door_half_open"; - name = "elevator door" - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"gZx" = ( -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"gZC" = ( -/obj/machinery/door/airlock/hatch{ - name = "Equipment"; - req_access = list(110); - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/merchant_station) -"gZG" = ( -/obj/machinery/door/window/westleft, -/turf/simulated/floor/lino/diamond, -/area/merchant_station) -"gZQ" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/unsimulated/floor{ - dir = 4; - icon_state = "ramptop" - }, -/area/centcom/holding) -"gZS" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/effect/landmark/start{ - name = "Merchant" - }, -/turf/simulated/floor/carpet, -/area/merchant_station) -"gZV" = ( -/obj/structure/sign/directions/dock, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/spawning) -"haj" = ( -/turf/simulated/wall/shuttle/unique/cargo{ - icon_state = "0,9" - }, -/area/supply/dock) -"hax" = ( -/obj/machinery/computer/shuttle_control/multi/distress, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"haW" = ( -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "tcflcheckpointinner"; - name = "Security Checkpoint" - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"hbO" = ( -/obj/machinery/mech_recharger, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"hbQ" = ( -/turf/simulated/wall/shuttle/unique/cargo{ - icon_state = "2,2" - }, -/area/supply/dock) -"hcn" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "supply_shuttle_hatch"; - locked = 1; - name = "Shuttle Hatch"; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/supply/dock) -"hcI" = ( -/obj/structure/shuttle_part/tcfl{ - icon_state = "0,5" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/legion) -"hdM" = ( -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/template_noop) -"hfd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/obj/structure/girder, -/turf/unsimulated/floor/plating, -/area/antag/raider) -"hfT" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/reinforced/steel, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"hgr" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "8,2"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"hgK" = ( -/obj/effect/decal/fake_object/light_source/invisible, -/turf/simulated/floor/shuttle/black, -/area/centcom/specops) -"hgT" = ( -/obj/effect/decal/fake_object{ - icon = 'icons/misc/beach.dmi'; - icon_state = "shell2"; - name = "shell"; - pixel_x = 6; - pixel_y = 12 - }, -/turf/simulated/floor/beach/sand{ - icon_state = "beach" - }, -/area/centcom/shared_dream) -"hhU" = ( -/obj/machinery/optable, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/holding) -"hhX" = ( -/obj/structure/bed/stool/chair/shuttle, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 22 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"him" = ( -/obj/effect/floor_decal/corner/red/full, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"his" = ( -/obj/structure/shuttle_part/tcfl{ - icon_state = "16,5" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/legion) -"hiO" = ( -/obj/structure/reagent_dispensers/lube, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"hjw" = ( -/turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" - }, -/area/centcom/bar) -"hjO" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "16,7" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"hjW" = ( -/obj/item/stack/material/marble{ - amount = 30 - }, -/obj/item/stack/material/wood{ - amount = 50 - }, -/obj/item/stack/material/plastic{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/structure/closet{ - name = "materials" - }, -/obj/item/device/paint_sprayer, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"hkb" = ( -/obj/structure/shuttle_part/burglar{ - icon_state = "11,2" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/burglar) -"hky" = ( -/obj/item/clothing/gloves/yellow, -/obj/item/storage/toolbox/electrical, -/obj/structure/table/rack, -/obj/item/tape_roll, -/obj/item/tape_roll, -/obj/item/clothing/head/welding, -/obj/item/storage/belt/utility/full, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"hkT" = ( -/obj/item/reagent_containers/glass/bucket{ - pixel_x = -9; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/vomit, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"hlL" = ( -/obj/structure/table/rack{ - pixel_y = -3 - }, -/obj/item/tank/emergency_oxygen/double{ - pixel_y = 3 - }, -/obj/item/tank/emergency_oxygen/double{ - pixel_y = 3 - }, -/obj/item/tank/emergency_oxygen/double{ - pixel_y = 3 - }, -/obj/item/tank/emergency_oxygen/double{ - pixel_y = 3 - }, -/obj/item/tank/emergency_oxygen/double{ - pixel_y = 3 - }, -/obj/item/tank/emergency_oxygen/double{ - pixel_y = 3 - }, -/obj/item/clothing/shoes/magboots, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/distress_prep) -"hmc" = ( -/obj/machinery/door/blast/odin{ - _wifi_id = "odin_arrivals_lockdown"; - density = 0; - icon_state = "pdoor0"; - id = "CentComArrivalsAftExt"; - name = "Security Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor, -/area/centcom/checkpoint/aft) -"hmd" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/distress_prep) -"hmr" = ( -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"hmF" = ( -/obj/structure/table/stone/marble, -/obj/item/reagent_containers/food/snacks/blt{ - pixel_x = 4; - pixel_y = 14 - }, -/obj/item/reagent_containers/food/snacks/blt{ - pixel_x = 3; - pixel_y = 7 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"hmN" = ( -/obj/structure/table/reinforced/wood, -/obj/item/storage/box/drinkingglasses, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"hnb" = ( -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "CCIABS" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "CCIABS" - }, -/obj/structure/window/reinforced/polarized{ - id = "CCIABS" - }, -/obj/structure/grille, -/turf/unsimulated/floor/plating, -/area/centcom/control) -"hnl" = ( -/obj/machinery/autolathe{ - desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; - hacked = 1; - name = "Unlocked Autolathe" - }, -/obj/machinery/light/small{ - dir = 4; - name = "old light fixture"; - pixel_y = -8 - }, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"hnG" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/merchant_station) -"hoa" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/centcom/shared_dream) -"hog" = ( -/obj/structure/sign/staff_only, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/bar) -"hoK" = ( -/obj/structure/window/shuttle/unique/burglar{ - icon_state = "2,1" - }, -/turf/simulated/floor/plating, -/area/shuttle/burglar) -"hoY" = ( -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"hpf" = ( -/obj/item/device/camera, -/obj/effect/floor_decal/corner/blue/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeobserve) -"hpk" = ( -/obj/effect/floor_decal/corner/lime, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"hpB" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 36; - pixel_y = 1 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 36; - pixel_y = -9 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"hqg" = ( -/turf/simulated/floor/beach/sand{ - dir = 6; - icon_state = "beach" - }, -/area/centcom/shared_dream) -"hqD" = ( -/obj/structure/cryofeed, -/turf/simulated/floor/tiled/dark, -/area/merchant_station) -"hri" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"hru" = ( -/obj/structure/table/reinforced/steel, -/obj/item/deck/cards, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cigbutt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"hrI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/shuttle/white, -/area/shuttle/escape) -"hrP" = ( -/obj/machinery/vending/coffee, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"hsr" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/item/storage/secure/safe{ - pixel_x = 32 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"hsQ" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"htp" = ( -/obj/effect/shuttle_landmark/arrival/start, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/arrival) -"huh" = ( -/obj/machinery/acting/changer, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"hum" = ( -/obj/machinery/hologram/holopad/long_range, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"huB" = ( -/obj/structure/window/shuttle/unique/burglar{ - icon_state = "3,3" - }, -/turf/simulated/floor/plating, -/area/shuttle/burglar) -"huK" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/pen{ - pixel_y = 8 - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/distress_prep) -"huN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/reinforced, -/obj/item/device/taperecorder, -/obj/item/device/megaphone/red, -/turf/unsimulated/floor{ - dir = 1; - icon_state = "tiled_preview" - }, -/area/antag/raider) -"hwB" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "11,2" - }, -/area/shuttle/mercenary) -"hwN" = ( -/obj/structure/coatrack, -/turf/simulated/floor/wood, -/area/merchant_station) -"hwV" = ( -/turf/simulated/wall/shuttle/unique/distress{ - icon_state = "0,2" - }, -/area/shuttle/distress) -"hwW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor/plating, -/area/antag/raider) -"hwY" = ( -/obj/random/pottedplant, -/obj/structure/window/basic{ - dir = 8 - }, -/turf/simulated/floor/lino/diamond, -/area/merchant_station) -"hxw" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/evac) -"hyh" = ( -/obj/structure/table/wood, -/obj/random/plushie, -/turf/simulated/floor/wood, -/area/merchant_station) -"hyn" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"hyq" = ( -/obj/structure/bed/stool/chair/padded/brown, -/turf/simulated/floor/lino/diamond, -/area/merchant_station) -"hyv" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"hyy" = ( -/obj/structure/table/reinforced/wood, -/obj/machinery/chemical_dispenser/coffee/full{ - pixel_y = 2; - spawn_cartridges = list(/obj/item/reagent_containers/chem_disp_cartridge/coffee,/obj/item/reagent_containers/chem_disp_cartridge/milk,/obj/item/reagent_containers/chem_disp_cartridge/cream,/obj/item/reagent_containers/chem_disp_cartridge/sugar) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"hyU" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "3,0" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"hAx" = ( -/obj/item/material/ashtray/bronze, -/obj/structure/table/wood, -/turf/simulated/floor/lino/diamond, -/area/merchant_station) -"hAC" = ( -/turf/simulated/floor/beach/sand{ - icon_state = "desert" - }, -/area/centcom/shared_dream) -"hAL" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"hAO" = ( -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 1; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 8; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/turf/simulated/floor/holofloor/space{ - blocks_air = 1; - density = 1; - dynamic_lighting = 1; - icon_state = "black" - }, -/area/antag/ninja) -"hAS" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"hBo" = ( -/obj/machinery/vending/cigarette/merchant{ - pixel_x = 2 - }, -/turf/simulated/floor/lino/diamond, -/area/merchant_station) -"hCk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/chair, -/turf/unsimulated/floor{ - dir = 1; - icon_state = "tiled_preview" - }, -/area/antag/raider) -"hCw" = ( -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/window/reinforced/crescent, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/circuit.dmi'; - icon_state = "bcircuit" - }, -/area/centcom/control) -"hCB" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "6,19" - }, -/area/shuttle/mercenary) -"hCF" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen/multi{ - pixel_y = 2 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"hCM" = ( -/obj/structure/shuttle_part/ccia{ - icon_state = "11,0" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/transport1) -"hCU" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/item/storage/box/zipties, -/obj/item/storage/box/zipties, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"hDo" = ( -/obj/machinery/door/airlock/centcom{ - name = "Security Checkpoint"; - req_access = list(103) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/spawning) -"hDN" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"hEu" = ( -/obj/structure/shuttle_part/transfer{ - density = 0; - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "14,17"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"hEz" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/checkpoint/aft) -"hFF" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/template_noop, -/area/template_noop) -"hFL" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/wood, -/area/merchant_station) -"hFS" = ( -/obj/structure/shuttle_part/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "1,5"; - name = "autoshuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/arrival) -"hGv" = ( -/obj/machinery/door/airlock/centcom{ - name = "Bureau Supervisor's Office"; - req_access = list(109); - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"hGA" = ( -/turf/unsimulated/wall/fakepdoor{ - dir = 1; - name = "tram blast door" - }, -/area/centcom/bar) -"hGM" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "mercworkshop"; - name = "shutter" - }, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/item/screwdriver, -/obj/machinery/door/window/brigdoor/eastright{ - req_access = list(150) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"hHP" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/turf/unsimulated/floor/plating, -/area/centcom/ferry) -"hHX" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "6,2"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"hIp" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "13,18"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"hIw" = ( -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "CCIABS" - }, -/obj/structure/window/reinforced/polarized{ - id = "CCIABS" - }, -/obj/structure/grille, -/turf/unsimulated/floor/plating, -/area/centcom/control) -"hJZ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/thunderdomeobserve, -/obj/effect/floor_decal/corner/blue/diagonal, -/obj/effect/decal/fake_object/light_source/invisible, -/obj/structure/bed/stool/chair/folding, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeobserve) -"hKs" = ( -/obj/structure/bed/stool/chair/padded/black, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"hLp" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/machinery/door/blast/odin{ - id = "CentComPort"; - name = "Security Doors" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"hLS" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/obj/structure/sign/pods{ - desc = "A direction sign which reads 'DROPPODS'."; - name = "\improper DROPPODS" - }, -/turf/unsimulated/floor/plating, -/area/antag/mercenary) -"hMb" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 4 - }, -/turf/simulated/floor/carpet, -/area/merchant_station) -"hMK" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/centcom/shared_dream) -"hML" = ( -/obj/structure/cult/tome{ - density = 0; - pixel_x = 2 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/centcom/shared_dream) -"hNt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"hNI" = ( -/obj/structure/bed/stool/chair/shuttle, -/turf/simulated/floor/shuttle/black, -/area/shuttle/distress) -"hNX" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/window/reinforced/crescent, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass, -/area/centcom/evac) -"hOa" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/turf/simulated/floor/carpet, -/area/merchant_station) -"hOe" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "8,1"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"hOj" = ( -/turf/simulated/wall/shuttle/unique/ccia{ - icon_state = "4,0" - }, -/area/shuttle/transport1) -"hOC" = ( -/obj/item/device/radio/intercom/north{ - broadcasting = 1; - frequency = 1443; - listening = 0; - name = "Spec Ops Intercom" - }, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/window/reinforced/crescent, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/circuit.dmi'; - icon_state = "bcircuit" - }, -/area/centcom/control) -"hOM" = ( -/obj/effect/decal/fake_object{ - dir = 4; - icon = 'icons/obj/doors/rapid_pdoor.dmi'; - icon_state = "pdoor0"; - name = "blast door" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"hON" = ( -/turf/simulated/wall/shuttle/unique/mercenary/small{ - icon_state = "2,9" - }, -/area/shuttle/syndicate_elite) -"hOU" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "11,24" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"hOV" = ( -/turf/unsimulated/wall/fakepdoor{ - dir = 8; - icon_state = "shutter1"; - name = "warehouse shutter" - }, -/area/antag/raider) -"hPp" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"hPD" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/light/spot{ - dir = 1; - name = "adjusted spotlight"; - pixel_x = -16 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/ferry) -"hPU" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/machinery/door/window/southright{ - dir = 4; - req_access = list(102) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"hQa" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "11,2"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"hQg" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "10,4" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/specops) -"hQm" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"hQI" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"hQM" = ( -/obj/effect/floor_decal/corner/red{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"hRp" = ( -/obj/structure/window/shuttle/unique/mercenary/small, -/turf/simulated/floor/plating, -/area/shuttle/syndicate_elite) -"hRS" = ( -/obj/structure/closet/secure_closet/custodial, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"hTi" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/distress_prep) -"hTk" = ( -/obj/structure/closet/secure_closet/kitchen_cabinet/standard{ - req_access = null - }, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"hTv" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 4; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/obj/item/storage/belt/medical{ - pixel_x = -3; - pixel_y = -11 - }, -/obj/item/reagent_containers/hypospray/cmo{ - pixel_x = -2; - pixel_y = -3 - }, -/obj/structure/table/steel, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"hUd" = ( -/obj/structure/table/reinforced, -/obj/random/tool, -/obj/random/toolbox, -/turf/unsimulated/floor/plating, -/area/centcom/spawning) -"hVx" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"hWl" = ( -/obj/structure/window/reinforced/crescent, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"hWR" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/table/reinforced, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"hWU" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/bed/stool/bar/padded/red, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"hXi" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen/fountain/black, -/turf/simulated/floor/carpet, -/area/merchant_station) -"hXk" = ( -/obj/machinery/door/airlock/hatch{ - name = "Maintenance"; - req_access = list(150); - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"hXN" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/porta_turret/crescent, -/obj/effect/floor_decal/industrial/warning/full, -/turf/unsimulated/floor, -/area/centcom/control) -"hYo" = ( -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "odin_valkyrie_stall2"; - name = "Door Bolt Control"; - pixel_x = -22; - pixel_y = 11; - specialfunctions = 4 - }, -/obj/structure/sink/kitchen{ - dir = 8; - name = "sink"; - pixel_x = 22; - pixel_y = 1 - }, -/obj/structure/toilet{ - dir = 4; - pixel_x = -6 - }, -/obj/machinery/light/small{ - dir = 4; - name = "adjusted light fixture"; - pixel_y = 10 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"hYt" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "16,6" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"hYV" = ( -/obj/structure/table/reinforced/steel, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = -5; - pixel_y = 5 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"hYX" = ( -/obj/effect/decal/fake_object{ - color = "#545c68"; - icon = 'icons/obj/railing.dmi'; - icon_state = "mcorneroverlay1"; - name = "railing" - }, -/obj/effect/floor_decal/corner/red, -/obj/effect/floor_decal/spline/fancy/wood/corner, -/turf/unsimulated/floor, -/area/centcom/evac) -"hZq" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"hZx" = ( -/obj/effect/floor_decal/corner/red, -/turf/unsimulated/floor, -/area/centcom/control) -"hZW" = ( -/obj/structure/table/glass{ - name = "reinforced glass table"; - table_reinf = "glass" - }, -/obj/effect/decal/fake_object/light_source/invisible{ - light_color = "#66ccff"; - light_power = 0.75; - light_range = 6; - name = "snow light" - }, -/obj/effect/decal/fake_object{ - desc = "A hearty apple drink, spiced just right."; - icon = 'icons/obj/drinks.dmi'; - icon_state = "ciderhot"; - name = "Hot cider"; - pixel_x = -8; - pixel_y = 10 - }, -/obj/effect/decal/fake_object{ - desc = "A cup of hot chocolate."; - icon = 'icons/obj/drinks.dmi'; - icon_state = "chocolateglass"; - name = "Hot chocolate"; - pixel_x = 6; - pixel_y = 7 - }, -/turf/simulated/floor/ice, -/area/centcom/shared_dream) -"iax" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/merchant_station) -"iaz" = ( -/obj/structure/window/shuttle/unique/mercenary/small{ - icon_state = "3,13"; - outside_window = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"ibb" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "10,0"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"ibf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ore, -/obj/machinery/light/small/emergency{ - brightness_range = 4; - dir = 1; - name = "adjusted emergency light" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"ibx" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/conveyor{ - id = "merchant_shipping" - }, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"ibD" = ( -/obj/machinery/door/airlock/hatch{ - name = "Equipment"; - req_access = list(110); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"ibE" = ( -/obj/machinery/door/airlock/hatch{ - name = "Lounge"; - req_access = null; - dir = 1 - }, -/turf/simulated/floor/wood, -/area/merchant_station) -"icc" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"icF" = ( -/obj/structure/window/shuttle/unique/mercenary/small{ - icon_state = "6,13"; - outside_window = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"icZ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/centcom/shared_dream) -"idk" = ( -/obj/structure/sign/emergency/exit{ - dir = 8; - pixel_y = 32 - }, -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"idA" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/lattice, -/obj/machinery/light/small/emergency{ - brightness_range = 5; - dir = 1; - name = "adjusted emergency light" - }, -/turf/space/dynamic, -/area/antag/raider) -"ieC" = ( -/obj/structure/flora/tree/jungle{ - icon_state = "tree2" - }, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass, -/area/centcom/shared_dream) -"ieM" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"ieU" = ( -/obj/machinery/door/airlock/glass{ - dir = 4 - }, -/obj/structure/curtain/open/bed{ - name = "curtain" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/raider) -"ifi" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"ifs" = ( -/obj/machinery/computer/security/telescreen, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"ifu" = ( -/obj/effect/decal/fake_object{ - desc = "A button."; - icon = 'icons/obj/turbolift.dmi'; - icon_state = "button"; - name = "elevator button"; - pixel_y = 4 - }, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/bar) -"ifH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/merchant_station) -"ifL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/merchant_station) -"igl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"igo" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/bed/stool/chair, -/obj/structure/sign/flag/nanotrasen{ - pixel_y = 30 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"igD" = ( -/obj/structure/table/reinforced/wood, -/obj/item/deck/cards, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"igQ" = ( -/obj/structure/bed/stool/chair, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"igY" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "15,1" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"ihi" = ( -/obj/structure/table/rack, -/obj/item/clothing/under/color/green, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/clothing/suit/armor/vest, -/obj/item/clothing/head/helmet/swat, -/obj/item/gun/energy/laser, -/obj/effect/decal/fake_object/light_source/invisible, -/turf/simulated/floor, -/area/tdome/tdome1) -"ihj" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/machinery/vending/coffee, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"ihq" = ( -/obj/machinery/suit_cycler/syndicate{ - locked = 0 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"ihz" = ( -/obj/effect/decal/fake_object{ - desc = "A sign."; - icon = 'icons/obj/decals.dmi'; - icon_state = "deck1"; - name = "Deck 1"; - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"iiu" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"ijf" = ( -/obj/machinery/button/remote/blast_door{ - id = "CentComArrivalsCommand"; - name = "Command Blast Doors"; - pixel_x = -9; - pixel_y = 10; - req_access = list(103) - }, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/bar) -"ijz" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"ijL" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"ijY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/merchant_station) -"ikz" = ( -/obj/effect/floor_decal/spline/plain/corner/black, -/turf/unsimulated/floor, -/area/antag/mercenary) -"ikG" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor/plating, -/area/centcom/distress_prep) -"ikQ" = ( -/obj/structure/bed/stool/chair/padded/brown{ - can_buckle = 0; - dir = 1; - name = "old chair" - }, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "carpet" - }, -/area/antag/raider) -"ikW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/vending/zora{ - density = 0; - name = "Syndicate-Sponsored Zo'ra Soda"; - pixel_y = 22; - prices = list() - }, -/turf/unsimulated/floor, -/area/antag/burglar) -"imz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/merchant_station) -"imJ" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/merchant_station) -"iod" = ( -/obj/item/ammo_magazine/mc9mm{ - pixel_x = -3; - pixel_y = 16 - }, -/obj/item/ammo_magazine/mc9mm{ - pixel_x = -3; - pixel_y = 11 - }, -/obj/item/ammo_magazine/mc9mm{ - pixel_x = 5; - pixel_y = 17 - }, -/obj/item/ammo_magazine/mc9mm{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/structure/table/reinforced/steel, -/turf/unsimulated/floor, -/area/antag/burglar) -"ioi" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/reinforced, -/obj/item/device/camera, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "tiled_preview" - }, -/area/antag/raider) -"iox" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/green/full{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"ioz" = ( -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/ninja) -"ioV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/merchant_station) -"ioX" = ( -/obj/structure/shuttle_part/merchant{ - density = 0; - icon_state = "0,2" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"ipA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/blocker/steel, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"iqi" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 26 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"iqm" = ( -/obj/machinery/door/airlock/glass_centcom{ - name = "Briefing Room"; - req_access = list(103); - dir = 4 - }, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/specops) -"iqr" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "10,7"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"iqs" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"iqt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/merchant_station) -"iqu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1337; - id_tag = "legion_hangar"; - pixel_x = -28; - pixel_y = 1; - tag_door = "legion_hangar_hatch" - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"iqR" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"irn" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_dininghall) -"irV" = ( -/obj/structure/window/shuttle/unique/mercenary{ - icon_state = "9,25"; - outside_window = 1 - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"isd" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/escape) -"ise" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/loot{ - desc = "The old dusty labels on this crate indicate that it was supposed to be shipped long ago."; - name = "forgotten shipment" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"ism" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"isr" = ( -/turf/simulated/wall/shuttle/unique/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "4,6"; - name = "autoshuttle" - }, -/area/shuttle/arrival) -"isH" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/shuttle/black, -/area/centcom/specops) -"itF" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"iua" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/control) -"iuk" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "0,4" - }, -/area/shuttle/legion) -"iuz" = ( -/turf/simulated/wall/shuttle/unique/cargo{ - icon_state = "5,2" - }, -/area/supply/dock) -"iuH" = ( -/turf/unsimulated/floor{ - dir = 8; - icon_state = "ramptop" - }, -/area/antag/ninja) -"iuQ" = ( -/obj/structure/sign/directions/dock, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/holding) -"ivy" = ( -/obj/structure/table/rack, -/obj/item/ammo_magazine/gauss{ - pixel_x = -10; - pixel_y = 4 - }, -/obj/item/ammo_magazine/gauss{ - pixel_x = -10; - pixel_y = 4 - }, -/obj/item/ammo_magazine/gauss{ - pixel_x = -10; - pixel_y = 4 - }, -/obj/item/ammo_magazine/gauss{ - pixel_x = -10; - pixel_y = 4 - }, -/obj/item/ammo_magazine/gauss{ - pixel_x = -10; - pixel_y = 4 - }, -/obj/item/ammo_magazine/gauss{ - pixel_x = -10; - pixel_y = 4 - }, -/obj/item/ammo_magazine/gauss{ - pixel_x = -10; - pixel_y = 4 - }, -/obj/item/ammo_magazine/gauss{ - pixel_x = -10; - pixel_y = 4 - }, -/obj/item/ammo_magazine/gauss{ - pixel_x = -10; - pixel_y = 4 - }, -/obj/item/ammo_magazine/gauss{ - pixel_x = -10; - pixel_y = 4 - }, -/obj/item/ammo_magazine/gauss{ - pixel_x = -10; - pixel_y = 4 - }, -/obj/item/ammo_magazine/gauss{ - pixel_x = -10; - pixel_y = 4 - }, -/obj/item/ammo_magazine/gauss/emp{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/ammo_magazine/gauss/emp{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/ammo_magazine/gauss/emp{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/ammo_magazine/gauss/emp{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/ammo_magazine/gauss/emp{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/ammo_magazine/gauss/emp{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"ivI" = ( -/obj/machinery/door/window/southleft{ - req_access = list(105) - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"ivL" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"iwa" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "10,3"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"iwr" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/ferry) -"iwS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/decal/fake_object{ - desc = "A conveyor belt."; - dir = 1; - icon = 'icons/obj/recycling.dmi'; - icon_state = "conveyor0"; - name = "conveyor belt"; - pixel_x = 1 - }, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"ixg" = ( -/obj/structure/bed/stool/chair/padded/black, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"ixW" = ( -/obj/machinery/vending/snack, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"iyf" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/unsimulated/floor, -/area/centcom/ferry) -"iyr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - dir = 6; - icon_state = "carpet" - }, -/area/antag/raider) -"izb" = ( -/obj/structure/closet/secure_closet/merchant, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"izf" = ( -/obj/effect/ghostspawpoint{ - identifier = "DeathERTSpawn"; - name = "igs - DeathERT" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"izi" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "14,2" - }, -/area/shuttle/mercenary) -"izl" = ( -/obj/structure/window/shuttle/unique/burglar{ - icon_state = "0,2" - }, -/turf/simulated/floor/plating, -/area/shuttle/burglar) -"izx" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/machinery/porta_turret/legion, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"izI" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"iAl" = ( -/obj/structure/table/rack, -/obj/item/clothing/under/color/green, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/melee/energy/axe, -/turf/simulated/floor, -/area/tdome/tdome1) -"iAt" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "12,4"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"iAG" = ( -/turf/simulated/wall/shuttle/unique/distress{ - icon_state = "10,2" - }, -/area/shuttle/distress) -"iAO" = ( -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/spawning) -"iAP" = ( -/turf/simulated/floor/snow, -/area/centcom/shared_dream) -"iAR" = ( -/obj/item/reagent_containers/glass/bucket{ - pixel_x = -9; - pixel_y = 7 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"iAV" = ( -/obj/machinery/mech_recharger, -/obj/structure/sign/directions/all{ - dir = 1; - pixel_y = 24 - }, -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red, -/turf/unsimulated/floor, -/area/antag/mercenary) -"iBu" = ( -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/grass, -/area/centcom/spawning) -"iCJ" = ( -/obj/structure/shuttle_part/distress{ - icon_state = "1,1"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/distress) -"iCW" = ( -/obj/machinery/vending/cola{ - pixel_x = 5 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"iDT" = ( -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass, -/area/centcom/spawning) -"iEv" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/table/standard, -/obj/item/reagent_containers/blood/OMinus{ - pixel_x = -8; - pixel_y = 1 - }, -/obj/item/reagent_containers/glass/bottle/peridaxon{ - pixel_x = 6 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/holding) -"iEB" = ( -/obj/item/ammo_magazine/d762{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/ammo_magazine/d762{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/structure/table/wood{ - table_reinf = "wood" - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/antag/raider) -"iED" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/structure/noticeboard{ - pixel_y = 31 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"iFM" = ( -/turf/unsimulated/wall/fakeairlock{ - icon_state = "door_locked"; - name = "Living Quarters" - }, -/area/antag/raider) -"iGi" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"iGC" = ( -/obj/structure/table/standard, -/obj/machinery/vending/wallmed1{ - pixel_x = 27; - pixel_y = -1; - req_access = null - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/item/reagent_containers/glass/bottle/bicaridine{ - pixel_x = -8 - }, -/obj/item/reagent_containers/glass/bottle/dermaline{ - pixel_x = 9 - }, -/obj/item/reagent_containers/glass/bottle/inaprovaline, -/obj/item/reagent_containers/glass/bottle/thetamycin{ - pixel_x = 9; - pixel_y = 7 - }, -/obj/item/reagent_containers/glass/bottle/antitoxin{ - pixel_y = 7 - }, -/obj/item/reagent_containers/glass/bottle/dexalin_plus{ - pixel_x = 9; - pixel_y = 18 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/holding) -"iGD" = ( -/turf/simulated/wall/shuttle/unique/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "12,1"; - name = "autoshuttle" - }, -/area/shuttle/arrival) -"iGO" = ( -/turf/unsimulated/floor, -/area/antag/loner) -"iGY" = ( -/obj/item/modular_computer/console/preset/merchant, -/turf/simulated/floor/wood, -/area/merchant_station/warehouse) -"iHN" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/recharger{ - pixel_y = 3 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"iIg" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"iIo" = ( -/obj/item/stack/rods, -/obj/effect/decal/fake_object{ - dir = 4; - icon = 'icons/obj/recycling.dmi'; - icon_state = "conveyor0"; - name = "conveyor" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"iIp" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "CentComArrivalsForeInt"; - name = "Interior Checkpoint"; - pixel_x = -6; - pixel_y = -1; - req_access = list(103) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/checkpoint/fore) -"iJc" = ( -/obj/structure/bed/stool/padded/red, -/turf/simulated/floor/wood, -/area/merchant_station/warehouse) -"iJr" = ( -/obj/structure/table/reinforced, -/obj/machinery/newscaster/north{ - name = "hacked newscaster" - }, -/obj/item/folder{ - pixel_y = 2 - }, -/obj/item/device/megaphone/red, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"iJA" = ( -/turf/simulated/floor/wood, -/area/merchant_station/warehouse) -"iJJ" = ( -/obj/effect/step_trigger/thrower/shuttle/west, -/turf/unsimulated/mineral/asteroid, -/area/template_noop) -"iKk" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8; - name = "adjusted light fixture"; - pixel_y = 10 - }, -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "odin_arrivals_stall2"; - name = "Door Bolt Control"; - pixel_x = -22; - pixel_y = 1; - specialfunctions = 4 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"iKK" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/effect/decal/fake_object/light_source/invisible, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/ninja) -"iKN" = ( -/obj/structure/table/reinforced/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"iLs" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"iLT" = ( -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - id = "odinasshutters"; - name = "Blast Shutters"; - opacity = 0 - }, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/spawning) -"iLZ" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "0,4" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"iMy" = ( -/obj/structure/table/reinforced/steel, -/obj/item/spacecash/c1000{ - pixel_x = 2 - }, -/obj/item/spacecash/c1000{ - pixel_x = 2 - }, -/obj/item/spacecash/c1000{ - pixel_x = 2 - }, -/obj/item/spacecash/c1000{ - pixel_x = 2; - pixel_y = 9 - }, -/obj/item/spacecash/c1000{ - pixel_x = 2; - pixel_y = 9 - }, -/obj/item/spacecash/c1000{ - pixel_x = 2; - pixel_y = 9 - }, -/turf/simulated/floor/wood, -/area/merchant_station/warehouse) -"iNh" = ( -/obj/structure/table/reinforced/steel, -/obj/item/device/price_scanner, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/wood, -/area/merchant_station/warehouse) -"iNy" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen{ - pixel_y = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 20 - }, -/obj/item/device/taperecorder, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"iOh" = ( -/obj/structure/sign/greencross, -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "addon8" - }, -/area/shuttle/mercenary) -"iOr" = ( -/obj/structure/shuttle_part/mercenary, -/turf/space/dynamic, -/area/shuttle/mercenary) -"iOA" = ( -/turf/simulated/wall/shuttle/unique/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "2,4"; - name = "autoshuttle" - }, -/area/shuttle/arrival) -"iOQ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/bed, -/obj/item/bedsheet/syndie, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/burglar) -"iOS" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/recharger{ - pixel_x = 1; - pixel_y = 2 - }, -/turf/simulated/floor/wood, -/area/merchant_station/warehouse) -"iPr" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/table/steel, -/obj/effect/floor_decal/corner/red/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"iPs" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"iPK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/fake_object{ - density = 1; - desc = "A heavy armored vehicle. Commonly produced by the Sol Alliance and fielded by the forces of the Tau Ceti Foreign Legion. This one has suffered too much damage to be operational."; - icon = 'icons/mecha/mecha_114x59.dmi'; - icon_state = "jotun-broken"; - name = "Jotun"; - pixel_x = -42; - pixel_y = -10 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"iQG" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"iRr" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/structure/table/rack, -/obj/item/clothing/suit/storage/toggle/bssb{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/item/clothing/suit/storage/toggle/bssb{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/item/clothing/suit/storage/toggle/bssb{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/item/clothing/suit/storage/toggle/bssb/armor{ - pixel_x = -6; - pixel_y = -3 - }, -/obj/item/clothing/suit/storage/toggle/bssb/armor{ - pixel_x = -6; - pixel_y = -3 - }, -/obj/item/clothing/suit/storage/toggle/bssb/armor{ - pixel_x = -6; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/ballistic{ - pixel_x = -7; - pixel_y = 8 - }, -/obj/item/clothing/head/helmet/ballistic{ - pixel_x = -7; - pixel_y = 8 - }, -/obj/item/clothing/head/helmet/ballistic{ - pixel_x = -7; - pixel_y = 8 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"iRS" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"iRX" = ( -/obj/structure/table/rack, -/obj/item/storage/box/smokebombs{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/box/flashbangs, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"iSi" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/pickaxe/drill{ - pixel_y = 6 - }, -/obj/item/pickaxe/jackhammer{ - pixel_y = -6 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"iSl" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/large_stock_marker, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"iSL" = ( -/obj/structure/table/reinforced/wood, -/obj/item/reagent_containers/glass/rag{ - pixel_y = 3 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"iTm" = ( -/obj/effect/floor_decal/corner/paleblue, -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"iUA" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"iUG" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"iVa" = ( -/obj/structure/table/rack, -/obj/item/storage/belt/utility/full{ - pixel_y = 8 - }, -/obj/item/storage/belt/utility/full{ - pixel_y = 2 - }, -/obj/item/storage/belt/utility/full{ - pixel_y = -4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"iVf" = ( -/obj/vehicle/bike/speeder, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1337; - id_tag = "legion_shuttle_aft_pump"; - name = "Dropship Air Vent" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"iVT" = ( -/obj/machinery/door/airlock/centcom{ - name = "Special Ops."; - req_access = list(103) - }, -/obj/machinery/door/blast/odin{ - dir = 4; - id = "specops_starboard"; - name = "Special Ops." - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"iWg" = ( -/obj/machinery/iv_drip, -/obj/effect/floor_decal/industrial/outline/red, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"iXl" = ( -/obj/machinery/door/window/northright{ - health = 2000; - maxhealth = 2000; - req_access = list(101) - }, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"iXt" = ( -/obj/machinery/light/small{ - brightness_power = 0.5; - dir = 8; - name = "adjusted light fixture" - }, -/turf/unsimulated/floor/plating, -/area/centcom/holding) -"iXx" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/evac) -"iXy" = ( -/obj/structure/bed/stool/chair/shuttle, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 21 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 31 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/distress) -"iXX" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"iYk" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"iYn" = ( -/obj/machinery/recharge_station, -/turf/unsimulated/floor, -/area/antag/loner) -"iYu" = ( -/obj/machinery/merchant_pad, -/turf/simulated/floor/wood, -/area/merchant_station/warehouse) -"iZt" = ( -/obj/effect/shuttle_landmark/legion/interim, -/turf/space/transit/bluespace/west, -/area/template_noop) -"iZP" = ( -/obj/machinery/vending/wallmed1{ - name = "Emergency NanoMed"; - pixel_x = -25; - req_access = list(111) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"iZQ" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "merchant_shipping"; - pixel_y = -4 - }, -/turf/simulated/floor/wood, -/area/merchant_station/warehouse) -"iZW" = ( -/turf/simulated/wall/shuttle/unique/mercenary/small{ - icon_state = "5,9" - }, -/area/shuttle/syndicate_elite) -"jai" = ( -/turf/unsimulated/floor{ - dir = 6; - icon = 'icons/turf/shuttle.dmi'; - icon_state = "advanced_plating_alt" - }, -/area/antag/ninja) -"jaZ" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"jbp" = ( -/obj/machinery/vending/snack{ - name = "hacked Getmore Chocolate Corp"; - prices = list(); - random_itemcount = 0 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/ninja) -"jbu" = ( -/obj/structure/shuttle_part/burglar{ - icon_state = "5,4"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/burglar) -"jbw" = ( -/obj/structure/table/rack, -/obj/item/clothing/under/color/red, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/clothing/suit/armor/tdome/red, -/obj/item/clothing/head/helmet/thunderdome, -/obj/item/melee/baton/loaded, -/obj/item/melee/energy/sword/red, -/obj/effect/decal/fake_object/light_source/invisible, -/turf/simulated/floor, -/area/tdome/tdome2) -"jbI" = ( -/obj/vehicle/droppod/syndie{ - connected_blastdoor = "merc_droppod_4" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/antag/mercenary) -"jcc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor/plating, -/area/antag/burglar) -"jcm" = ( -/obj/machinery/photocopier, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"jcv" = ( -/obj/machinery/door/blast/odin{ - dir = 2; - icon_state = "shutter1"; - icon_state_closed = "shutter1"; - icon_state_closing = "shutterc1"; - icon_state_open = "shutter0"; - icon_state_opening = "shutterc0"; - id = "CentComKitchenShutters"; - name = "Kitchen Shutter" - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"jcG" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"jdm" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "0,8" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"jdr" = ( -/obj/structure/table/standard, -/obj/item/flame/lighter/zippo, -/obj/item/storage/box/fancy/cigarettes, -/obj/effect/floor_decal/corner/blue/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeobserve) -"jdB" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "1,6"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"jdE" = ( -/obj/machinery/computer/shuttle_control/multi/distress, -/turf/simulated/floor/shuttle/black, -/area/shuttle/distress) -"jdW" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "1,8" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"jeJ" = ( -/obj/machinery/door/airlock/centcom{ - name = "Superheavy Support Garage"; - req_access = list(103,111) - }, -/obj/machinery/door/blast/odin{ - dir = 2; - id = "tcfl_jotun"; - name = "Superheavy Support Garage" - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"jfU" = ( -/obj/structure/table/reinforced, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare{ - pixel_y = 6 - }, -/obj/item/device/flashlight/flare{ - pixel_y = 6 - }, -/obj/item/device/flashlight/flare{ - pixel_y = 6 - }, -/obj/item/crowbar, -/obj/item/crowbar, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"jgX" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "2,8" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"jhe" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "3,8" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"jhg" = ( -/obj/structure/shuttle_part/distress{ - icon_state = "7,4"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/distress) -"jhr" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "4,8" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"jhw" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "FIB Sidearm"; - req_access = list(109) - }, -/obj/item/ammo_magazine/c45m/rubber, -/obj/item/ammo_magazine/c45m/rubber, -/obj/item/ammo_magazine/c45m/rubber, -/obj/item/ammo_magazine/c45m, -/obj/item/ammo_magazine/c45m, -/obj/item/ammo_magazine/c45m, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/item/ammo_magazine/mc9mmt, -/obj/item/ammo_magazine/mc9mmt, -/obj/item/ammo_magazine/mc9mmt, -/obj/item/ammo_magazine/mc9mmt, -/obj/item/gun/projectile/automatic/wt550/lethal, -/obj/item/gun/projectile/automatic/wt550/lethal, -/obj/item/ammo_magazine/mc9mmt, -/obj/item/ammo_magazine/mc9mmt, -/obj/item/gun/projectile/automatic/wt550/lethal, -/obj/item/gun/projectile/sec, -/obj/item/gun/projectile/sec, -/obj/item/gun/projectile/sec, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"jhx" = ( -/obj/structure/computerframe, -/turf/simulated/floor/shuttle/black, -/area/centcom/specops) -"jhP" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "addon5" - }, -/area/shuttle/mercenary) -"jhQ" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "5,8" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"jja" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/structure/railing/mapped{ - name = "adjusted railing" - }, -/obj/effect/decal/fake_object{ - color = "#ff0000"; - icon = 'icons/obj/power_cond_white.dmi'; - icon_state = "4-8"; - name = "cable" - }, -/obj/effect/decal/fake_object{ - color = "#0000ff"; - dir = 4; - icon = 'icons/atmos/pipes.dmi'; - icon_state = "intact-supply"; - name = "pipe" - }, -/obj/effect/decal/fake_object{ - color = "#ff0000"; - dir = 4; - icon = 'icons/atmos/pipes.dmi'; - icon_state = "intact-scrubbers"; - name = "pipe" - }, -/obj/structure/lattice/catwalk/indoor, -/turf/unsimulated/floor/plating, -/area/centcom/checkpoint/fore) -"jlx" = ( -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/black, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"jnA" = ( -/turf/simulated/wall/shuttle/unique/mercenary/small, -/area/shuttle/syndicate_elite) -"jok" = ( -/obj/machinery/status_display/arrivals_display, -/turf/simulated/wall/shuttle/unique/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "4,6"; - name = "autoshuttle" - }, -/area/shuttle/arrival) -"joo" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "16,9" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"joC" = ( -/obj/machinery/door/window{ - name = "AI Core Door"; - req_access = list(109) - }, -/obj/effect/floor_decal/spline/plain/black, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/circuit.dmi'; - icon_state = "bcircuit" - }, -/area/centcom/control) -"joU" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "ramptop"; - name = "staircase" - }, -/area/centcom/spawning) -"jpq" = ( -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"jpD" = ( -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/lattice, -/turf/space/dynamic, -/area/antag/raider) -"jpG" = ( -/obj/machinery/door/airlock/centcom{ - name = "Administrative Wing"; - req_access = list(101) - }, -/turf/unsimulated/floor, -/area/centcom/control) -"jqa" = ( -/turf/unsimulated/wall/fakeairlock{ - icon = 'icons/obj/doors/Doorext.dmi'; - icon_state = "door_locked"; - name = "Service Airlock" - }, -/area/centcom/ferry) -"jre" = ( -/obj/machinery/computer/pod{ - id = "thunderdomehea"; - name = "Thunderdome Heavy Supply" - }, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"jrk" = ( -/obj/effect/decal/fake_object{ - density = 1; - desc = "Locked during work hours due to safety concerns. Particularly pirate ones."; - icon = 'icons/obj/doors/Doorglass.dmi'; - icon_state = "door_locked"; - name = "Upper Levels Access" - }, -/turf/simulated/floor/tiled, -/area/merchant_station) -"jrq" = ( -/obj/effect/floor_decal/spline/plain/black, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/ferry) -"jrH" = ( -/obj/machinery/computer/message_monitor, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"jsg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/window/reinforced/crescent, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"jsh" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "burglar_hideout_hatch"; - locked = 1; - name = "Hangar Access" - }, -/obj/machinery/door/blast/odin{ - dir = 2; - id = "burglar_hangar"; - name = "Hangar Access" - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"jtT" = ( -/obj/machinery/door/airlock/centcom{ - name = "Red Backstage"; - req_access = list(102) - }, -/turf/unsimulated/floor, -/area/tdome/tdomeadmin) -"jug" = ( -/turf/unsimulated/floor{ - dir = 4; - icon_state = "ramptop" - }, -/area/antag/ninja) -"juP" = ( -/obj/random/pottedplant{ - anchored = 1; - pixel_y = 18 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"jvw" = ( -/obj/structure/table/reinforced/wood, -/obj/machinery/door/blast/odin{ - dir = 2; - icon_state = "shutter1"; - icon_state_closed = "shutter1"; - icon_state_closing = "shutterc1"; - icon_state_open = "shutter0"; - icon_state_opening = "shutterc0"; - id = "CentComBarShutters"; - name = "Bar Shutter" - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"jvz" = ( -/obj/machinery/vending/coffee/free{ - pixel_x = 2 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/ferry) -"jvF" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/spawning) -"jvO" = ( -/obj/machinery/light/small/emergency, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/closet/emcloset/offworlder, -/turf/unsimulated/floor, -/area/antag/burglar) -"jvU" = ( -/turf/simulated/wall/shuttle/unique/mercenary/small{ - icon_state = "2,10" - }, -/area/shuttle/syndicate_elite) -"jwX" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "7,5"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"jxk" = ( -/obj/effect/floor_decal/corner/paleblue, -/obj/effect/floor_decal/spline/fancy/wood/corner, -/obj/effect/decal/fake_object{ - color = "#545c68"; - icon = 'icons/obj/railing.dmi'; - icon_state = "mcorneroverlay1"; - name = "railing" - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"jxr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/telecomms/allinone, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"jxO" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "12,1" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"jyc" = ( -/obj/structure/closet/walllocker/firecloset{ - pixel_y = 30 - }, -/obj/structure/bed/stool/chair/shuttle, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/transport1) -"jzw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"jzD" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/reinforced/steel, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"jAm" = ( -/obj/structure/table/reinforced/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/machinery/button/switch/windowtint{ - id = "CCIABS"; - pixel_x = 5 - }, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"jAK" = ( -/obj/machinery/door/airlock/centcom{ - name = "Valkyrie's Rest"; - req_access = list(19) - }, -/obj/machinery/door/blast/odin{ - _wifi_id = "odin_arrivals_lockdown"; - density = 0; - icon_state = "pdoor0"; - id = "CentComArrivalsCommand"; - name = "Security Doors"; - opacity = 0 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"jAP" = ( -/obj/structure/flora/tree/jungle{ - icon_state = "tree5" - }, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/grass, -/area/centcom/shared_dream) -"jBi" = ( -/obj/structure/sign/flag/nanotrasen/large/north, -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"jBl" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"jBt" = ( -/obj/effect/decal/fake_object{ - desc = "It's used to monitor rooms."; - icon = 'icons/obj/monitors.dmi'; - icon_state = "camera"; - name = "surveillance camera" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/specops) -"jBI" = ( -/obj/structure/sign/electricshock, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/legion) -"jCl" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "6,8" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"jCJ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_dininghall) -"jCO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = -9; - pixel_y = 7 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"jCR" = ( -/obj/machinery/door/airlock/engineering{ - name = "Aft Thrusters Access - Deck 1"; - req_access = null - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"jCS" = ( -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/turf/simulated/floor/holofloor/space{ - blocks_air = 1; - density = 1; - dynamic_lighting = 1; - icon_state = "black" - }, -/area/antag/ninja) -"jDe" = ( -/obj/structure/closet/walllocker/emerglocker/north{ - pixel_x = -26; - pixel_y = -3 - }, -/obj/structure/closet/crate/secure/gear{ - name = "secure crate"; - req_access = list(150) - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/burglar) -"jDi" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"jDI" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/circuit.dmi'; - icon_state = "bcircuit" - }, -/area/centcom/control) -"jEd" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "7,8" - }, -/turf/space{ - dynamic_lighting = 1 - }, -/area/shuttle/merchant) -"jEg" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"jEA" = ( -/obj/effect/floor_decal/corner/paleblue, -/turf/unsimulated/floor, -/area/centcom/holding) -"jEI" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "8,8" - }, -/turf/space{ - dynamic_lighting = 1 - }, -/area/shuttle/merchant) -"jEJ" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "9,8" - }, -/turf/space{ - dynamic_lighting = 1 - }, -/area/shuttle/merchant) -"jES" = ( -/obj/vehicle/droppod/syndie{ - connected_blastdoor = "merc_droppod_1" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/antag/mercenary) -"jFk" = ( -/obj/structure/closet/emcloset/offworlder, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"jFq" = ( -/obj/structure/closet/gimmick{ - name = "emergency response team wardrobe" - }, -/obj/item/clothing/under/syndicate/combat, -/obj/item/clothing/under/ert, -/obj/item/clothing/head/beret/centcom/officer, -/obj/item/storage/backpack/ert/commander, -/obj/item/clothing/suit/armor/vest/ert/command, -/obj/item/clothing/head/helmet/ert/command, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"jGf" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "10,8" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"jGo" = ( -/obj/structure/shuttle_part/merchant{ - density = 0; - icon_state = "11,8" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"jGr" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"jGw" = ( -/obj/structure/shuttle_part/merchant{ - density = 0; - icon_state = "12,8" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"jGV" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"jIw" = ( -/obj/structure/shuttle_part/merchant{ - density = 0; - icon_state = "13,8" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"jII" = ( -/obj/structure/shuttle_part/merchant{ - density = 0; - icon_state = "14,8" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"jJe" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"jJg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - name = "adjusted light fixture"; - pixel_y = 16; - icon_state = "tube_empty" - }, -/obj/effect/decal/fake_object{ - desc = "A conveyor belt."; - dir = 1; - icon = 'icons/obj/recycling.dmi'; - icon_state = "conveyor0"; - name = "conveyor belt"; - pixel_x = 1 - }, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"jKL" = ( -/obj/structure/window/shuttle/unique/ccia{ - icon_state = "3,3" - }, -/turf/simulated/floor/plating, -/area/shuttle/transport1) -"jLm" = ( -/obj/effect/floor_decal/corner/grey{ - dir = 5 - }, -/obj/effect/floor_decal/sign/b, -/turf/unsimulated/floor, -/area/centcom/control) -"jMb" = ( -/obj/effect/step_trigger/thrower/shuttle/west, -/turf/space/transit/bluespace/west, -/area/template_noop) -"jMg" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "4,0"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"jMp" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"jOt" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "legion_shuttle_aft_exterior"; - locked = 1; - name = "Dropship External Airlock"; - req_access = list(111); - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1337; - master_tag = "legion_shuttle_aft_airlock"; - name = "exterior access button"; - pixel_y = -30; - req_access = list(111) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"jON" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "4,0"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"jOW" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket{ - amount_per_transfer_from_this = 50 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"jPQ" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"jPV" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "6,1" - }, -/turf/unsimulated/floor/plating, -/area/supply/dock) -"jQJ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/bed/stool/bar/padded/red, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"jRj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"jRx" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor/westright{ - dir = 1; - name = "checkpoint desk"; - req_access = list(101) - }, -/turf/unsimulated/floor, -/area/centcom/ferry) -"jSa" = ( -/turf/simulated/wall/shuttle/unique/ccia{ - icon_state = "4,4" - }, -/area/shuttle/transport1) -"jSp" = ( -/obj/structure/flora/ausbushes/sunnybush, -/turf/simulated/floor/grass, -/area/centcom/shared_dream) -"jSH" = ( -/obj/machinery/computer/robotics, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/control) -"jSS" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 6; - id = "merchant_shipping"; - reversed = 1 - }, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"jSU" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "3,15" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"jTI" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "merchant_shipping" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"jTO" = ( -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/specops) -"jUG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "merchant_shipping" - }, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"jVm" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor/plating, -/area/centcom/suppy) -"jVn" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"jVH" = ( -/obj/structure/railing/mapped, -/turf/unsimulated/floor{ - dir = 4; - icon_state = "ramptop" - }, -/area/centcom/holding) -"jVT" = ( -/obj/effect/step_trigger/thrower/shuttle/west, -/turf/template_noop, -/area/template_noop) -"jWn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/conveyor{ - dir = 9; - id = "merchant_shipping"; - name = "testbelt" - }, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"jWI" = ( -/obj/structure/sign/directions/mndl{ - dir = 4; - pixel_y = -8 - }, -/obj/structure/sign/directions/civ{ - dir = 1; - pixel_x = 3; - pixel_y = 8 - }, -/obj/structure/sign/directions/tram{ - dir = 1; - pixel_x = 1 - }, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/holding) -"jXb" = ( -/obj/effect/floor_decal/spline/plain/corner/black{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"jXF" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "0,7" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"jXL" = ( -/obj/structure/table/rack, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/item/clothing/mask/balaclava/grey{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/clothing/mask/balaclava/grey{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/clothing/mask/balaclava/grey{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/clothing/mask/balaclava/grey{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/clothing/mask/balaclava{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/clothing/mask/balaclava{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/clothing/mask/balaclava{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/clothing/mask/balaclava{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/clothing/mask/balaclava/green{ - pixel_x = -6; - pixel_y = -5 - }, -/obj/item/clothing/mask/balaclava/green{ - pixel_x = -6; - pixel_y = -5 - }, -/obj/item/clothing/mask/balaclava/green{ - pixel_x = -6; - pixel_y = -5 - }, -/obj/item/clothing/mask/balaclava/green{ - pixel_x = -6; - pixel_y = -5 - }, -/obj/item/clothing/mask/balaclava/white{ - pixel_x = 6; - pixel_y = -5 - }, -/obj/item/clothing/mask/balaclava/white{ - pixel_x = 6; - pixel_y = -5 - }, -/obj/item/clothing/mask/balaclava/white{ - pixel_x = 6; - pixel_y = -5 - }, -/obj/item/clothing/mask/balaclava/white{ - pixel_x = 6; - pixel_y = -5 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"jYZ" = ( -/turf/simulated/floor/beach/sand{ - icon_state = "seashallow" - }, -/area/centcom/shared_dream) -"jZc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/ninja) -"jZq" = ( -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/window/reinforced/crescent, -/obj/effect/floor_decal/sign/b, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"jZO" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "1,7" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"kak" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1332; - id_tag = "raider_east_vent" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1332; - id_tag = "raider_east_control"; - pixel_x = -24; - tag_airpump = "raider_east_vent"; - tag_chamber_sensor = "raider_east_sensor"; - tag_exterior_door = "raider_northeast_lock"; - tag_interior_door = "raider_southeast_lock" - }, -/obj/vehicle/bike{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"kaw" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"kaz" = ( -/obj/structure/bed, -/obj/item/bedsheet/black, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"kaO" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/structure/table/reinforced/steel, -/obj/structure/closet/crate/freezer/rations{ - pixel_y = -4; - tablestatus = -1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/syndicate_elite) -"kbh" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"kbi" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "2,7" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"kbl" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "14,0"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"kbw" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Emergency Room" - }, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"kbz" = ( -/obj/machinery/door/window/brigdoor/westright{ - name = "cockpit"; - req_access = list(111) - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1337; - id_tag = "legion_shuttle"; - name = "Legion dropship hatch controller"; - pixel_x = 9; - pixel_y = 32; - tag_door = "legion_shuttle_hatch" - }, -/obj/structure/closet/walllocker/emerglocker/south{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 8 - }, -/area/shuttle/legion) -"kbT" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/status_display/arrivals_display{ - pixel_x = 16; - pixel_y = 29 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"kci" = ( -/turf/simulated/floor/shuttle/black, -/area/shuttle/syndicate_elite) -"kdm" = ( -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass, -/area/centcom/spawning) -"kdz" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "14,1"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"kdV" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "3,7" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"ker" = ( -/obj/machinery/status_display/arrivals_display, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/spawning) -"keA" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "4,7" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"keE" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion/hangar5) -"kff" = ( -/obj/structure/table/reinforced, -/obj/item/modular_computer/handheld/pda/command/captain, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/control) -"kfD" = ( -/obj/structure/table/reinforced/steel, -/obj/item/storage/belt/utility/very_full{ - pixel_y = 8 - }, -/obj/item/storage/belt/utility/very_full{ - pixel_y = 13 - }, -/obj/item/clothing/glasses/welding/superior{ - pixel_y = 6 - }, -/obj/item/clothing/glasses/welding/superior, -/obj/item/melee/telebaton{ - pixel_x = 1; - pixel_y = 19 - }, -/obj/item/melee/telebaton{ - pixel_x = 7; - pixel_y = 19 - }, -/turf/unsimulated/floor, -/area/antag/burglar) -"kfW" = ( -/obj/effect/shuttle_landmark/emergency/interim, -/turf/space/transit/bluespace/south, -/area/template_noop) -"kgc" = ( -/obj/structure/sign/vacuum, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/specops) -"kge" = ( -/obj/machinery/door/airlock/hatch{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "distress_shuttle_hatch_aft"; - locked = 1; - name = "Aft Shuttle Hatch"; - req_access = list(112); - dir = 1 - }, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id = "distress_blast_aft"; - name = "Blast Door" - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "distress_blast_aft"; - name = "Blast Door"; - pixel_x = -22; - req_access = list(112) - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/distress) -"kgi" = ( -/obj/structure/table/stone/marble, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"kgq" = ( -/obj/structure/shuttle_part/ccia{ - icon_state = "0,3" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/transport1) -"kgS" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/item/clothing/accessory/storage/bandolier, -/obj/item/gun/projectile/shotgun/pump/combat{ - pixel_y = 1 - }, -/obj/structure/table/rack, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"khe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/item/clothing/head/helmet/tank/legion{ - pixel_y = 8 - }, -/obj/item/clothing/head/helmet/tank/legion, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"khA" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "thunderdomeaxe"; - name = "Axe Supply" - }, -/turf/simulated/floor, -/area/tdome/tdome2) -"khB" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "5,7" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"khS" = ( -/obj/machinery/autolathe{ - desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; - hacked = 1; - name = "Unlocked Autolathe" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"kiw" = ( -/turf/simulated/floor/beach/sand{ - icon_state = "desert3" - }, -/area/centcom/shared_dream) -"kiM" = ( -/turf/simulated/wall/shuttle/unique/ccia{ - icon_state = "10,2" - }, -/area/shuttle/transport1) -"kjl" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"kjq" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/grey{ - dir = 5 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"kjR" = ( -/obj/machinery/door/airlock/centcom{ - name = "Entertainment Wing"; - req_access = null; - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"kjZ" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/turf/simulated/floor/shuttle/black, -/area/centcom/specops) -"kkw" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "6,7" - }, -/area/shuttle/merchant) -"kkO" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/item/paper_bin{ - pixel_y = 15 - }, -/obj/item/pen{ - pixel_y = 16 - }, -/obj/item/device/hand_labeler{ - pixel_y = 2 - }, -/obj/structure/table/wood{ - table_reinf = "wood" - }, -/obj/item/clothing/mask/gas/vaurca/filter, -/obj/item/clothing/mask/gas/vaurca/filter, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/burglar) -"kll" = ( -/obj/structure/table/wood, -/obj/item/newspaper, -/obj/effect/decal/fake_object/light_source/invisible{ - light_color = "#C48A18"; - light_power = 2; - light_range = 3; - name = "fire light" - }, -/turf/simulated/floor/carpet, -/area/centcom/shared_dream) -"kme" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/grass, -/area/centcom/shared_dream) -"kmj" = ( -/obj/effect/decal/fake_object{ - color = "#545c68"; - icon = 'icons/obj/railing.dmi'; - icon_state = "mcorneroverlay1"; - name = "railing" - }, -/obj/effect/floor_decal/corner/paleblue/full, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/ferry) -"kml" = ( -/obj/machinery/door/airlock/glass_centcom{ - name = "Cell 2"; - req_access = list(105); - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/specops) -"kmE" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "9,0"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"kni" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "7,7" - }, -/area/shuttle/merchant) -"kns" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cigbutt, -/turf/unsimulated/floor{ - icon_state = "panelscorched" - }, -/area/antag/raider) -"knO" = ( -/obj/effect/floor_decal/spline/plain/black, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"kof" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"kop" = ( -/obj/effect/floor_decal/spline/plain/black, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/checkpoint/fore) -"kpA" = ( -/turf/simulated/floor/ice, -/area/centcom/shared_dream) -"kpR" = ( -/obj/item/gun/projectile/automatic/rifle/w556{ - pixel_y = 6 - }, -/obj/item/ammo_magazine/a556{ - pixel_x = -6; - pixel_y = -7 - }, -/obj/item/ammo_magazine/a556{ - pixel_x = -6; - pixel_y = -10 - }, -/obj/structure/table/wood, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"kpU" = ( -/obj/effect/floor_decal/spline/plain/black, -/obj/effect/floor_decal/spline/plain/corner/black{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"kqF" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/device/paicard, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/distress_prep) -"kqN" = ( -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare{ - pixel_y = 6 - }, -/obj/item/device/flashlight/flare{ - pixel_y = 6 - }, -/obj/item/device/flashlight/flare{ - pixel_y = 6 - }, -/obj/item/device/flashlight/flare{ - pixel_y = 6 - }, -/obj/structure/table/steel, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"krf" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/turf/space/dynamic, -/area/antag/raider) -"krK" = ( -/obj/structure/shuttle_part/transfer{ - density = 0; - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "14,11"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"krN" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "8,7" - }, -/area/shuttle/merchant) -"krP" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/obj/structure/disposalpipe/segment, -/turf/unsimulated/floor/plating, -/area/tdome/tdomeobserve) -"ksI" = ( -/obj/effect/decal/fake_object{ - desc = "Ding."; - icon = 'icons/obj/doors/doorlift.dmi'; - icon_state = "door_open"; - name = "elevator door" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/spawning) -"ksM" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "9,7" - }, -/area/shuttle/merchant) -"ktg" = ( -/obj/machinery/door/airlock/glass{ - welded = 1; - dir = 4 - }, -/obj/structure/curtain/open/bed{ - icon_state = "closed"; - name = "curtain"; - opacity = 1 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/raider) -"ktj" = ( -/obj/effect/shuttle_landmark/research/interim, -/turf/space/transit/bluespace/south, -/area/template_noop) -"kvf" = ( -/turf/unsimulated/floor, -/area/centcom/ferry) -"kvo" = ( -/obj/machinery/door/airlock/centcom{ - icon_state = "door_locked"; - locked = 1; - name = "Clandestine Operations"; - req_access = list(150) - }, -/turf/unsimulated/floor, -/area/antag/ninja) -"kvZ" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/unsimulated/floor, -/area/centcom/holding) -"kxc" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "supply_shuttle_hatch"; - locked = 1; - name = "Shuttle Hatch"; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/supply/dock) -"kxg" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "CentComArrivalsForeExt"; - name = "Exterior Checkpoint"; - pixel_x = 6; - pixel_y = -1; - req_access = list(103) - }, -/obj/machinery/turretid{ - ailock = 1; - check_arrest = 0; - check_records = 0; - pixel_x = 26; - req_access = list(101) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/checkpoint/fore) -"kxv" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/ninja) -"kxT" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"kxZ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/ash, -/obj/structure/reagent_dispensers/lube, -/turf/simulated/floor/wood, -/area/shuttle/skipjack) -"kzj" = ( -/obj/machinery/door/airlock/centcom{ - name = "Custodial Closet"; - req_access = list(103) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"kzP" = ( -/turf/simulated/wall/shuttle/unique/cargo{ - icon_state = "0,3" - }, -/area/supply/dock) -"kzR" = ( -/obj/structure/closet/crate/internals{ - name = "emergency equipment" - }, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/item/airbubble, -/obj/item/airbubble, -/obj/item/storage/firstaid/o2{ - pixel_y = 2 - }, -/obj/item/storage/bag/inflatable, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"kBr" = ( -/turf/simulated/wall/elevator, -/area/centcom/bar) -"kBz" = ( -/obj/structure/sign/directions/dock{ - dir = 4; - pixel_y = -32 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"kBJ" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "10,7" - }, -/area/shuttle/merchant) -"kBQ" = ( -/obj/structure/shuttle_part/burglar{ - icon_state = "11,4" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/burglar) -"kCA" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "3,0"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"kCI" = ( -/turf/unsimulated/wall/fakeairlock{ - icon = 'icons/obj/doors/Doorext.dmi'; - icon_state = "door_locked"; - name = "airlock" - }, -/area/centcom/specops) -"kCR" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "odinasshutters"; - name = "checkpoint shutters"; - pixel_x = 25; - pixel_y = 8; - req_access = list(103) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/spawning) -"kCZ" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "11,7" - }, -/area/shuttle/merchant) -"kDo" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "1,1"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"kDN" = ( -/obj/effect/decal/fake_object{ - density = 1; - desc = "An automated gun turret."; - icon = 'icons/obj/turrets.dmi'; - icon_state = "cover_0"; - name = "turret" - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/unsimulated/floor, -/area/centcom/spawning) -"kEp" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/obj/effect/decal/fake_object{ - color = "#545c68"; - dir = 4; - icon = 'icons/obj/railing.dmi'; - icon_state = "mcorneroverlay1"; - name = "railing" - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue, -/turf/unsimulated/floor, -/area/centcom/holding) -"kEs" = ( -/obj/structure/table/wood, -/obj/item/flame/candle{ - pixel_x = 10 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_dininghall) -"kEu" = ( -/obj/structure/window/shuttle/unique/merchant{ - icon_state = "12,7" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/shuttle/merchant) -"kEB" = ( -/obj/structure/shuttle_part/ccia{ - icon_state = "5,4"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/transport1) -"kEF" = ( -/obj/structure/table/wood, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_dininghall) -"kFd" = ( -/turf/simulated/wall/shuttle/dark/corner/underlay{ - dir = 5 - }, -/area/centcom/legion/hangar5) -"kFA" = ( -/obj/structure/window/shuttle/unique/merchant{ - icon_state = "13,7" - }, -/turf/simulated/floor/plating, -/area/shuttle/merchant) -"kFK" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Connects to a station's emergency camera networks after the station sends out a distress signal."; - name = "Emergency Dock Uplink"; - network = list("Emergency Dock","TCFL"); - pixel_y = 28 - }, -/obj/structure/bed/stool/chair/office/bridge/pilot, -/obj/machinery/turretid{ - ailock = 1; - check_arrest = 0; - check_records = 0; - name = "Legion turret control"; - pixel_y = -27; - req_access = list(111) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"kGE" = ( -/obj/structure/window/shuttle/unique/merchant{ - icon_state = "14,7" - }, -/turf/simulated/floor/plating, -/area/shuttle/merchant) -"kHq" = ( -/turf/simulated/wall/shuttle/unique/mercenary/small{ - icon_state = "1,8" - }, -/area/shuttle/syndicate_elite) -"kIi" = ( -/obj/structure/bed/stool/chair/padded/black{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"kIp" = ( -/obj/random/pottedplant, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/raider) -"kIy" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"kIO" = ( -/obj/effect/decal/fake_object{ - desc = "A panel that controls the elevator."; - icon = 'icons/obj/turbolift.dmi'; - icon_state = "panel"; - name = "elevator Button"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/bar) -"kIX" = ( -/obj/random/junk, -/turf/unsimulated/floor/plating, -/area/centcom/holding) -"kIY" = ( -/obj/structure/railing/mapped{ - name = "adjusted railing" - }, -/obj/machinery/light{ - dir = 8; - name = "adjusted light fixture"; - pixel_y = 16; - icon_state = "tube_empty" - }, -/obj/structure/bed/stool/chair/padded/blue{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/evac) -"kJd" = ( -/obj/structure/closet/syndicate/suit{ - name = "suit closet" - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"kJk" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/sign/goldenplaque{ - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/closet/crate/drop{ - name = "problemsolver crate" - }, -/obj/item/ammo_magazine/a762, -/obj/item/ammo_magazine/a762, -/obj/item/ammo_magazine/a762, -/obj/item/gun/projectile/automatic/rifle/l6_saw, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"kJv" = ( -/obj/structure/window/shuttle/unique/merchant{ - icon_state = "15,7" - }, -/turf/simulated/floor/plating, -/area/shuttle/merchant) -"kJE" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"kJM" = ( -/obj/item/modular_computer/console/preset/security, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"kJQ" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "16,7" - }, -/area/shuttle/merchant) -"kKH" = ( -/turf/unsimulated/wall/fakepdoor, -/area/centcom/specops) -"kLE" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/broken_bottle, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"kLP" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "6,0" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"kMh" = ( -/obj/effect/decal/fake_object{ - density = 1; - desc = "A wooden crate containing spare parts."; - icon = 'icons/obj/crate.dmi'; - icon_state = "densecrate"; - name = "mechanical supply crate"; - pixel_x = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"kMt" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "0,4" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"kMC" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "11,1" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"kMF" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/turf/space/dynamic, -/area/antag/raider) -"kNH" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/full, -/turf/unsimulated/floor, -/area/centcom/legion) -"kNJ" = ( -/turf/unsimulated/floor{ - icon_state = "panelscorched" - }, -/area/centcom/bar) -"kNT" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/o2, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 20 - }, -/obj/item/roller{ - pixel_y = -9 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"kOh" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/loot{ - desc = "The old dusty labels on this crate indicate that it was supposed to be shipped long ago."; - name = "forgotten shipment" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"kOC" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/machinery/door/blast/odin{ - id = "hideout_access"; - name = "blast door" - }, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"kOG" = ( -/obj/structure/window/shuttle/unique/ccia{ - icon_state = "0,2" - }, -/turf/simulated/floor/plating, -/area/shuttle/transport1) -"kOH" = ( -/obj/structure/railing/mapped, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass, -/area/centcom/bar) -"kOI" = ( -/obj/structure/railing/mapped{ - name = "adjusted railing" - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/recharge_station, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"kQa" = ( -/obj/structure/table/reinforced, -/obj/item/card/id/captains_spare, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/control) -"kQd" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/ferry) -"kQj" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"kQH" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"kQO" = ( -/obj/structure/window/reinforced/crescent, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"kQY" = ( -/obj/structure/window/shuttle/unique/transfer{ - density = 0; - icon_state = "9,20" - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"kRu" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"kRY" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/checkpoint/fore) -"kSB" = ( -/obj/machinery/telecomms/server/presets/centcomm, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"kTA" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_x = 3; - pixel_y = 12 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"kTE" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "CentComArrivalsAftExt"; - name = "Exterior Checkpoint"; - pixel_x = 6; - pixel_y = 5; - req_access = list(103) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/checkpoint/aft) -"kTJ" = ( -/obj/structure/filingcabinet{ - pixel_x = -10 - }, -/obj/structure/filingcabinet, -/obj/structure/filingcabinet{ - pixel_x = 10 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"kTK" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "17,7" - }, -/area/shuttle/merchant) -"kTO" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/flora/ausbushes/fernybush, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_dininghall) -"kTS" = ( -/turf/simulated/wall/shuttle/unique/distress{ - icon_state = "4,0" - }, -/area/shuttle/distress) -"kUb" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"kUh" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/unsimulated/floor, -/area/centcom/ferry) -"kUG" = ( -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "CCIABS" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "CCIABS" - }, -/obj/structure/grille, -/turf/unsimulated/floor/plating, -/area/centcom/control) -"kUH" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/empty/phoron, -/turf/unsimulated/floor, -/area/antag/mercenary) -"kVk" = ( -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/holding) -"kVA" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1399; - id_tag = "admin_shuttle_bay"; - name = "shuttle bay controller"; - pixel_y = -25; - tag_door = "admin_shuttle_bay_door" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"kVR" = ( -/obj/machinery/light{ - dir = 4; - name = "adjusted light fixture"; - pixel_y = -16; - icon_state = "tube_empty" - }, -/obj/machinery/vending/cola{ - name = "hacked Robust Softdrinks"; - prices = list() - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"kVX" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"kWc" = ( -/obj/structure/table/rack, -/obj/item/gun/energy/gun{ - pixel_y = 6 - }, -/obj/item/gun/energy/gun{ - pixel_y = 6 - }, -/obj/item/gun/energy/gun, -/obj/item/gun/energy/gun, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"kWd" = ( -/obj/item/device/radio/intercom/west{ - frequency = 1213; - name = "Intercom"; - subspace_transmission = 1; - syndie = 1 - }, -/obj/structure/closet/secure_closet{ - req_access = list(150) - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"kWy" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/vending/cigarette{ - name = "Free Cigarette Machine"; - prices = list() - }, -/obj/effect/floor_decal/corner/blue/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeobserve) -"kWN" = ( -/obj/machinery/door/blast/odin/open{ - _wifi_id = "merc_droppod_3"; - name = "Pod C" - }, -/obj/effect/floor_decal/industrial/loading/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"kWS" = ( -/obj/structure/shuttle_part/distress{ - icon_state = "0,1"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/distress) -"kXw" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "4,2" - }, -/area/shuttle/mercenary) -"kXL" = ( -/obj/vehicle/droppod/syndie{ - connected_blastdoor = "merc_droppod_7" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/antag/mercenary) -"kXP" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"kYo" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"kYq" = ( -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"kYy" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1337; - id_tag = "elite_shuttle_origin"; - name = "dock controller"; - pixel_y = 28; - tag_door = "elite_shuttle_origin_airlock" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"kYI" = ( -/obj/item/modular_computer/console/preset/command/teleporter, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/ninja) -"kYR" = ( -/obj/effect/step_trigger/thrower/shuttle/northeast, -/turf/space/transit/bluespace/south, -/area/template_noop) -"kYV" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/escape) -"laq" = ( -/obj/structure/shuttle_part/cargo, -/turf/unsimulated/floor/plating, -/area/supply/dock) -"laB" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/table/reinforced/wood, -/obj/item/device/flashlight/lamp, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"laF" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/structure/railing/mapped{ - name = "adjusted railing" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/ferry) -"laL" = ( -/obj/machinery/door/blast/odin{ - _wifi_id = "odin_arrivals_lockdown"; - density = 0; - icon_state = "pdoor0"; - id = "CentComArrivalsAftInt"; - name = "Security Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor, -/area/centcom/checkpoint/aft) -"laY" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"lbB" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "18,7" - }, -/area/shuttle/merchant) -"lcO" = ( -/obj/vehicle/droppod/syndie{ - connected_blastdoor = "loner_droppod_1" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/antag/loner) -"ldd" = ( -/obj/machinery/door/airlock/centcom{ - name = "Administrative Wing"; - req_access = list(101) - }, -/obj/machinery/door/blast/odin{ - dir = 4; - id = "crescent_checkpoint_access"; - name = "Security Doors" - }, -/turf/unsimulated/floor, -/area/centcom/control) -"ldi" = ( -/obj/effect/floor_decal/corner/paleblue, -/turf/unsimulated/floor, -/area/centcom/legion) -"lds" = ( -/obj/item/storage/box/fancy/candle_box{ - icon_state = "candlepack5" - }, -/obj/effect/decal/fake_object{ - icon = 'icons/obj/doors/rapid_pdoor.dmi'; - icon_state = "shutter0"; - name = "shutter" - }, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/table/reinforced, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/antag/raider) -"ldy" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "1,11" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"lek" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/table/reinforced/steel, -/obj/item/gun/custom_ka/frame01/illegal{ - pixel_y = 7 - }, -/obj/item/gun/custom_ka/frame01/illegal{ - pixel_y = -1 - }, -/obj/item/device/flash{ - pixel_x = -8; - pixel_y = -8 - }, -/obj/item/device/flash{ - pixel_x = -8; - pixel_y = -8 - }, -/turf/unsimulated/floor, -/area/antag/burglar) -"leF" = ( -/obj/structure/window/shuttle/unique/merchant{ - icon_state = "19,7" - }, -/turf/simulated/floor/plating, -/area/shuttle/merchant) -"leH" = ( -/obj/effect/floor_decal/corner/grey{ - dir = 5 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"lfc" = ( -/obj/structure/window/shuttle/unique/merchant{ - icon_state = "20,7"; - outside_window = 1 - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"lfg" = ( -/obj/effect/decal/fake_object{ - desc = "Ding."; - icon = 'icons/obj/doors/doorlift.dmi'; - icon_state = "door_open"; - name = "elevator door" - }, -/obj/effect/landmark/latejoin, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/spawning) -"lfH" = ( -/obj/machinery/door/airlock/glass_centcom{ - icon = 'icons/obj/doors/Doorglass.dmi'; - name = "To: Mendell City Shuttle Terminal"; - req_access = null; - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"lfI" = ( -/obj/structure/dispenser/oxygen, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"lfQ" = ( -/obj/structure/shuttle_part/merchant{ - density = 0; - icon_state = "21,7" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"lgu" = ( -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion/hangar5) -"lhd" = ( -/obj/structure/table/standard, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"lhv" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "22,7" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"lhC" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "7,11" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"lhD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/decal/fake_object{ - desc = "A conveyor belt."; - dir = 6; - icon = 'icons/obj/recycling.dmi'; - icon_state = "conveyor0"; - name = "conveyor belt"; - pixel_x = 1 - }, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"lhE" = ( -/turf/unsimulated/floor{ - name = "staircase"; - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"lhJ" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "12,7"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"liD" = ( -/obj/machinery/door/airlock/centcom{ - name = "Port Checkpoint Door"; - req_access = list(103) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"liJ" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"liY" = ( -/obj/effect/ghostspawpoint{ - identifier = "OdinCheckpoint"; - name = "igs - OdinCheckpoint" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"ljc" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "9,2"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"lje" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "5,3"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"lkC" = ( -/obj/effect/step_trigger/thrower/shuttle/north, -/turf/space/transit/bluespace/south, -/area/template_noop) -"lkN" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "12,20"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"lkT" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/turf/unsimulated/floor{ - name = "staircase"; - icon_state = "tiled_preview" - }, -/area/centcom/spawning) -"llv" = ( -/obj/structure/sign/electricshock, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/bar) -"llE" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"llG" = ( -/turf/unsimulated/floor{ - dir = 8; - icon_state = "loadingareadirty2" - }, -/area/antag/raider) -"llN" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"lmW" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/loot{ - desc = "A worn container that has been through many long travels."; - name = "leftover merchandise"; - rarity = 2 - }, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"lmY" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/unsimulated/floor/plating, -/area/antag/mercenary) -"lnh" = ( -/obj/structure/railing/mapped{ - name = "adjusted railing" - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/ferry) -"lnt" = ( -/obj/effect/ghostspawpoint{ - identifier = "OdinCheckpoint"; - name = "igs - OdinCheckpoint" - }, -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"lny" = ( -/obj/item/modular_computer/console/preset/command, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"lnV" = ( -/obj/effect/decal/fake_object{ - icon = 'icons/obj/doors/rapid_pdoor.dmi'; - icon_state = "shutter0"; - name = "shutter" - }, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/bottle/rum{ - pixel_x = 14; - pixel_y = 10 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/antag/raider) -"loa" = ( -/obj/random/pottedplant, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"lou" = ( -/obj/structure/table/standard, -/obj/item/clipboard, -/obj/item/pen, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"loL" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/computerframe, -/turf/simulated/floor/tiled/dark, -/area/centcom/bar) -"loR" = ( -/obj/effect/floor_decal/corner_wide/paleblue/diagonal{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/closet/walllocker/medical/secure{ - name = "blood closet"; - pixel_x = -33; - pixel_y = 34; - req_access = null - }, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"lpa" = ( -/obj/structure/flora/rock/pile, -/turf/simulated/floor/beach/sand{ - dir = 1; - icon_state = "beachcorner" - }, -/area/centcom/shared_dream) -"lpK" = ( -/obj/item/storage/box/masks{ - pixel_y = -2 - }, -/obj/item/clothing/glasses/hud/health{ - pixel_x = -1; - pixel_y = 8 - }, -/obj/structure/table/steel, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"lqc" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"lqo" = ( -/obj/effect/floor_decal/spline/plain/black, -/turf/simulated/floor/tiled/ramp/bottom, -/area/merchant_station/warehouse) -"lqt" = ( -/obj/structure/bed/stool/chair/office/bridge, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"lqP" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"lqT" = ( -/obj/structure/shuttle_part/merchant{ - density = 0; - icon_state = "1,6" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"lrT" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "2,6" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"lsb" = ( -/obj/machinery/door/blast/odin{ - dir = 4; - id = "tcfl_jotun"; - name = "Superheavy Support Garage" - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"lsr" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "3,6" - }, -/area/shuttle/merchant) -"lsJ" = ( -/obj/item/modular_computer/console/preset/command/account/centcomm, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"lsU" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "4,10"; - opacity = 1; - outside_part = 0 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/supply/dock) -"ltl" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "10,21"; - outside_part = 0 - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"ltR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "13,7" - }, -/area/shuttle/mercenary) -"luW" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 6; - pixel_y = 12 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"luY" = ( -/obj/machinery/telecomms/processor/preset_cent, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"lvf" = ( -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"lvn" = ( -/obj/structure/table/stone/marble, -/obj/machinery/chemical_dispenser/coffee/full{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/effect/floor_decal/spline/plain/black, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/burglar) -"lvr" = ( -/obj/structure/closet/walllocker/emerglocker/south{ - pixel_y = -27 - }, -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/distress) -"lvs" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/turf/unsimulated/floor/plating, -/area/tdome/tdomeobserve) -"lvy" = ( -/obj/effect/landmark/thunderdome2, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/effect/decal/fake_object/light_source/invisible, -/turf/simulated/floor/holofloor/tiled/dark, -/area/tdome/tdome2) -"lvJ" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "4,6" - }, -/area/shuttle/merchant) -"lvN" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"lwz" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "5,6" - }, -/area/shuttle/merchant) -"lxi" = ( -/turf/unsimulated/wall/fakepdoor{ - dir = 4 - }, -/area/centcom/specops) -"lxv" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "2,10"; - opacity = 1; - outside_part = 0 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/supply/dock) -"lxL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/pottedplant{ - dead = 1; - icon_state = "plant-dead"; - name = "dead plant" - }, -/obj/machinery/light/small/emergency{ - brightness_power = 0.5; - brightness_range = 5; - dir = 1; - name = "adjusted emergency light" - }, -/turf/unsimulated/floor{ - dir = 5; - icon_state = "tiled_preview" - }, -/area/antag/raider) -"lzh" = ( -/obj/item/clothing/gloves/yellow/specialu, -/obj/item/clothing/gloves/yellow/specialt, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/storage/box/lights/mixed{ - pixel_y = 14 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/structure/table/reinforced, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"lzk" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "6,6" - }, -/area/shuttle/merchant) -"lzo" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/machinery/light{ - name = "adjusted light fixture"; - pixel_x = 16; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"lAw" = ( -/obj/structure/table/rack, -/obj/item/storage/belt/security/tactical{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/storage/belt/security/tactical, -/obj/item/storage/belt/security/tactical{ - pixel_x = 4; - pixel_y = -6 - }, -/obj/item/storage/belt/security/tactical{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/storage/belt/security/tactical, -/obj/item/storage/belt/security/tactical{ - pixel_x = 4; - pixel_y = -6 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"lAD" = ( -/obj/structure/closet/crate/secure/legion, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"lAI" = ( -/obj/machinery/vending/security, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"lAY" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "0,1" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"lBD" = ( -/obj/machinery/door/airlock/glass_centcom{ - req_access = list(101); - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"lBN" = ( -/obj/machinery/vending/assist{ - random_itemcount = 0 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"lBZ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/closet/secure_closet/merchant, -/obj/item/device/hand_labeler, -/obj/item/stack/packageWrap, -/obj/item/device/price_scanner, -/turf/simulated/floor/wood, -/area/shuttle/merchant) -"lCc" = ( -/obj/structure/bed/stool/chair/office/dark, -/turf/simulated/floor/wood, -/area/shuttle/merchant) -"lCv" = ( -/obj/structure/window/shuttle/unique/transfer{ - icon_state = "7,22"; - outside_window = 1 - }, -/turf/simulated/floor/plating, -/area/shuttle/escape) -"lDJ" = ( -/obj/structure/sign/directions/security{ - dir = 4 - }, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/holding) -"lDL" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "thunderdomeaxe"; - name = "Axe Supply" - }, -/turf/simulated/floor, -/area/tdome/tdome1) -"lDO" = ( -/obj/machinery/door/window/eastright{ - req_access = list(110) - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "merchant_airlock"; - name = "airlock shutter"; - pixel_x = 6; - pixel_y = -25; - req_access = null - }, -/obj/structure/extinguisher_cabinet/north, -/turf/simulated/floor/wood, -/area/shuttle/merchant) -"lEa" = ( -/turf/simulated/floor/carpet, -/area/centcom/shared_dream) -"lEC" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/effect/ghostspawpoint{ - identifier = "OdinDoctor"; - name = "igs - OdinDoctor" - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/holding) -"lEG" = ( -/obj/effect/floor_decal/spline/plain/black, -/obj/machinery/turretid{ - check_arrest = 0; - check_records = 0; - check_wildlife = 0; - name = "merchant turret control panel"; - pixel_y = 28; - req_access = list(110) - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/small{ - dir = 8; - pixel_x = 12; - pixel_y = -2 - }, -/turf/simulated/floor/wood, -/area/shuttle/merchant) -"lEX" = ( -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "tcflemergencyroom"; - name = "Emergency Room"; - req_access = list(111) - }, -/obj/machinery/door/blast/odin/shuttle/tcfl{ - id = "tcflhangar5" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor, -/area/centcom/legion) -"lFN" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "addon6" - }, -/area/shuttle/mercenary) -"lGv" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/machinery/porta_turret/ballistic{ - cover_set = 1; - health = 120; - icon_state = "cover_1"; - maxhealth = 120 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"lGZ" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/supply/dock) -"lHk" = ( -/obj/machinery/door/blast/odin/shuttle/ert{ - dir = 4; - name = "blastdoor" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/specops) -"lHt" = ( -/obj/structure/shuttle_part/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "1,1"; - name = "autoshuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/arrival) -"lHv" = ( -/turf/simulated/wall/shuttle/unique/mercenary/small{ - icon_state = "5,2" - }, -/area/shuttle/syndicate_elite) -"lIa" = ( -/obj/machinery/door/airlock/external{ - frequency = 1399; - icon_state = "door_locked"; - id_tag = "admin_shuttle_bay_door"; - locked = 1; - name = "corvette hangar" - }, -/obj/machinery/door/blast/odin{ - dir = 4; - id = "corvette_hangar"; - name = "Corvette Hangar" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"lIr" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/crescent, -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/machinery/door/window/eastright{ - name = "dispensary"; - req_access = null; - req_one_access = list(33,104) - }, -/obj/item/reagent_containers/dropper, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/holding) -"lIE" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"lIO" = ( -/obj/vehicle/droppod/legion{ - connected_blastdoor = "tcfl_droppod_1" - }, -/turf/unsimulated/floor{ - icon_state = "panelscorched" - }, -/area/centcom/legion/hangar5) -"lIT" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "7,10" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"lJn" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southleft{ - name = "display case"; - req_access = list(110) - }, -/obj/structure/table/rack{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"lJD" = ( -/obj/machinery/acting/changer, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"lKv" = ( -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 4; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 1; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/turf/simulated/floor/holofloor/space{ - blocks_air = 1; - density = 1; - dynamic_lighting = 1; - icon_state = "black" - }, -/area/antag/ninja) -"lKC" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/southright{ - name = "display case"; - req_access = list(110) - }, -/obj/structure/table/rack{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 1; - name = "adjusted light fixture"; - pixel_x = -16; - icon_state = "tube_empty" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"lKG" = ( -/obj/machinery/papershredder, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"lKH" = ( -/obj/structure/shuttle_part/burglar{ - icon_state = "12,1" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/burglar) -"lLa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ore, -/turf/unsimulated/floor/plating, -/area/antag/raider) -"lLj" = ( -/obj/structure/table/steel, -/obj/effect/decal/fake_object{ - desc = "It's used to monitor rooms."; - icon = 'icons/obj/monitors.dmi'; - icon_state = "camera"; - name = "surveillance camera" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/specops) -"lLs" = ( -/obj/effect/step_trigger/thrower/shuttle/north, -/turf/space/transit/bluespace/west, -/area/template_noop) -"lLw" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/standard{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/machinery/door/window/southleft{ - name = "display case"; - req_access = list(110) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"lLC" = ( -/obj/random/junk, -/obj/machinery/light/small{ - brightness_power = 0.5; - dir = 8; - name = "adjusted light fixture" - }, -/turf/unsimulated/floor/plating, -/area/centcom/holding) -"lLG" = ( -/obj/item/modular_computer/console/preset/security, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/spawning) -"lLK" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/centcom{ - name = "Special Ops."; - req_access = list(103) - }, -/obj/machinery/door/blast/odin{ - dir = 4; - id = "corvette_hangar"; - name = "Corvette Hangar" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"lLS" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Barracks" - }, -/obj/effect/decal/fake_object{ - icon = 'icons/obj/doors/rapid_pdoor.dmi'; - icon_state = "shutter0"; - name = "shutter" - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"lMn" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"lMp" = ( -/obj/vehicle/droppod/legion{ - connected_blastdoor = "tcfl_droppod_2" - }, -/turf/unsimulated/floor{ - icon_state = "panelscorched" - }, -/area/centcom/legion/hangar5) -"lMz" = ( -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"lNi" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southleft{ - name = "display case"; - req_access = list(110) - }, -/obj/structure/table/rack{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"lNt" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"lNL" = ( -/obj/structure/bed, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/specops) -"lNN" = ( -/obj/structure/sign/directions/cryo{ - dir = 8; - pixel_y = -7 - }, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/holding) -"lOl" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/southright{ - name = "display case"; - req_access = list(110) - }, -/obj/structure/table/rack{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 1; - name = "adjusted light fixture"; - pixel_x = -16; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"lOO" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"lPg" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "16,5" - }, -/area/shuttle/merchant) -"lPl" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 32 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 22 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/oxygen{ - anchored = 1 - }, -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"lPX" = ( -/obj/structure/shuttle_part/burglar{ - icon_state = "3,4" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/burglar) -"lQc" = ( -/obj/machinery/vending/wallmed1{ - pixel_x = -9; - pixel_y = 30; - req_access = list(110) - }, -/obj/structure/table/stone/marble, -/obj/item/material/ashtray/bronze, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"lQy" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"lQI" = ( -/turf/simulated/wall/shuttle/unique/ert{ - icon_state = "7,0" - }, -/area/shuttle/specops) -"lQQ" = ( -/obj/structure/shuttle_part/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "13,4"; - name = "autoshuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/arrival) -"lQT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/item/rig/ert/security, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"lRx" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "2,0" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"lRI" = ( -/obj/item/storage/secure/safe{ - pixel_x = 12; - pixel_y = 30 - }, -/obj/structure/bed/stool/chair/padded/brown, -/obj/machinery/button/remote/blast_door{ - id = "merchant_bridge"; - name = "privacy shutters"; - pixel_x = -10; - pixel_y = 27; - req_access = null - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"lRR" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"lSi" = ( -/obj/structure/table/rack, -/obj/item/gun/energy/rifle/ionrifle{ - pixel_y = 6 - }, -/obj/item/gun/energy/rifle/ionrifle{ - pixel_y = -2 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"lSm" = ( -/obj/effect/floor_decal/corner/grey{ - dir = 5 - }, -/obj/random/pottedplant{ - anchored = 1; - pixel_y = 18 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"lSo" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"lSL" = ( -/obj/machinery/status_display{ - pixel_y = -3 - }, -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "7,6"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"lSP" = ( -/obj/vehicle/droppod/legion{ - connected_blastdoor = "tcfl_droppod_3" - }, -/turf/unsimulated/floor{ - icon_state = "panelscorched" - }, -/area/centcom/legion/hangar5) -"lST" = ( -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"lSZ" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/specops) -"lTV" = ( -/obj/structure/window/shuttle/unique/merchant{ - icon_state = "20,6" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"lUA" = ( -/turf/unsimulated/wall/darkshuttlewall, -/area/tdome/tdomeadmin) -"lUJ" = ( -/obj/structure/window/shuttle/unique/merchant{ - icon_state = "21,6" - }, -/turf/simulated/floor/plating, -/area/shuttle/merchant) -"lVG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/conveyor{ - dir = 8; - id = "hideout_shipping" - }, -/turf/unsimulated/floor/plating, -/area/antag/raider) -"lVP" = ( -/obj/vehicle/droppod/legion{ - connected_blastdoor = "tcfl_droppod_4" - }, -/turf/unsimulated/floor{ - icon_state = "panelscorched" - }, -/area/centcom/legion/hangar5) -"lVU" = ( -/obj/effect/shuttle_landmark/burglar/interim, -/turf/space/transit/bluespace/south, -/area/template_noop) -"lVY" = ( -/obj/structure/sign/directions/tram{ - dir = 1; - pixel_x = 1; - pixel_y = 11 - }, -/obj/structure/sign/directions/mndl{ - pixel_y = -10 - }, -/obj/structure/sign/directions/civ{ - dir = 1; - pixel_x = 3 - }, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/bar) -"lWd" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "22,6" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"lWl" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/obj/machinery/door/blast/odin{ - dir = 2; - icon_state = "shutter1"; - icon_state_closed = "shutter1"; - icon_state_closing = "shutterc1"; - icon_state_open = "shutter0"; - icon_state_opening = "shutterc0"; - id = "CentComArrivalsAftChkpt"; - name = "checkpoint shutter" - }, -/turf/unsimulated/floor/plating, -/area/centcom/checkpoint/aft) -"lWU" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_dininghall) -"lXE" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/window/reinforced{ - name = "adjusted window" - }, -/obj/effect/floor_decal/spline/plain/black, -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/arrival) -"lXR" = ( -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/closet/emcloset{ - anchored = 1; - pixel_y = 2 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/arrival) -"lYF" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "6,11"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/supply/dock) -"lYJ" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "0,2" - }, -/area/shuttle/legion) -"lYZ" = ( -/obj/machinery/door/airlock/centcom{ - name = "Detention Wing"; - req_access = list(105) - }, -/obj/machinery/door/blast/odin{ - dir = 4; - id = "detention"; - name = "Detention Wing" - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "detention"; - name = "detention wing blast doors"; - pixel_x = -23; - req_access = list(109) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"mai" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"mar" = ( -/obj/structure/table/rack, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/item/tank/jetpack/carbondioxide{ - pixel_y = 6 - }, -/obj/item/tank/jetpack/carbondioxide{ - pixel_y = 6 - }, -/obj/item/tank/jetpack/carbondioxide{ - pixel_y = 6 - }, -/obj/item/tank/jetpack/carbondioxide{ - pixel_y = 6 - }, -/obj/item/tank/jetpack/oxygen{ - pixel_x = -5 - }, -/obj/item/tank/jetpack/oxygen{ - pixel_x = -5 - }, -/obj/item/tank/jetpack/oxygen{ - pixel_x = -5 - }, -/obj/item/tank/jetpack/oxygen{ - pixel_x = -5 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"mas" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1337; - id_tag = "legion_shuttle_aft_pump"; - name = "Dropship Air Vent" - }, -/obj/machinery/airlock_sensor{ - frequency = 1337; - id_tag = "legion_shuttle_aft_sensor"; - pixel_y = -28 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"mau" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/vending/wallmed1{ - name = "Emergency NanoMed"; - pixel_x = -28; - req_access = null - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/syndicate_elite) -"maF" = ( -/obj/effect/floor_decal/industrial/loading/yellow, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"maM" = ( -/obj/structure/table/rack, -/obj/item/gun/projectile/automatic/c20r{ - pixel_y = 6 - }, -/obj/item/gun/projectile/automatic/c20r{ - pixel_y = 6 - }, -/obj/item/gun/projectile/automatic/c20r, -/obj/item/gun/projectile/automatic/c20r, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"mbj" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1337; - id_tag = "legion_shuttle_aft_pump"; - name = "Dropship Air Vent" - }, -/obj/machinery/light/small, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1337; - id_tag = "legion_shuttle_aft_airlock"; - pixel_x = 24; - tag_airpump = "legion_shuttle_aft_pump"; - tag_chamber_sensor = "legion_shuttle_aft_sensor"; - tag_exterior_door = "legion_shuttle_aft_exterior"; - tag_interior_door = "legion_shuttle_aft_interior" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"mbk" = ( -/obj/structure/closet/walllocker/emerglocker/east, -/obj/structure/table/reinforced/steel, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"mbM" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/turf/unsimulated/floor{ - icon_state = "plating" - }, -/area/centcom/evac) -"mbV" = ( -/obj/structure/table/reinforced/wood, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/item/paper_bin, -/obj/item/pen/fountain/black, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"mbZ" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "3,2" - }, -/area/shuttle/legion) -"mcg" = ( -/obj/structure/reagent_dispensers/keg/beerkeg{ - pixel_y = -6 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/raider) -"mcn" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"mcI" = ( -/obj/effect/decal/fake_object{ - icon = 'icons/misc/beach.dmi'; - icon_state = "shell3"; - name = "shell"; - pixel_x = 4; - pixel_y = -16 - }, -/turf/simulated/floor/beach/sand{ - icon_state = "desert" - }, -/area/centcom/shared_dream) -"mcM" = ( -/obj/machinery/atmospherics/binary/passive_gate{ - dir = 1; - name = "shuttle airlock pressure regulator"; - target_pressure = 75; - unlocked = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"mcR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/pizzabox{ - icon_state = "pizzabox_messy"; - ismessy = 1; - open = 1 - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"mdk" = ( -/turf/simulated/wall/shuttle/unique/mercenary/small{ - icon_state = "6,9" - }, -/area/shuttle/syndicate_elite) -"mdI" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/template_noop, -/area/template_noop) -"mdL" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/sign/vacuum, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"mem" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/item/device/taperecorder{ - pixel_y = 2 - }, -/obj/item/device/laser_pointer/red{ - pixel_y = 3 - }, -/obj/structure/table/wood{ - table_reinf = "wood" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/burglar) -"meB" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "0,5" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"meU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"mfx" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/odin/open{ - id = "arrivals_outer"; - name = "blast door" - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"mfU" = ( -/obj/structure/shuttle/engine/propulsion{ - name = "spaceship engine"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor/plating, -/area/centcom/distress_prep) -"mgN" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/reinforced/steel, -/obj/item/storage/firstaid/o2{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/firstaid/regular, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/item/roller{ - pixel_x = -2; - pixel_y = -10 - }, -/obj/item/roller{ - pixel_x = -2; - pixel_y = -10 - }, -/obj/item/roller{ - pixel_x = -2; - pixel_y = -10 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"mhJ" = ( -/obj/structure/table/reinforced/steel, -/obj/item/storage/backpack/duffel{ - pixel_y = 3 - }, -/obj/item/storage/backpack/duffel{ - pixel_y = -3 - }, -/turf/unsimulated/floor, -/area/antag/burglar) -"mhN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"mic" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "13,7"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"min" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue, -/turf/unsimulated/floor, -/area/centcom/holding) -"miG" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"miX" = ( -/obj/item/modular_computer/console/preset/security, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/control) -"miZ" = ( -/obj/effect/floor_decal/corner_wide/paleblue/diagonal{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"mja" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "4,22"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"mjw" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"mjy" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"mjX" = ( -/obj/structure/window/shuttle/unique/merchant{ - icon_state = "1,5" - }, -/turf/simulated/floor/plating, -/area/shuttle/merchant) -"mks" = ( -/obj/effect/landmark/thunderdomeadmin, -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/effect/decal/fake_object/light_source/invisible, -/obj/structure/bed/stool/chair/folding{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"mkB" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 1 - }, -/obj/structure/bed/stool/chair, -/turf/unsimulated/floor, -/area/centcom/ferry) -"mkO" = ( -/obj/structure/bed/stool{ - pixel_y = 10 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/specops) -"mkQ" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "14,2" - }, -/area/shuttle/legion) -"mlp" = ( -/turf/simulated/wall/shuttle/unique/ccia{ - icon_state = "10,0" - }, -/area/shuttle/transport1) -"mlq" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "2,5" - }, -/area/shuttle/merchant) -"mlA" = ( -/obj/machinery/hologram/holopad/long_range, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"mmb" = ( -/turf/simulated/floor, -/area/tdome/tdome2) -"mmY" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/transport1) -"mni" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"mnl" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"mny" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Cell 3"; - req_access = list(111); - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"mnU" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "14,2"; - name = "transport shuttle" - }, -/obj/structure/shuttle_part/transfer{ - density = 0; - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "14,3"; - name = "transport shuttle"; - pixel_y = 32 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"moi" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/specops) -"moM" = ( -/obj/structure/window/shuttle/unique/tcfl{ - icon_state = "16,2" - }, -/turf/simulated/floor/plating, -/area/shuttle/legion) -"mpt" = ( -/obj/structure/closet/crate/secure/legion, -/obj/item/storage/belt/security/tactical, -/obj/item/storage/belt/security/tactical, -/obj/item/storage/belt/security/tactical, -/obj/item/storage/belt/security/tactical, -/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/clothing/mask/gas/tactical, -/obj/item/clothing/mask/gas/tactical, -/obj/item/clothing/mask/gas/tactical, -/obj/item/clothing/mask/gas/tactical, -/obj/item/melee/energy/sword/knife, -/obj/item/melee/energy/sword/knife, -/obj/item/melee/energy/sword/knife, -/obj/item/melee/energy/sword/knife, -/turf/unsimulated/floor, -/area/centcom/legion) -"mqh" = ( -/obj/effect/decal/fake_object{ - density = 1; - icon = 'icons/obj/doors/rapid_pdoor.dmi'; - icon_state = "shutterhalf"; - name = "shutter" - }, -/obj/effect/decal/fake_object{ - density = 1; - icon = 'icons/obj/item/inflatables.dmi'; - icon_state = "wall"; - name = "inflatable wall" - }, -/turf/unsimulated/floor{ - icon_state = "asteroidfloor" - }, -/area/antag/raider) -"mqC" = ( -/obj/machinery/light{ - dir = 8; - name = "adjusted light fixture"; - pixel_y = 16; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"mqD" = ( -/obj/effect/decal/fake_object{ - desc = "A sign."; - icon = 'icons/obj/decals.dmi'; - icon_state = "deck1"; - name = "deck 1"; - pixel_x = 4; - pixel_y = 6 - }, -/obj/effect/decal/fake_object{ - desc = "A sign."; - icon = 'icons/obj/decals.dmi'; - icon_state = "hangar5"; - name = "Hangar 5"; - pixel_x = 8; - pixel_y = -4 - }, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/legion/hangar5) -"mqU" = ( -/obj/structure/closet/walllocker/emerglocker/north{ - pixel_y = 30 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/shuttle/merchant) -"mqY" = ( -/obj/structure/table/steel, -/obj/item/device/flashlight/lamp{ - pixel_y = 2 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/specops) -"mrd" = ( -/obj/machinery/door/blast/odin/open{ - _wifi_id = "merc_droppod_1"; - name = "Pod A" - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"mrm" = ( -/obj/machinery/atm{ - pixel_y = 29 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/shuttle/merchant) -"mrx" = ( -/obj/random/pottedplant, -/obj/structure/sign/vacuum{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/shuttle/merchant) -"mrF" = ( -/obj/item/ore, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"mrG" = ( -/obj/item/gun/projectile/automatic/rifle/z8{ - pixel_y = 10 - }, -/obj/item/gun/projectile/automatic/rifle/z8{ - pixel_y = 5 - }, -/obj/item/ammo_magazine/a556{ - pixel_x = -6; - pixel_y = -8 - }, -/obj/item/ammo_magazine/a556{ - pixel_x = 5; - pixel_y = -8 - }, -/obj/item/ammo_magazine/a556{ - pixel_x = -6; - pixel_y = -8 - }, -/obj/item/ammo_magazine/a556{ - pixel_x = -6; - pixel_y = -8 - }, -/obj/item/ammo_magazine/a556{ - pixel_x = 5; - pixel_y = -8 - }, -/obj/item/ammo_magazine/a556{ - pixel_x = 5; - pixel_y = -8 - }, -/obj/item/ammo_magazine/a556{ - pixel_x = -6; - pixel_y = -11 - }, -/obj/item/ammo_magazine/a556{ - pixel_x = -6; - pixel_y = -11 - }, -/obj/item/ammo_magazine/a556{ - pixel_x = -6; - pixel_y = -11 - }, -/obj/item/ammo_magazine/a556{ - pixel_x = 5; - pixel_y = -11 - }, -/obj/item/ammo_magazine/a556{ - pixel_x = 5; - pixel_y = -11 - }, -/obj/item/ammo_magazine/a556{ - pixel_x = 5; - pixel_y = -11 - }, -/obj/structure/table/reinforced/steel, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"mrJ" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" - }, -/area/centcom/distress_prep) -"mrR" = ( -/obj/effect/decal/fake_object{ - density = 1; - desc = "A wooden crate containing spare parts."; - icon = 'icons/obj/crate.dmi'; - icon_state = "densecrate"; - name = "mechanical supply crate"; - pixel_x = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"mrX" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "centcom_shuttle_bay_door"; - locked = 1; - name = "Diplomatic Hangar Bay" - }, -/turf/unsimulated/floor, -/area/centcom/ferry) -"msf" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "6,5" - }, -/area/shuttle/merchant) -"msz" = ( -/obj/structure/table/rack, -/obj/item/rig/retro/equipped, -/obj/item/rig/retro/equipped, -/obj/item/clothing/accessory/legion/specialist, -/obj/item/clothing/accessory/legion/specialist, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"mtf" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 1; - pixel_y = 1 - }, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/holding) -"mtw" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/light{ - dir = 8; - name = "adjusted light fixture"; - pixel_y = 16; - icon_state = "tube_empty" - }, -/obj/machinery/autolathe{ - desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; - hacked = 1; - name = "Modified Autolathe" - }, -/turf/simulated/floor/wood, -/area/shuttle/merchant) -"mtH" = ( -/obj/structure/shuttle_part/burglar{ - icon_state = "11,1" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/burglar) -"mux" = ( -/obj/structure/table/stone/marble, -/obj/machinery/door/window/southright{ - name = "desk window"; - req_access = list(110) - }, -/turf/simulated/floor/wood, -/area/shuttle/merchant) -"mvu" = ( -/obj/machinery/vending/tool{ - random_itemcount = 0 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"mvz" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"mvQ" = ( -/obj/machinery/telecomms/hub/preset_cent, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"mwf" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/item/paper_bin{ - pixel_x = 7; - pixel_y = -6 - }, -/obj/item/pen/multi{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/structure/table/stone/marble, -/turf/simulated/floor/wood, -/area/shuttle/merchant) -"mwJ" = ( -/obj/structure/table/wood, -/obj/item/trash/cigbutt, -/obj/item/reagent_containers/food/snacks/donerkebab{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/distress_prep) -"mxc" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/specops) -"mxm" = ( -/obj/structure/toilet{ - dir = 4; - pixel_y = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/specops) -"mxn" = ( -/obj/structure/bed/stool/chair/shuttle, -/turf/simulated/floor/shuttle/black, -/area/centcom/specops) -"mxw" = ( -/obj/machinery/door/airlock/glass_centcom{ - name = "Cell 1"; - req_access = list(105); - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/specops) -"mxA" = ( -/obj/effect/floor_decal/corner/beige/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"myc" = ( -/obj/structure/shuttle_part/transfer{ - density = 0; - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "14,10"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"mym" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/door/blast/odin/open{ - _wifi_id = "tcfl_droppod_1"; - name = "Droppod A" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"mzh" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"mzJ" = ( -/obj/machinery/door/blast/regular/open{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"mAd" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/door/blast/odin/open{ - _wifi_id = "tcfl_droppod_2"; - name = "Droppod B" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"mAD" = ( -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"mAP" = ( -/obj/effect/floor_decal/corner/beige/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"mAR" = ( -/obj/structure/window/shuttle/unique/merchant{ - icon_state = "19,7" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "merchant_bridge"; - name = "privacy shutter" - }, -/turf/simulated/floor/plating, -/area/shuttle/merchant) -"mBc" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "1,18"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"mBP" = ( -/obj/machinery/door/airlock/centcom{ - name = "Advanced Interrogation"; - req_access = list(105) - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/specops) -"mBU" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"mCf" = ( -/obj/structure/bed/stool/chair, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"mCu" = ( -/obj/structure/sign/directions/security{ - dir = 4; - pixel_x = 32; - pixel_y = -8 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"mCC" = ( -/obj/effect/floor_decal/corner/paleblue, -/obj/effect/decal/fake_object{ - color = "#545c68"; - icon = 'icons/obj/railing.dmi'; - icon_state = "mcorneroverlay1"; - name = "railing" - }, -/obj/effect/floor_decal/spline/fancy/wood/corner, -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"mDn" = ( -/obj/effect/floor_decal/industrial/loading/yellow, -/turf/unsimulated/floor/plating, -/area/centcom/distress_prep) -"mDt" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"mDE" = ( -/turf/simulated/floor/carpet/cyan, -/area/shuttle/merchant) -"mDS" = ( -/obj/machinery/porta_turret/crescent, -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/control) -"mEq" = ( -/obj/structure/table/steel, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"mEz" = ( -/obj/structure/table/reinforced, -/obj/item/storage/secure/briefcase, -/turf/simulated/floor/carpet/cyan, -/area/shuttle/merchant) -"mET" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen/multi, -/turf/simulated/floor/carpet/cyan, -/area/shuttle/merchant) -"mFI" = ( -/obj/machinery/door/blast/regular/open{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"mGe" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Emergency Room" - }, -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"mGk" = ( -/obj/structure/shuttle_part/distress{ - icon_state = "1,4" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/distress) -"mGV" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/fancy/donut, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/control) -"mGZ" = ( -/obj/structure/shuttle_part/ccia{ - icon_state = "5,0"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/transport1) -"mHA" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"mHT" = ( -/turf/unsimulated/wall/riveted, -/area/centcom/distress_prep) -"mIi" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"mIx" = ( -/obj/structure/window/shuttle/unique/merchant{ - icon_state = "21,5" - }, -/turf/simulated/floor/plating, -/area/shuttle/merchant) -"mIy" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"mJt" = ( -/obj/item/circuitboard/borgupload, -/obj/item/circuitboard/aiupload{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/reinforced/steel, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"mJJ" = ( -/obj/structure/table/reinforced/wood, -/obj/item/stack/packageWrap{ - pixel_y = 5 - }, -/obj/item/device/hand_labeler, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"mJT" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "3,2" - }, -/area/shuttle/mercenary) -"mKc" = ( -/obj/structure/shuttle_part/tcfl{ - icon_state = "0,1" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/legion) -"mKe" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"mKr" = ( -/turf/simulated/floor/tiled/ramp, -/area/merchant_station) -"mKw" = ( -/turf/simulated/floor/holofloor/beach/sand, -/area/holodeck/source_picnicarea) -"mLc" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "8,1" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"mLh" = ( -/obj/structure/table/rack, -/obj/item/clothing/under/color/red, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/melee/energy/axe, -/turf/simulated/floor, -/area/tdome/tdome2) -"mLo" = ( -/obj/item/clothing/mask/balaclava{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/clothing/mask/balaclava{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/item/clothing/mask/balaclava/grey{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/clothing/mask/balaclava/grey{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/structure/table/reinforced/steel, -/turf/unsimulated/floor, -/area/antag/burglar) -"mLp" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"mLI" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"mMF" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"mMJ" = ( -/obj/structure/table/rack, -/obj/item/clothing/under/color/green, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/clothing/suit/armor/tdome/green, -/obj/item/clothing/head/helmet/thunderdome, -/obj/item/melee/baton/loaded, -/obj/item/melee/energy/sword/green, -/turf/simulated/floor, -/area/tdome/tdome1) -"mMS" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/door/airlock{ - id_tag = "odin_arrivals_stall3"; - name = "Stall 3" - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"mNk" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "1,1" - }, -/area/shuttle/legion) -"mNl" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"mNx" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "2,1" - }, -/area/shuttle/legion) -"mNQ" = ( -/obj/structure/shuttle_part/transfer{ - density = 0; - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "14,16"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"mOm" = ( -/obj/machinery/papershredder, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"mOp" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "9,1"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"mOD" = ( -/obj/machinery/door/airlock/centcom{ - name = "Checkpoint Equipment Room"; - req_access = list(103,111) - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"mOK" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "7,0" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"mPa" = ( -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/conveyor{ - id = "hideout_shipping" - }, -/turf/unsimulated/floor/plating, -/area/antag/raider) -"mPA" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"mPH" = ( -/obj/effect/decal/fake_object{ - desc = "An automated turret."; - icon = 'icons/obj/turrets.dmi'; - icon_state = "cover_1"; - name = "turret" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"mPL" = ( -/obj/structure/table/rack, -/obj/item/storage/briefcase/aluminium{ - pixel_y = 6 - }, -/obj/item/storage/briefcase/aluminium{ - pixel_y = 6 - }, -/obj/item/storage/lockbox/cciaa/bssb{ - pixel_y = -1 - }, -/obj/item/storage/lockbox/cciaa/bssb{ - pixel_y = -1 - }, -/obj/effect/floor_decal/corner/blue/full{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"mPM" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "3,1" - }, -/area/shuttle/legion) -"mPZ" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "22,5" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"mQk" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light/small/emergency, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"mQo" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "merchant_receiving" - }, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"mRm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"mRW" = ( -/obj/structure/table/standard, -/obj/item/stack/packageWrap, -/obj/item/device/hand_labeler, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"mSo" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/blue/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeobserve) -"mSt" = ( -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/storage/firstaid/adv{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = -13 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 6 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"mSy" = ( -/obj/effect/step_trigger/thrower/shuttle/northwest, -/turf/space/transit/bluespace/south, -/area/template_noop) -"mSF" = ( -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - icon = 'icons/obj/railing.dmi'; - icon_state = "mcorneroverlay1"; - name = "railing" - }, -/turf/simulated/floor/holofloor/space{ - blocks_air = 1; - density = 1; - dynamic_lighting = 1; - icon_state = "black" - }, -/area/antag/ninja) -"mSH" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 1 - }, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"mSN" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/structure/table/reinforced/steel, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/structure/closet/crate/freezer/rations, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"mTg" = ( -/obj/effect/overlay/palmtree_l{ - pixel_x = -8 - }, -/turf/simulated/floor/beach/sand{ - icon_state = "desert" - }, -/area/centcom/shared_dream) -"mTj" = ( -/obj/item/stack/material/glass/reinforced/full, -/obj/item/stack/material/glass/reinforced/full, -/obj/item/stack/material/glass/full, -/obj/item/stack/material/glass/full, -/obj/item/stack/material/plasteel/full, -/obj/item/stack/material/plasteel/full, -/obj/item/stack/material/steel/full, -/obj/item/stack/material/steel/full, -/obj/structure/table/standard, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"mTL" = ( -/obj/vehicle/droppod/syndie{ - connected_blastdoor = "merc_droppod_3" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/antag/mercenary) -"mUx" = ( -/obj/structure/window/shuttle/unique/transfer{ - icon_state = "8,21" - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"mUE" = ( -/obj/structure/closet/crate/loot{ - desc = "A worn container that has been through many long travels."; - name = "leftover merchandise"; - quantity = 8; - rarity = 2 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"mUH" = ( -/obj/structure/bed/stool/chair/padded/beige{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"mVd" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/shuttle/black, -/area/shuttle/distress) -"mVx" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"mVR" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/syndicate/black/orange, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/syndicate/black/orange, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"mVZ" = ( -/obj/structure/bed/stool/chair/padded/beige{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"mWn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 4; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/obj/machinery/light/small/emergency, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"mWz" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/grass, -/area/centcom/shared_dream) -"mYp" = ( -/obj/structure/shuttle_part/distress{ - icon_state = "0,0" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/distress) -"mYG" = ( -/obj/structure/table/reinforced/wood, -/obj/machinery/chemical_dispenser/coffee/full{ - pixel_y = 2; - spawn_cartridges = list(/obj/item/reagent_containers/chem_disp_cartridge/coffee,/obj/item/reagent_containers/chem_disp_cartridge/milk,/obj/item/reagent_containers/chem_disp_cartridge/cream,/obj/item/reagent_containers/chem_disp_cartridge/sugar) - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = 8; - pixel_y = 9 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"mYJ" = ( -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/item/flame/lighter{ - pixel_x = 7 - }, -/obj/item/material/ashtray/bronze{ - pixel_x = -7; - pixel_y = 7 - }, -/obj/structure/window/reinforced{ - name = "adjusted window" - }, -/obj/item/flame/lighter, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/unsimulated/floor{ - icon_state = "carpet" - }, -/area/centcom/bar) -"mZj" = ( -/turf/unsimulated/mineral/asteroid, -/area/antag/ninja) -"mZX" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "merchant_receiving"; - pixel_x = -1; - pixel_y = -4 - }, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"nan" = ( -/obj/structure/table/wood, -/obj/item/flame/candle{ - pixel_x = -10 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_dininghall) -"naC" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/light/spot{ - dir = 1; - icon_state = "tube1" - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"nbD" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"nbE" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "0,3" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"nbV" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "5,0" - }, -/turf/unsimulated/floor/plating, -/area/supply/dock) -"nco" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"ncu" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "merchant_station_door"; - locked = 1; - req_access = list(110); - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"ncM" = ( -/obj/structure/closet/wardrobe/orange, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"ncV" = ( -/obj/structure/cryofeed{ - dir = 2 - }, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/unsimulated/floor/plating, -/area/centcom/holding) -"ndP" = ( -/obj/machinery/door/airlock/centcom{ - name = "Special Ops."; - req_access = list(103) - }, -/obj/machinery/door/blast/odin{ - dir = 2; - id = "specops_starboard"; - name = "Special Ops." - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"ndV" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"nek" = ( -/obj/machinery/door/airlock/centcom{ - id_tag = "tcfllegate"; - name = "Legate Chambers"; - req_access = list(108,111) - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion/hangar5) -"neK" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"neR" = ( -/obj/effect/ghostspawpoint{ - identifier = "SyndERTSpawn"; - name = "igs - SYNDERT" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor, -/area/antag/mercenary) -"nfe" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/item/rig/ert/engineer, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"nfl" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 1 - }, -/obj/structure/closet{ - icon_door = "blue"; - name = "\improper FIB tactical gear" - }, -/obj/item/clothing/gloves/swat/tactical, -/obj/item/clothing/gloves/swat/tactical, -/obj/item/clothing/gloves/swat/tactical, -/obj/item/clothing/suit/armor/tactical{ - name = "\improper FIB tactical armor" - }, -/obj/item/clothing/suit/armor/tactical{ - name = "\improper FIB tactical armor" - }, -/obj/item/clothing/suit/armor/tactical{ - name = "\improper FIB tactical armor" - }, -/obj/item/clothing/head/helmet/tactical{ - name = "\improper FIB tactical helmet" - }, -/obj/item/clothing/head/helmet/tactical{ - name = "\improper FIB tactical helmet" - }, -/obj/item/clothing/head/helmet/tactical{ - name = "\improper FIB tactical helmet" - }, -/obj/item/clothing/mask/gas/alt, -/obj/item/clothing/mask/gas/alt, -/obj/item/clothing/mask/gas/alt, -/obj/item/clothing/gloves/swat/tactical, -/obj/item/clothing/gloves/swat/tactical, -/obj/item/clothing/mask/gas/alt, -/obj/item/clothing/mask/gas/alt, -/obj/item/clothing/suit/armor/tactical{ - name = "\improper FIB tactical armor" - }, -/obj/item/clothing/suit/armor/tactical{ - name = "\improper FIB tactical armor" - }, -/obj/item/clothing/head/helmet/tactical{ - name = "\improper FIB tactical helmet" - }, -/obj/item/clothing/head/helmet/tactical{ - name = "\improper FIB tactical helmet" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"nfY" = ( -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/spawning) -"ngc" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4; - name = "adjusted light fixture" - }, -/obj/item/hoist_kit{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/hoist_kit{ - pixel_x = -1; - pixel_y = 4 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"ngi" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"ngm" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "2,21"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"nhn" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "0,11" - }, -/turf/unsimulated/floor/plating, -/area/supply/dock) -"nhx" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 5 - }, -/obj/structure/table/stone/marble, -/obj/machinery/chemical_dispenser/bar_alc/full, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/loner) -"nhS" = ( -/obj/structure/flora/rock/pile{ - icon_state = "lavarocks2" - }, -/turf/simulated/floor/beach/sand{ - icon_state = "desert" - }, -/area/centcom/shared_dream) -"nis" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "13,4"; - name = "transport shuttle"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"niP" = ( -/turf/simulated/wall/shuttle/unique/burglar{ - icon_state = "10,0" - }, -/area/shuttle/burglar) -"niU" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/door/window/eastright{ - name = "desk access"; - req_access = list(109) - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"niY" = ( -/obj/machinery/button/remote/blast_door{ - desc = "It controls the shuttle shutter."; - dir = 1; - id = "merchant_airlock"; - name = "airlock shutter controller"; - pixel_x = -3; - pixel_y = -21; - req_access = list(110) - }, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "merchant_airlock"; - name = "airlock shutter" - }, -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "merchant_shuttle_hatch"; - name = "Ship External Access"; - req_access = list(110); - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/light, -/turf/simulated/floor/plating, -/area/shuttle/merchant) -"njm" = ( -/obj/structure/closet/crate/trashcart{ - anchored = 1; - pixel_y = 3 - }, -/obj/machinery/requests_console/north{ - department = "Arrival shuttle" - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/arrival) -"njF" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/shuttle/merchant) -"njP" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/effect/decal/fake_object{ - color = "#ff0000"; - icon = 'icons/obj/power_cond_white.dmi'; - icon_state = "4-8"; - name = "cable" - }, -/obj/effect/decal/fake_object{ - color = "#ff0000"; - dir = 4; - icon = 'icons/atmos/pipes.dmi'; - icon_state = "intact-scrubbers"; - name = "pipe" - }, -/obj/effect/decal/fake_object{ - color = "#0000ff"; - dir = 4; - icon = 'icons/atmos/pipes.dmi'; - icon_state = "intact-supply"; - name = "pipe" - }, -/obj/structure/lattice/catwalk/indoor, -/turf/unsimulated/floor/plating, -/area/centcom/checkpoint/aft) -"nkc" = ( -/turf/simulated/floor/holofloor/space{ - blocks_air = 1; - density = 1 - }, -/area/antag/ninja) -"nkw" = ( -/obj/machinery/vending/engivend, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"nkX" = ( -/turf/simulated/floor/holofloor/space, -/area/centcom/start) -"nli" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/checkpoint/fore) -"nlu" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "merchant_shuttle_hatch"; - name = "Ship External Access"; - req_access = list(110); - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/light, -/turf/simulated/floor/plating, -/area/shuttle/merchant) -"nlK" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-22"; - pixel_x = -1; - pixel_y = 23 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "detention"; - name = "detention wing blast doors"; - pixel_x = -22; - pixel_y = 6; - req_access = list(108) - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "corvette_hangar"; - name = "corvette hangar blast doors"; - pixel_x = -22; - pixel_y = -6; - req_access = list(108) - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "specops_starboard"; - name = "spec ops - NTCC Odin blast doors"; - pixel_x = -31; - req_access = list(108) - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"nlQ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen{ - name = "Spec. Ops. Monitor"; - network = list("ZeEmergencyResponseTeam"); - pixel_x = -8; - pixel_y = 24 - }, -/turf/unsimulated/floor{ - icon_state = "carpet" - }, -/area/centcom/specops) -"nmO" = ( -/obj/structure/sign/flag/nanotrasen/large/north, -/obj/structure/bed/stool/chair/office/bridge, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/landmark{ - name = "ERTCommander" - }, -/turf/unsimulated/floor{ - icon_state = "carpet14-10" - }, -/area/centcom/specops) -"nmV" = ( -/obj/structure/bed/stool/chair/padded/blue{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/holding) -"nnf" = ( -/obj/item/device/radio/intercom/east{ - frequency = 1441; - name = "Spec Ops Intercom"; - pixel_y = 20 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/unsimulated/floor{ - dir = 5; - icon_state = "carpet" - }, -/area/centcom/specops) -"nnl" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "propulsion_r"; - name = "spaceship engine"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor/plating, -/area/centcom/distress_prep) -"nnS" = ( -/obj/effect/floor_decal/corner/green/full, -/turf/unsimulated/floor, -/area/centcom/bar) -"noT" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"nph" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "6,0" - }, -/turf/unsimulated/floor/plating, -/area/supply/dock) -"nqa" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"nql" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/full, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"nqq" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "13,14" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"nrk" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"nrX" = ( -/obj/machinery/door/window/eastright{ - req_access = list(110) - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"nsM" = ( -/obj/effect/floor_decal/corner_wide/paleblue/diagonal{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/storage/box/fancy/tray, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"ntE" = ( -/obj/item/stack/material/cyborg/steel, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/bar) -"ntT" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "10,19" - }, -/area/shuttle/mercenary) -"ntX" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"nuc" = ( -/obj/item/modular_computer/console/preset/engineering/ce, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - name = "adjusted window" - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"nux" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"nuJ" = ( -/turf/simulated/wall/shuttle/unique/ccia{ - icon_state = "8,0" - }, -/area/shuttle/transport1) -"nuL" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"nuN" = ( -/obj/structure/urinal{ - dir = 4; - pixel_x = -32; - pixel_y = 8 - }, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/centcom/distress_prep) -"nuP" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"nuW" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "7,1" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"nuX" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-22" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"nvr" = ( -/obj/machinery/mech_recharger, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"nvv" = ( -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"nvO" = ( -/obj/machinery/door/blast/odin{ - _wifi_id = "odin_arrivals_lockdown"; - density = 0; - icon_state = "pdoor0"; - id = "CentComArrivalsForeExt"; - name = "Security Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor, -/area/centcom/checkpoint/fore) -"nvW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"nwx" = ( -/obj/structure/railing/mapped, -/obj/effect/floor_decal/spline/plain/black, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor/plating, -/area/antag/burglar) -"nwG" = ( -/obj/structure/table/rack, -/obj/random/tech_supply, -/obj/random/glowstick, -/turf/unsimulated/floor/plating, -/area/centcom/holding) -"nwL" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"nxE" = ( -/obj/effect/shuttle_landmark/merchant/start, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"nxI" = ( -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"nxK" = ( -/obj/machinery/cryopod, -/obj/effect/floor_decal/corner/lime{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"nyh" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"nyo" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"nyC" = ( -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/window/reinforced/crescent, -/obj/effect/floor_decal/sign/a, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"nyI" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = 22 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = 31 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"nyT" = ( -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/obj/structure/bed/stool/chair/shuttle, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"nzt" = ( -/obj/random/pottedplant{ - pixel_y = 8 - }, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"nzu" = ( -/obj/structure/shuttle_part/tcfl{ - icon_state = "13,1"; - outside_part = 0 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"nzH" = ( -/obj/structure/closet/emcloset{ - anchored = 1; - pixel_y = 2 - }, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/arrival) -"nzP" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"nAe" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 4 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"nAg" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/ferry) -"nAh" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "14,1" - }, -/area/shuttle/legion) -"nAD" = ( -/obj/structure/shuttle_part/tcfl{ - icon_state = "16,1" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/legion) -"nAK" = ( -/obj/machinery/door/airlock/silver{ - hashatch = 0; - name = "Bridge"; - req_access = list(110); - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"nAY" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"nBl" = ( -/obj/effect/floor_decal/corner/blue/diagonal, -/obj/effect/decal/fake_object/light_source/invisible, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeobserve) -"nBV" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "1,0" - }, -/turf/unsimulated/floor/plating, -/area/supply/dock) -"nCc" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"nCw" = ( -/obj/item/towel_flat{ - color = "#ff0000" - }, -/turf/simulated/floor/beach/sand{ - icon_state = "desert" - }, -/area/centcom/shared_dream) -"nCx" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "13,1" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"nCJ" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/machinery/porta_turret/crescent, -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/control) -"nDf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"nDp" = ( -/obj/machinery/door/airlock/centcom{ - name = "Civil Protection Station"; - req_access = list(103); - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"nDv" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "4,17"; - opacity = 1 - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"nDD" = ( -/obj/machinery/button/remote/blast_door{ - desc = "A remote control switch for port-side blast doors."; - id = "CentComPort"; - name = "Security Doors"; - pixel_x = 32; - pixel_y = -24; - req_access = list(101) - }, -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"nDL" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/fake_object{ - desc = "It's used to monitor rooms."; - dir = 8; - icon = 'icons/obj/monitors.dmi'; - icon_state = "camera"; - name = "surveillance camera"; - pixel_y = -18 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"nDW" = ( -/obj/structure/bed/stool/chair/office/bridge/generic{ - name = "pilot seat" - }, -/turf/simulated/floor/carpet/cyan, -/area/shuttle/merchant) -"nEc" = ( -/obj/random/vendor{ - scan_id = 0 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"nEs" = ( -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/table/standard, -/obj/item/storage/firstaid/toxin{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/storage/firstaid/fire, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"nEt" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"nEC" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"nEE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack, -/obj/item/ladder_mobile{ - pixel_y = 6 - }, -/obj/item/ladder_mobile{ - pixel_y = 6 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"nES" = ( -/obj/structure/table/rack, -/obj/item/gun/projectile/pistol{ - pixel_y = 6 - }, -/obj/item/gun/projectile/pistol{ - pixel_y = 6 - }, -/obj/item/gun/projectile/pistol, -/obj/item/gun/projectile/pistol, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"nEY" = ( -/obj/machinery/turretid{ - ailock = 1; - check_arrest = 0; - check_records = 0; - pixel_x = -28; - pixel_y = 9; - req_access = list(108) - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "commander_port"; - name = "port blast door"; - pixel_x = -24; - pixel_y = -8; - req_access = list(108) - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"nFm" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass, -/area/centcom/bar) -"nFu" = ( -/turf/simulated/wall/shuttle/unique/distress{ - icon_state = "6,4" - }, -/area/shuttle/distress) -"nFM" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/effect/decal/fake_object/light_source/invisible, -/obj/structure/bed/stool/chair/folding, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"nGk" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion/hangar5) -"nGs" = ( -/obj/item/flame/lighter/zippo/gold{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/table/wood, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/specops) -"nGO" = ( -/obj/machinery/vending/zora, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"nHd" = ( -/obj/structure/table/reinforced, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/control) -"nHm" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "1,12"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"nIj" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"nIu" = ( -/obj/machinery/light/small{ - dir = 8; - name = "adjusted light fixture"; - pixel_y = -16 - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/bar) -"nII" = ( -/obj/effect/decal/fake_object{ - desc = "A panel that controls the elevator."; - icon = 'icons/obj/turbolift.dmi'; - icon_state = "panel"; - name = "elevator Button"; - pixel_y = 31 - }, -/obj/effect/landmark/latejoin, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/spawning) -"nJM" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"nKS" = ( -/turf/simulated/wall/shuttle/unique/mercenary/small{ - icon_state = "1,3" - }, -/area/shuttle/syndicate_elite) -"nKW" = ( -/turf/unsimulated/floor{ - icon_state = "ramptop"; - name = "staircase" - }, -/area/antag/mercenary) -"nKX" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass, -/area/centcom/evac) -"nLo" = ( -/obj/item/material/ashtray/bronze{ - pixel_x = -25; - pixel_y = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/table/wood, -/turf/unsimulated/floor{ - icon_state = "carpet" - }, -/area/centcom/specops) -"nLw" = ( -/obj/structure/table/reinforced/wood, -/obj/item/folder/blue, -/obj/item/stack/packageWrap, -/obj/item/device/hand_labeler, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"nLz" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/obj/item/device/radio/intercom/west{ - frequency = 1213; - name = "Intercom"; - subspace_transmission = 1; - syndie = 1 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"nLO" = ( -/obj/item/gun/launcher/grenade{ - pixel_x = -2; - pixel_y = -7 - }, -/obj/item/grenade/frag{ - pixel_x = -10; - pixel_y = 9 - }, -/obj/item/grenade/frag{ - pixel_x = -10; - pixel_y = 9 - }, -/obj/item/grenade/frag{ - pixel_x = -10; - pixel_y = 9 - }, -/obj/item/grenade/frag{ - pixel_x = -10; - pixel_y = 9 - }, -/obj/item/grenade/flashbang{ - pixel_x = -1; - pixel_y = 9 - }, -/obj/item/grenade/flashbang{ - pixel_x = -1; - pixel_y = 9 - }, -/obj/item/grenade/flashbang{ - pixel_x = -1; - pixel_y = 9 - }, -/obj/item/grenade/flashbang{ - pixel_x = -1; - pixel_y = 9 - }, -/obj/item/grenade/empgrenade{ - pixel_x = 9; - pixel_y = 11 - }, -/obj/item/grenade/empgrenade{ - pixel_x = 9; - pixel_y = 11 - }, -/obj/item/grenade/empgrenade{ - pixel_x = 9; - pixel_y = 11 - }, -/obj/item/grenade/empgrenade{ - pixel_x = 9; - pixel_y = 11 - }, -/obj/structure/table/reinforced/steel, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"nLV" = ( -/obj/effect/decal/fake_object{ - icon = 'icons/obj/doors/rapid_pdoor.dmi'; - icon_state = "shutter0"; - name = "shutter" - }, -/obj/item/reagent_containers/glass/rag{ - pixel_y = 3 - }, -/obj/structure/table/reinforced, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/antag/raider) -"nMl" = ( -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/obj/machinery/bodyscanner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"nMm" = ( -/obj/structure/table/rack, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/tank/emergency_oxygen/double, -/obj/item/tank/emergency_oxygen/double, -/obj/item/tank/emergency_oxygen/double, -/obj/item/tank/emergency_oxygen/double, -/obj/item/tank/emergency_oxygen/double, -/obj/item/tank/emergency_oxygen/double, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"nMu" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/railing/mapped{ - name = "adjusted railing" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"nMX" = ( -/obj/structure/table/rack, -/obj/item/tank/oxygen/red, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/syndicate/black/red, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/head/helmet/space/syndicate/black/red, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/antag/burglar) -"nNG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"nOh" = ( -/turf/unsimulated/wall/darkshuttlewall, -/area/tdome/tdome1) -"nOA" = ( -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/window/reinforced/crescent, -/obj/effect/floor_decal/sign/c, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"nOM" = ( -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"nPS" = ( -/obj/machinery/computer/shuttle_control/merchant, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "merchant_airlock"; - name = "airlock shutter"; - pixel_x = 6; - pixel_y = -25; - req_access = null - }, -/turf/simulated/floor/carpet/cyan, -/area/shuttle/merchant) -"nQb" = ( -/obj/structure/table/rack, -/obj/item/storage/box/zipties, -/obj/item/storage/box/zipties{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"nQe" = ( -/obj/structure/flora/tree/jungle{ - icon_state = "tree3" - }, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/grass, -/area/centcom/shared_dream) -"nQl" = ( -/obj/structure/window/shuttle/unique/merchant{ - icon_state = "21,4" - }, -/turf/simulated/floor/plating, -/area/shuttle/merchant) -"nQD" = ( -/obj/machinery/door/airlock/centcom{ - name = "Hangar Access"; - req_access = null - }, -/obj/machinery/door/blast/odin{ - dir = 4; - id = "crescent_vip_shuttle"; - name = "NTCC Odin VIP Shuttle" - }, -/turf/unsimulated/floor, -/area/centcom/ferry) -"nQZ" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/turf/unsimulated/floor/plating, -/area/tdome/tdomeadmin) -"nRo" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "7,19" - }, -/area/shuttle/mercenary) -"nRM" = ( -/obj/structure/closet/gimmick{ - name = "sol clothing" - }, -/obj/item/clothing/under/rank/sol, -/obj/item/clothing/under/rank/sol, -/obj/item/clothing/under/rank/sol, -/obj/item/clothing/under/rank/sol, -/obj/item/flag/sol, -/obj/item/flag/sol, -/obj/item/flag/sol/l, -/obj/item/flag/sol/l, -/obj/item/clothing/under/rank/sol/marine, -/obj/item/clothing/under/rank/sol/marine, -/obj/item/clothing/under/rank/sol/marine, -/obj/item/clothing/under/rank/sol/marine, -/obj/item/clothing/suit/storage/vest/sol, -/obj/item/clothing/suit/storage/vest/sol, -/obj/item/clothing/suit/storage/vest/sol, -/obj/item/clothing/suit/storage/vest/sol, -/obj/item/clothing/head/helmet/sol, -/obj/item/clothing/head/helmet/sol, -/obj/item/clothing/head/helmet/sol, -/obj/item/clothing/head/helmet/sol, -/obj/item/clothing/head/sol, -/obj/item/clothing/head/sol, -/obj/item/clothing/head/sol, -/obj/item/clothing/head/sol, -/obj/item/clothing/head/sol/marine, -/obj/item/clothing/head/sol/marine, -/obj/item/clothing/head/sol/marine, -/obj/item/clothing/head/sol/garrison, -/obj/item/clothing/head/sol/dress/admiral, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"nSz" = ( -/obj/item/storage/box/fancy/cigarettes/cigar{ - pixel_y = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/table/wood, -/turf/unsimulated/floor{ - dir = 6; - icon_state = "carpet" - }, -/area/centcom/specops) -"nSA" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"nSQ" = ( -/obj/structure/table/rack, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare{ - pixel_y = 5 - }, -/obj/item/device/flashlight/flare{ - pixel_y = 5 - }, -/obj/item/device/flashlight/flare{ - pixel_y = 5 - }, -/obj/item/device/flashlight/flare{ - pixel_y = 5 - }, -/obj/item/device/flashlight/flare{ - pixel_y = 5 - }, -/obj/item/device/flashlight/flare{ - pixel_y = 5 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"nTe" = ( -/obj/structure/bed/stool/chair/padded/black{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"nTm" = ( -/obj/structure/table/rack, -/obj/item/ammo_magazine/mc9mm{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/ammo_magazine/mc9mm{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/ammo_magazine/mc9mm{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/ammo_magazine/mc9mm{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/ammo_magazine/mc9mm{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/ammo_magazine/mc9mm{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/ammo_magazine/mc9mm{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/ammo_magazine/mc9mm{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor, -/area/antag/mercenary) -"nTr" = ( -/obj/item/storage/bag/inflatable{ - pixel_y = 2 - }, -/obj/item/storage/bag/inflatable{ - pixel_y = 2 - }, -/obj/item/storage/bag/inflatable{ - pixel_y = 2 - }, -/obj/structure/table/steel, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"nTt" = ( -/obj/machinery/telecomms/receiver/preset_cent, -/obj/effect/floor_decal/industrial/warning/cee, -/turf/unsimulated/floor/plating, -/area/centcom/control) -"nTw" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "22,4" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"nUb" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled, -/area/merchant_station) -"nUr" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"nUK" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"nUO" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "7,2"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"nVi" = ( -/obj/structure/bed/stool/chair/padded/blue, -/obj/effect/landmark{ - name = "LateJoinCorporate Liaison" - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/ferry) -"nVn" = ( -/obj/machinery/door/airlock/centcom{ - name = "Holding Cells"; - req_access = list(150); - dir = 4 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"nWh" = ( -/obj/structure/bed/stool/padded/red, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"nWF" = ( -/obj/effect/ghostspawpoint{ - identifier = "TCFLERTSpawn"; - name = "igs - TCFLERT" - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"nWV" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 6; - id = "merchant_receiving" - }, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"nXL" = ( -/obj/effect/decal/fake_object/light_source/invisible, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"nYi" = ( -/obj/effect/decal/fake_object{ - density = 1; - icon = 'icons/obj/mining.dmi'; - icon_state = "boulder1"; - name = "rubble" - }, -/turf/simulated/floor/exoplanet/barren, -/area/centcom/shared_dream) -"nYo" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"nYp" = ( -/obj/structure/sign/nosmoking_2, -/turf/simulated/wall, -/area/merchant_station/warehouse) -"nYX" = ( -/obj/structure/table/rack, -/obj/item/tank/emergency_oxygen/double{ - pixel_y = 1 - }, -/obj/item/tank/emergency_oxygen/double{ - pixel_y = 1 - }, -/obj/item/tank/emergency_oxygen/double{ - pixel_y = 1 - }, -/obj/item/tank/emergency_oxygen/double{ - pixel_y = 1 - }, -/obj/item/tank/emergency_oxygen/double{ - pixel_y = 1 - }, -/obj/item/tank/emergency_oxygen/double{ - pixel_y = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"nZm" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"nZv" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor/southleft{ - name = "checkpoint"; - req_access = list(101) - }, -/obj/machinery/door/blast/odin{ - dir = 2; - icon_state = "shutter1"; - icon_state_closed = "shutter1"; - icon_state_closing = "shutterc1"; - icon_state_open = "shutter0"; - icon_state_opening = "shutterc0"; - id = "CentComArrivalsAftChkpt"; - name = "checkpoint shutter" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/checkpoint/aft) -"nZy" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"nZE" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark{ - name = "CCIAEscort" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"nZO" = ( -/obj/machinery/light/small, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"oaf" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "centcom_shuttle_bay"; - name = "shuttle bay controller"; - pixel_y = 25; - tag_door = "centcom_shuttle_bay_door" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/ferry) -"oap" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"oaq" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/conveyor{ - dir = 8; - id = "merchant_receiving" - }, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"oat" = ( -/obj/machinery/deployable/barrier, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/control) -"obP" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "0,0"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"oci" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/distress_prep) -"ocp" = ( -/obj/machinery/deployable/barrier, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/control) -"ocD" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"odx" = ( -/obj/effect/decal/fake_object/light_source/invisible, -/turf/simulated/floor, -/area/tdome) -"odJ" = ( -/obj/machinery/computer/security, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/control) -"odT" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "0,5" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"odX" = ( -/obj/machinery/light{ - name = "adjusted light fixture"; - pixel_x = -16; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/conveyor{ - dir = 8; - id = "merchant_receiving" - }, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"oeh" = ( -/obj/machinery/blackbox_recorder, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"oel" = ( -/obj/machinery/vending/cola, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"off" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"ofD" = ( -/obj/effect/decal/fake_object{ - icon = 'icons/obj/mining.dmi'; - icon_state = "rock_phoron"; - name = "phoron vein" - }, -/turf/unsimulated/mineral/asteroid{ - name = "asteroid"; - opacity = 0 - }, -/area/centcom/shared_dream) -"ogz" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/drop, -/obj/effect/spawner/newbomb/timer/syndicate, -/obj/effect/spawner/newbomb/timer/syndicate, -/obj/effect/spawner/newbomb/timer/syndicate, -/turf/simulated/floor/reinforced, -/area/shuttle/mercenary) -"ogF" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"ohs" = ( -/obj/random/pottedplant, -/turf/unsimulated/floor, -/area/antag/mercenary) -"ohC" = ( -/obj/effect/landmark/thunderdomeadmin, -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/structure/bed/stool/chair/folding{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"ohD" = ( -/obj/structure/janitorialcart/full{ - dir = 8 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"oik" = ( -/obj/machinery/door/airlock/centcom{ - name = "Commander's Office"; - req_access = list(108) - }, -/obj/machinery/door/blast/odin{ - dir = 4; - id = "commander_aft"; - name = "Commander's Office" - }, -/obj/machinery/button/remote/blast_door{ - id = "commander_aft"; - name = "aft blast door"; - pixel_x = 22; - req_access = list(108) - }, -/turf/unsimulated/floor{ - dir = 1; - icon_state = "tiled_preview" - }, -/area/centcom/specops) -"oiN" = ( -/obj/machinery/telecomms/broadcaster/preset_cent, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/control) -"oiW" = ( -/turf/simulated/wall/shuttle/unique/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "12,5"; - name = "autoshuttle" - }, -/area/shuttle/arrival) -"okn" = ( -/obj/structure/cryofeed{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"oks" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1337; - id_tag = "merchant_station"; - pixel_x = 28; - pixel_y = 5; - tag_door = "merchant_station_door" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/conveyor{ - dir = 8; - id = "merchant_receiving" - }, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"okB" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"okP" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"olC" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/chair/shuttle, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"omw" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "12,0"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"omL" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "0,3" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"omT" = ( -/obj/machinery/computer/cryopod{ - pixel_y = 32 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"onk" = ( -/obj/structure/sign/staff_only{ - pixel_y = -2 - }, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/control) -"onr" = ( -/obj/structure/window/shuttle/unique/merchant{ - icon_state = "1,3" - }, -/turf/simulated/floor/plating, -/area/shuttle/merchant) -"ooJ" = ( -/obj/machinery/vending/snack, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"ooP" = ( -/obj/structure/bed/stool, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"opB" = ( -/obj/machinery/vending/cola{ - density = 0; - name = "Free Robust Softdrinks"; - pixel_x = -7; - pixel_y = 20; - prices = list() - }, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/unsimulated/floor{ - icon_state = "wood-broken6" - }, -/area/centcom/distress_prep) -"oqo" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/distress_prep) -"oqN" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "2,3" - }, -/area/shuttle/merchant) -"oqQ" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/obj/machinery/door/blast/odin/open{ - _wifi_id = "merc_droppod_6"; - name = "Pod F" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"orr" = ( -/obj/structure/window/shuttle/unique/ccia{ - icon_state = "2,3" - }, -/turf/simulated/floor/plating, -/area/shuttle/transport1) -"orV" = ( -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"otu" = ( -/obj/machinery/door/airlock/glass_centcom{ - icon = 'icons/obj/doors/Doorglass.dmi'; - name = "To: Lower Shuttle Terminal"; - req_access = null; - req_one_access = list(108,109); - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"otw" = ( -/obj/structure/bed/stool/padded/red, -/obj/effect/ghostspawpoint{ - identifier = "NTERTSpawn"; - name = "igs - NTERT" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"otY" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/closet/crate/trashcart, -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/turf/unsimulated/floor, -/area/centcom/spawning) -"ouQ" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"ouV" = ( -/obj/structure/sign/flag/nanotrasen/large/north, -/obj/item/deck/cards, -/obj/structure/table/steel, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"ouW" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "addon4" - }, -/area/shuttle/mercenary) -"owo" = ( -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/structure/mirror{ - pixel_y = 32 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"oww" = ( -/obj/random/pottedplant, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/shuttle/merchant) -"owO" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "6,3" - }, -/area/shuttle/merchant) -"owT" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"oxc" = ( -/obj/machinery/recharge_station, -/turf/unsimulated/floor, -/area/antag/burglar) -"oxe" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/syndicate_elite) -"oxr" = ( -/obj/structure/shuttle_part/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "1,6"; - name = "autoshuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/arrival) -"oyh" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_dininghall) -"oyk" = ( -/obj/structure/window/reinforced/crescent, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/steel, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"oyW" = ( -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"ozg" = ( -/obj/structure/closet{ - icon_door = "white"; - name = "Fresh Scrubs" - }, -/obj/item/clothing/under/rank/medical/surgeon/pmc, -/obj/item/clothing/under/rank/medical/surgeon/pmc, -/obj/item/clothing/under/rank/medical/surgeon/pmc, -/obj/item/clothing/shoes/sneakers, -/obj/item/clothing/shoes/sneakers, -/obj/item/clothing/shoes/sneakers, -/obj/item/clothing/head/surgery/pmc, -/obj/item/clothing/head/surgery/pmc, -/obj/item/clothing/head/surgery/pmc, -/obj/item/clothing/accessory/apron/surgery, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"ozQ" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"oAl" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/centcom/ferry) -"oAu" = ( -/obj/structure/bed/stool/padded/red, -/obj/effect/ghostspawpoint{ - identifier = "NTERTSpawn"; - name = "igs - NTERT" - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"oBd" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/window/reinforced/crescent, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/grass, -/area/centcom/bar) -"oBu" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"oBC" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "7,0" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"oCm" = ( -/obj/machinery/door/airlock/command{ - name = "Cockpit"; - req_access = list(19); - dir = 1 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/escape) -"oCD" = ( -/obj/item/stamp/centcomm, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/table/standard, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"oCF" = ( -/obj/machinery/door/airlock/centcom{ - name = "Auxillary Cryogenics"; - req_access = null - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/ferry) -"oDl" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "damaged1" - }, -/area/antag/raider) -"oDp" = ( -/obj/effect/floor_decal/corner/grey/full, -/turf/unsimulated/floor, -/area/centcom/control) -"oDD" = ( -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"oEe" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/table/rack, -/obj/item/gun/energy/rifle/ionrifle{ - pixel_y = 6 - }, -/obj/item/gun/energy/rifle/ionrifle{ - pixel_y = -2 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"oEI" = ( -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/legion) -"oEL" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/turretid{ - ailock = 1; - check_arrest = 0; - check_records = 0; - name = "checkpoint turrets"; - pixel_x = 31; - req_access = list(111) - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/legion) -"oEM" = ( -/turf/simulated/floor/beach/sand{ - icon_state = "beachcorner" - }, -/area/centcom/shared_dream) -"oFf" = ( -/obj/machinery/acting/changer, -/turf/unsimulated/floor, -/area/antag/mercenary) -"oFg" = ( -/obj/structure/table/holotable, -/obj/item/toy/ringbell, -/obj/item/clothing/gloves/boxing/hologlove, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_boxingcourt) -"oGi" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/escape) -"oGs" = ( -/obj/structure/table/standard, -/obj/item/storage/box/gloves, -/obj/item/storage/box/masks, -/obj/item/reagent_containers/hypospray/autoinjector/survival, -/obj/item/reagent_containers/hypospray/autoinjector/survival, -/obj/item/reagent_containers/hypospray/autoinjector/survival, -/obj/item/reagent_containers/hypospray/autoinjector/survival, -/obj/item/reagent_containers/inhaler/pneumalin, -/obj/item/reagent_containers/inhaler/pneumalin, -/obj/item/reagent_containers/inhaler/pneumalin, -/obj/item/reagent_containers/hypospray, -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/obj/structure/sign/flag/biesel/large/north, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"oHw" = ( -/obj/effect/floor_decal/spline/plain/corner/black{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"oHy" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"oIw" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/obj/machinery/door/airlock/glass_centcom{ - name = "Cryogenics"; - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"oID" = ( -/turf/unsimulated/wall/fakepdoor{ - dir = 8; - name = "Blast door" - }, -/area/centcom/distress_prep) -"oII" = ( -/obj/structure/bed/stool/padded/red{ - pixel_y = 10 - }, -/obj/effect/ghostspawpoint{ - identifier = "NTERTSpawn"; - name = "igs - NTERT" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"oIS" = ( -/obj/machinery/porta_turret/net{ - check_arrest = 0; - check_records = 0; - check_wildlife = 0; - health = 120; - maxhealth = 120; - req_one_access = list(110) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"oJl" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"oJY" = ( -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/specops) -"oKI" = ( -/obj/effect/floor_decal/corner/beige/full, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"oKR" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "1,2" - }, -/area/shuttle/mercenary) -"oLt" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"oLD" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "7,2" - }, -/area/shuttle/mercenary) -"oNa" = ( -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"oNp" = ( -/obj/effect/landmark{ - name = "LateJoinCorporate Liaison" - }, -/obj/structure/bed/stool/chair/padded/blue, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/ferry) -"oNt" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/specops) -"oNu" = ( -/obj/random/pottedplant, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/burglar) -"oNv" = ( -/obj/structure/table/standard, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/reagent_containers/spray/cleaner, -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"oNX" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/stalkybush, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_dininghall) -"oOm" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"oOB" = ( -/obj/structure/bed/stool/chair/padded/black{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"oOX" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "10,2"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/specops) -"oPn" = ( -/obj/effect/floor_decal/corner/beige/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"oPw" = ( -/obj/effect/decal/fake_object{ - icon = 'icons/obj/doors/rapid_pdoor.dmi'; - icon_state = "shutter0"; - name = "shutter" - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"oPz" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"oPA" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/fake_object{ - icon = 'icons/obj/doors/rapid_pdoor.dmi'; - icon_state = "shutter0"; - name = "shutter" - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"oPB" = ( -/obj/structure/shuttle_part/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "0,3"; - name = "autoshuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/arrival) -"oPE" = ( -/turf/simulated/floor/shuttle/tan, -/area/shuttle/arrival) -"oPF" = ( -/turf/simulated/wall/shuttle/unique/burglar{ - icon_state = "4,0" - }, -/area/shuttle/burglar) -"oPO" = ( -/obj/structure/window/shuttle/unique/mercenary{ - icon_state = "7,25"; - outside_window = 1 - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"oPP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"oPT" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "5,22" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"oQt" = ( -/turf/simulated/wall/shuttle/unique/ert{ - icon_state = "7,4" - }, -/area/shuttle/specops) -"oQu" = ( -/obj/structure/shuttle_part/transfer{ - density = 0; - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "14,13"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"oQw" = ( -/obj/random/pottedplant, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"oQM" = ( -/obj/item/device/paicard, -/obj/item/device/paicard, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/structure/railing/mapped{ - name = "adjusted railing" - }, -/obj/structure/table/steel, -/obj/effect/floor_decal/spline/plain/black, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/specops) -"oRh" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "8,1" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"oRj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/porta_turret/crescent, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"oRm" = ( -/obj/structure/shuttle_part/transfer{ - density = 0; - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "14,15"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"oRn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"oRK" = ( -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/grass, -/area/centcom/shared_dream) -"oRO" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "15,3" - }, -/area/shuttle/mercenary) -"oSo" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"oSD" = ( -/obj/machinery/cryopod, -/turf/simulated/floor/carpet/cyan, -/area/centcom/ferry) -"oTX" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/window/reinforced/crescent, -/obj/structure/flora/ausbushes/grassybush{ - pixel_y = 3 - }, -/turf/simulated/floor/grass, -/area/centcom/holding) -"oUr" = ( -/obj/structure/table/rack, -/obj/item/rig/ert, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"oUt" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "3,11"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/supply/dock) -"oUZ" = ( -/obj/machinery/door/blast/shutters/open{ - dir = 2; - name = "Droppods" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"oVZ" = ( -/obj/machinery/vending/snack{ - pixel_x = -4; - pixel_y = -2 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"oWu" = ( -/obj/structure/sign/pods{ - desc = "A direction sign which reads 'DROPPODS'."; - name = "\improper DROPPODS" - }, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/legion/hangar5) -"oWB" = ( -/obj/structure/table/rack, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/rig_module/cooling_unit, -/obj/item/rig_module/cooling_unit, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/distress_prep) -"oWD" = ( -/obj/structure/window/shuttle/unique/merchant{ - icon_state = "19,1" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "merchant_bridge"; - name = "privacy shutter" - }, -/turf/simulated/floor/plating, -/area/shuttle/merchant) -"oWL" = ( -/obj/structure/table/reinforced, -/obj/item/storage/wallet/random, -/turf/simulated/floor/carpet/cyan, -/area/shuttle/merchant) -"oXd" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "0,6" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"oXr" = ( -/obj/structure/table/reinforced, -/turf/simulated/floor/carpet/cyan, -/area/shuttle/merchant) -"oXE" = ( -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/extinguisher_cabinet/west, -/obj/item/reagent_containers/weldpack{ - pixel_y = -10 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"oXQ" = ( -/obj/structure/sign/double/map/right{ - pixel_y = 32 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"oXS" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4; - name = "adjusted railing" - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/specops) -"oYo" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/space/dynamic, -/area/template_noop) -"oYq" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/turf/space/dynamic, -/area/template_noop) -"oYx" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"oZm" = ( -/obj/structure/closet/gimmick{ - name = "emergency response team wardrobe" - }, -/obj/item/clothing/under/syndicate/combat, -/obj/item/clothing/under/ert, -/obj/item/clothing/head/beret/centcom/officer, -/obj/item/storage/backpack/ert/medical, -/obj/item/clothing/suit/armor/vest/ert/medical, -/obj/item/clothing/head/helmet/ert/medical, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/sign/flag/coalition{ - pixel_x = 29 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"oZr" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/centcom/distress_prep) -"oZE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"pau" = ( -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/suppy) -"paU" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/obj/machinery/appliance/cooker/stove, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"pbO" = ( -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/start) -"pcu" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "12,3"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"pcw" = ( -/obj/effect/floor_decal/corner/red, -/turf/unsimulated/floor, -/area/antag/mercenary) -"pcE" = ( -/obj/structure/window/shuttle/unique/merchant{ - icon_state = "21,3" - }, -/turf/simulated/floor/plating, -/area/shuttle/merchant) -"pcI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"pdo" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "1,7"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"peq" = ( -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 4; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/turf/simulated/floor/holofloor/space{ - blocks_air = 1; - density = 1; - dynamic_lighting = 1; - icon_state = "black" - }, -/area/antag/ninja) -"peC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"pfR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/merchant_station/warehouse) -"pfY" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/porta_turret/crescent, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"pgL" = ( -/obj/structure/shuttle_part/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "13,3"; - name = "autoshuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/arrival) -"pgY" = ( -/obj/item/wrench, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"phH" = ( -/obj/structure/flora/rock/pile{ - density = 0; - icon_state = "basalt3"; - pixel_x = 11; - pixel_y = 16 - }, -/obj/effect/overlay/palmtree_r{ - density = 0; - pixel_x = 24 - }, -/turf/simulated/floor/beach/sand{ - icon_state = "desert" - }, -/area/centcom/shared_dream) -"phW" = ( -/obj/structure/window/reinforced/crescent, -/obj/structure/flora/ausbushes/grassybush{ - pixel_y = 3 - }, -/turf/simulated/floor/grass, -/area/centcom/holding) -"pjc" = ( -/obj/machinery/door/blast/regular{ - id = "thunderdome"; - name = "Thunderdome Blast Door" - }, -/turf/simulated/floor, -/area/tdome/tdome1) -"pjd" = ( -/obj/machinery/door/airlock/command{ - name = "Thunderdome Administration"; - req_access = list(102) - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/tdome/tdome1) -"pjh" = ( -/obj/machinery/door/airlock/centcom{ - name = "Green Backstage"; - req_access = list(102) - }, -/turf/unsimulated/floor, -/area/tdome/tdomeadmin) -"pjv" = ( -/obj/machinery/light/small/emergency, -/turf/simulated/floor/reinforced, -/area/shuttle/mercenary) -"pjH" = ( -/obj/machinery/door/airlock/hatch{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "distress_shuttle_hatch_fore"; - locked = 1; - name = "Fore Shuttle Hatch"; - req_access = list(112); - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "distress_blast_fore"; - name = "Blast Door"; - pixel_y = 22; - req_access = list(112) - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "distress_blast_fore"; - name = "Blast Door" - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/distress) -"pjJ" = ( -/obj/structure/shuttle_part/merchant{ - density = 0; - icon_state = "1,2" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"pjL" = ( -/obj/machinery/door/airlock/glass_centcom{ - name = "Response Team Leader's Office"; - req_access = list(103); - dir = 4 - }, -/obj/machinery/door/blast/odin/shuttle/ert{ - dir = 2; - name = "blastdoor" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"pkt" = ( -/turf/unsimulated/wall/fakeairlock{ - icon = 'icons/obj/doors/Doorext.dmi'; - icon_state = "door_locked"; - name = "Service Airlock" - }, -/area/centcom/legion/hangar5) -"plr" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/antag/loner) -"plz" = ( -/turf/simulated/floor/grass, -/area/centcom/shared_dream) -"plM" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "12,1"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"pmg" = ( -/obj/machinery/door/blast/odin/open{ - _wifi_id = "merc_droppod_2"; - name = "Pod B" - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"pmr" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "2,2" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"pmD" = ( -/obj/structure/table/stone/marble, -/obj/item/material/kitchen/rollingpin{ - pixel_x = 6; - pixel_y = 17 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/condiment/sugar{ - pixel_x = 7; - pixel_y = 8 - }, -/obj/item/reagent_containers/cooking_container/board/bowl, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"pmR" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "3,2" - }, -/area/shuttle/merchant) -"pnp" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "5,2" - }, -/area/shuttle/mercenary) -"pns" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"poM" = ( -/obj/effect/floor_decal/corner_wide/paleblue/diagonal{ - dir = 8 - }, -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"ppa" = ( -/obj/item/material/ashtray/bronze{ - pixel_y = -7 - }, -/obj/structure/table/glass{ - name = "reinforced glass table"; - table_reinf = "glass" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/evac) -"ppv" = ( -/turf/simulated/wall/shuttle/unique/ert{ - icon_state = "0,3" - }, -/area/centcom/specops) -"ppV" = ( -/obj/effect/decal/fake_object{ - density = 1; - desc = "It opens and closes"; - icon = 'icons/obj/doors/Doorglass.dmi'; - icon_state = "door_locked"; - name = "To: Mendell City Shuttle Terminal" - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"ppZ" = ( -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/structure/mirror{ - pixel_y = 31 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/unsimulated/floor, -/area/centcom/spawning) -"pqq" = ( -/obj/structure/shuttle_part/tcfl{ - icon_state = "0,0" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/legion) -"pqL" = ( -/obj/item/storage/box/fancy/donut, -/obj/structure/table/steel, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"prI" = ( -/obj/structure/closet/gimmick{ - name = "emergency response team wardrobe" - }, -/obj/item/clothing/under/syndicate/combat, -/obj/item/clothing/under/ert, -/obj/item/clothing/head/beret/centcom/officer, -/obj/item/storage/backpack/ert/engineer, -/obj/item/clothing/suit/armor/vest/ert/engineer, -/obj/item/clothing/head/helmet/ert/engineer, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"prK" = ( -/obj/machinery/computer/borgupload, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"psh" = ( -/obj/structure/table/stone/marble, -/obj/item/reagent_containers/food/snacks/sushi_serve{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/snacks/sushi_serve{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/snacks/breakfast_wrap{ - pixel_x = 29; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/snacks/breakfast_wrap{ - pixel_x = 29; - pixel_y = 3 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"psm" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "1,0" - }, -/area/shuttle/legion) -"psn" = ( -/obj/machinery/light{ - name = "adjusted light fixture"; - pixel_x = -16; - icon_state = "tube_empty" - }, -/obj/item/clothing/mask/balaclava{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/machinery/recharger{ - pixel_x = -10 - }, -/obj/item/clothing/mask/balaclava{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/clothing/mask/balaclava{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/clothing/mask/balaclava{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/clothing/mask/balaclava{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/clothing/mask/balaclava{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/structure/table/steel, -/obj/effect/floor_decal/industrial/warning, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"psq" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/industrial/warning, -/obj/item/storage/backpack/ert/security{ - pixel_x = 4 - }, -/obj/item/storage/backpack/ert/security{ - pixel_x = -12 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"psL" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"psT" = ( -/turf/simulated/wall/shuttle/unique/cargo{ - icon_state = "0,4" - }, -/area/supply/dock) -"ptw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 4; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"puj" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"pux" = ( -/obj/item/pickaxe, -/turf/simulated/floor/exoplanet/barren, -/area/centcom/shared_dream) -"puD" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "4,2" - }, -/area/shuttle/merchant) -"pvz" = ( -/obj/machinery/shieldgen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"pvQ" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"pwd" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "FIB Primary"; - req_access = list(109) - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/item/gun/energy/rifle, -/obj/item/gun/energy/rifle, -/obj/item/gun/energy/rifle, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"pxm" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "carpet" - }, -/area/centcom/bar) -"pxn" = ( -/obj/structure/shuttle_part/tcfl{ - icon_state = "2,0" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/legion) -"pxq" = ( -/obj/structure/shuttle_part/tcfl{ - icon_state = "3,0" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/legion) -"pxL" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "3,18" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"pxY" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "5,2" - }, -/area/shuttle/merchant) -"pyg" = ( -/obj/effect/floor_decal/industrial/loading/yellow, -/turf/unsimulated/floor, -/area/centcom/spawning) -"pyn" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "6,2" - }, -/area/shuttle/merchant) -"pzc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - name = "adjusted light fixture"; - pixel_y = 16; - icon_state = "tube_empty" - }, -/obj/machinery/vending/coffee/free, -/obj/effect/floor_decal/corner/dark_blue/full, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"pzh" = ( -/turf/simulated/wall/shuttle/unique/distress{ - icon_state = "2,1" - }, -/area/shuttle/distress) -"pzn" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "specops_centcom_dock"; - name = "docking port controller"; - pixel_y = -25; - req_one_access = list(103); - tag_door = "specops_centcom_dock_door" - }, -/obj/machinery/porta_turret/crescent, -/obj/effect/floor_decal/industrial/warning, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"pzs" = ( -/obj/machinery/computer/security/telescreen, -/obj/effect/floor_decal/corner/blue/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeobserve) -"pzt" = ( -/obj/structure/shuttle_part/ccia{ - icon_state = "2,0" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/transport1) -"pzN" = ( -/obj/machinery/door/airlock/centcom{ - icon = 'icons/obj/doors/Doorglass.dmi'; - locked = 1; - name = "Rapid Transit Ticket Kiosk"; - opacity = 0; - req_access = list(101); - dir = 1 - }, -/obj/item/tape/engineering{ - icon_state = "engineering_door" - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/bar) -"pAs" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/obj/structure/sign/staff_only, -/turf/unsimulated/floor/plating, -/area/centcom/bar) -"pBa" = ( -/obj/effect/landmark{ - name = "LateJoinMerchant" - }, -/obj/effect/ghostspawpoint/button{ - desc = "This button is used for summoning an assistant from the upper floors."; - dir = 8; - identifier = "MerchantAss"; - name = "call button"; - pixel_x = 24; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/merchant_station) -"pBg" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "4,0" - }, -/area/shuttle/legion) -"pBV" = ( -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "escapeshuttle_leave"; - teleport_x = 25; - teleport_x_offset = 245; - teleport_y = 25; - teleport_y_offset = 245; - teleport_z = 6; - teleport_z_offset = 6 - }, -/turf/template_noop, -/area/template_noop) -"pCe" = ( -/obj/structure/bed/stool/bar/padded/red, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"pCm" = ( -/turf/simulated/wall/shuttle/unique/ccia{ - icon_state = "10,3" - }, -/area/shuttle/transport1) -"pCq" = ( -/obj/structure/shuttle/engine/propulsion{ - name = "spaceship engine"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1; - invisibility = 101; - name = "adjusted light fixture"; - pixel_x = 16; - pixel_y = 32; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor/plating, -/area/centcom/distress_prep) -"pCB" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "5,0" - }, -/area/shuttle/legion) -"pDr" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"pDA" = ( -/obj/structure/flora/rock/pile{ - density = 0; - icon_state = "basalt2"; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/flora/rock/pile{ - pixel_x = -6; - pixel_y = -6 - }, -/turf/simulated/floor/beach/sand{ - icon_state = "desert" - }, -/area/centcom/shared_dream) -"pDD" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "7,0" - }, -/area/shuttle/legion) -"pDO" = ( -/obj/structure/bed/stool, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"pEo" = ( -/obj/structure/closet/walllocker/medical/secure{ - name = "blood closet"; - pixel_x = -29; - pixel_y = 30; - req_access = null - }, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"pEp" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/structure/railing/mapped{ - name = "adjusted railing" - }, -/obj/effect/floor_decal/spline/plain/black, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/specops) -"pEu" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/distress_prep) -"pEG" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4; - name = "adjusted railing" - }, -/obj/structure/railing/mapped{ - name = "adjusted railing" - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 6 - }, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/specops) -"pEJ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"pEK" = ( -/turf/simulated/wall/shuttle/unique/mercenary/small{ - icon_state = "6,10" - }, -/area/shuttle/syndicate_elite) -"pEO" = ( -/obj/structure/lattice/catwalk/indoor, -/turf/space/dynamic, -/area/template_noop) -"pEP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/fake_object{ - density = 1; - icon = 'icons/obj/doors/rapid_pdoor.dmi'; - icon_state = "shutterhalf"; - name = "shutter" - }, -/obj/effect/decal/cleanable/cobweb, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"pES" = ( -/obj/item/storage/box/fancy/cigarettes/dromedaryco{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/flame/lighter/random{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/structure/table/steel, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"pFI" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"pFR" = ( -/obj/machinery/door/window/northright{ - name = "display case"; - req_access = list(110) - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"pFS" = ( -/obj/item/rig_module/chem_dispenser/injector, -/obj/item/rig_module/chem_dispenser/combat, -/obj/item/rig_module/device/rfd_c, -/obj/item/rig_module/mounted/taser, -/obj/item/rig_module/mounted/plasmacutter, -/obj/item/rig_module/device/healthscanner, -/obj/item/rig_module/device/drill, -/obj/item/rig_module/grenade_launcher, -/obj/item/rig_module/mounted/egun, -/obj/item/rig_module/mounted, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/closet{ - icon_door = "blue"; - name = "spare modules" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"pGt" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window{ - dir = 1; - name = "display case"; - req_access = list(110) - }, -/obj/structure/table/rack{ - pixel_x = 3; - pixel_y = -2 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"pGw" = ( -/obj/machinery/computer/aiupload, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"pGM" = ( -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 4; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/turf/simulated/floor/holofloor/space{ - blocks_air = 1; - density = 1; - dynamic_lighting = 1; - icon_state = "black" - }, -/area/antag/ninja) -"pGT" = ( -/obj/effect/decal/fake_object{ - desc = "A panel to control the elevator."; - icon = 'icons/obj/turbolift.dmi'; - icon_state = "panel"; - name = "elevator panel" - }, -/turf/simulated/wall/elevator, -/area/centcom/legion) -"pHg" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "9,0"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"pHE" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/northright{ - name = "display case"; - req_access = list(110) - }, -/obj/structure/table/rack{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/machinery/light{ - name = "adjusted light fixture"; - pixel_x = -16; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"pIu" = ( -/obj/structure/closet/gimmick{ - name = "emergency response team wardrobe" - }, -/obj/item/clothing/under/syndicate/combat, -/obj/item/clothing/under/ert, -/obj/item/clothing/head/beret/centcom/officer, -/obj/item/storage/backpack/ert/security, -/obj/item/clothing/suit/armor/vest/ert/security, -/obj/item/clothing/head/helmet/ert/security, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/light{ - dir = 4; - name = "adjusted light fixture"; - pixel_y = 16; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"pIK" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/machinery/button/remote/blast_door{ - id = "tcflcheckpoint"; - name = "Checkpoint Lockdown"; - pixel_x = -36; - pixel_y = 6 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/legion) -"pIN" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/standard{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/machinery/door/window/northright{ - name = "display case"; - req_access = list(110) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"pIT" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/northright{ - name = "display case"; - req_access = list(110) - }, -/obj/structure/table/rack{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/machinery/light{ - name = "adjusted light fixture"; - pixel_x = -16; - icon_state = "tube_empty" - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"pIW" = ( -/obj/machinery/vending/cola{ - name = "Free Robust Softdrinks"; - prices = list() - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"pJw" = ( -/obj/structure/shuttle_part/ccia{ - icon_state = "12,1" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/transport1) -"pKz" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"pKM" = ( -/obj/effect/step_trigger/thrower/shuttle/south, -/turf/space/transit/bluespace/west, -/area/template_noop) -"pKR" = ( -/obj/structure/closet/gimmick{ - name = "emergency response team wardrobe" - }, -/obj/item/clothing/under/syndicate/combat, -/obj/item/clothing/under/ert, -/obj/item/clothing/head/beret/centcom/officer, -/obj/item/storage/backpack/ert/security, -/obj/item/clothing/suit/armor/vest/ert/security, -/obj/item/clothing/head/helmet/ert/security, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"pLc" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "16,3" - }, -/area/shuttle/merchant) -"pLp" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "7,4"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"pLt" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/ghostspawpoint{ - identifier = "OdinDoctor"; - name = "igs - OdinDoctor" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"pLD" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1337; - id_tag = "merchant_shuttle"; - pixel_y = -24; - tag_door = "merchant_shuttle_hatch" - }, -/obj/structure/closet/secure_closet/merchant, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"pMe" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "0,4"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/specops) -"pMG" = ( -/obj/effect/decal/fake_object{ - desc = "A button."; - icon = 'icons/obj/turbolift.dmi'; - icon_state = "button"; - name = "elevator button"; - pixel_y = 4 - }, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/spawning) -"pMW" = ( -/obj/vehicle/bike/speeder, -/obj/structure/sign/flag/biesel/large/north, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"pNc" = ( -/obj/machinery/door/airlock/silver{ - name = "Washroom" - }, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/antag/mercenary) -"pNC" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/vehicle/bike/speeder, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"pNG" = ( -/obj/machinery/vending/snack{ - name = "Free Chocolate Corp"; - prices = list() - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"pNM" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/conveyor{ - dir = 10; - id = "hideout_shipping"; - reversed = 1 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1332; - id_tag = "pirate_hideout"; - pixel_x = 28; - pixel_y = -28; - tag_door = "pirate_hideout_door" - }, -/turf/unsimulated/floor/plating, -/area/antag/raider) -"pOh" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "8,0" - }, -/area/shuttle/legion) -"pOz" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/random/pottedplant, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/distress_prep) -"pOQ" = ( -/obj/structure/closet/secure_closet/merchant, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"pOS" = ( -/obj/structure/holostool, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_dininghall) -"pPA" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "5,19" - }, -/area/shuttle/mercenary) -"pQe" = ( -/turf/simulated/wall/shuttle/unique/ert{ - icon_state = "0,3" - }, -/area/shuttle/specops) -"pQp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-22"; - pixel_x = -1; - pixel_y = 23 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/evac) -"pQP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/steel, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"pRd" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"pRl" = ( -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/obj/structure/bed/stool/chair/shuttle, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"pRX" = ( -/obj/structure/window/shuttle/unique/merchant{ - icon_state = "20,2" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) -"pSH" = ( -/obj/structure/closet/crate/secure/legion{ - locked = 0; - opened = 1 - }, -/obj/item/device/magnetic_lock/security/legion, -/obj/item/device/magnetic_lock/security/legion, -/obj/item/device/magnetic_lock/security/legion, -/obj/item/device/magnetic_lock/security/legion, -/obj/item/device/magnetic_lock/security/legion, -/obj/item/device/magnetic_lock/security/legion, -/obj/machinery/light/spot{ - dir = 1; - icon_state = "tube1" - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"pSI" = ( -/obj/structure/window/shuttle/unique/merchant{ - icon_state = "21,2" - }, -/turf/simulated/floor/plating, -/area/shuttle/merchant) -"pSM" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/bed/stool/chair/padded/blue{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/spawning) -"pTg" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor/plating, -/area/centcom/spawning) -"pTm" = ( -/obj/machinery/porta_turret/legion, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"pTs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/obj/item/trash/cigbutt, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"pTQ" = ( -/obj/structure/table/steel, -/obj/item/circuitboard/smes{ - pixel_y = 6 - }, -/obj/item/circuitboard/smes, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"pUe" = ( -/obj/item/shovel, -/obj/effect/decal/fake_object{ - icon = 'icons/obj/mining.dmi'; - icon_state = "ore_glass"; - name = "sand"; - pixel_x = 11; - pixel_y = -6 - }, -/turf/simulated/floor/exoplanet/barren, -/area/centcom/shared_dream) -"pUh" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "22,2" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"pUx" = ( -/turf/simulated/wall/shuttle/unique/cargo{ - icon_state = "6,9" - }, -/area/supply/dock) -"pUK" = ( -/obj/structure/table/reinforced/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"pUN" = ( -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/legion/hangar5) -"pUU" = ( -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"pVW" = ( -/turf/simulated/wall/shuttle/unique/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "2,2"; - name = "autoshuttle" - }, -/area/shuttle/arrival) -"pWa" = ( -/obj/structure/sign/securearea, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/specops) -"pWc" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/bed/stool/chair/padded/blue{ - dir = 8 - }, -/turf/simulated/floor/shuttle/tan, -/area/centcom/bar) -"pWh" = ( -/obj/machinery/light/small/emergency, -/turf/unsimulated/floor/plating, -/area/centcom/ferry) -"pWv" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"pWO" = ( -/turf/simulated/wall, -/area/template_noop) -"pWS" = ( -/obj/machinery/door/airlock/hatch{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "legion_shuttle_hatch"; - locked = 1; - name = "Dropship Hatch"; - req_access = list(111); - dir = 1 - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "tcflblaststarboard"; - name = "Starboard Blast Door" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"pWU" = ( -/obj/effect/floor_decal/spline/plain/corner/black{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"pXr" = ( -/obj/effect/floor_decal/corner/paleblue, -/turf/unsimulated/floor, -/area/centcom/ferry) -"pXv" = ( -/turf/simulated/wall/shuttle/unique/mercenary/small{ - icon_state = "1,4" - }, -/area/shuttle/syndicate_elite) -"pXD" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "2,1" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"pYl" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/turf/unsimulated/floor{ - icon_state = "asteroidplating" - }, -/area/template_noop) -"pZi" = ( -/turf/simulated/wall/shuttle/unique/ert{ - icon_state = "0,2" - }, -/area/shuttle/specops) -"pZr" = ( -/obj/machinery/vending/coffee/free{ - pixel_x = -1 - }, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"pZw" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"qav" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"qaW" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/raider) -"qbz" = ( -/obj/machinery/door/airlock/hatch{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "legion_shuttle_hatch"; - locked = 1; - name = "Dropship Hatch"; - req_access = list(111); - dir = 1 - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "tcflblaststarboard"; - name = "Starboard Blast Door" - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "tcflblaststarboard"; - name = "Starboard Blast Door"; - pixel_x = 22; - req_access = list(111) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"qcb" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/effect/decal/fake_object/light_source/invisible, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/ninja) -"qce" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/obj/machinery/status_display/arrivals_display, -/turf/unsimulated/floor{ - icon_state = "plating" - }, -/area/centcom/spawning) -"qci" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/obj/random/pottedplant, -/turf/unsimulated/floor, -/area/centcom/holding) -"qcl" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"qcr" = ( -/obj/structure/table/stone/marble, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"qdi" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/effect/decal/fake_object{ - desc = "An automated gun turret."; - icon = 'icons/obj/turrets.dmi'; - icon_state = "cover_0"; - name = "turret" - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"qdJ" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "13,1"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"qdK" = ( -/obj/structure/shuttle_part/ccia{ - icon_state = "12,2" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/transport1) -"qel" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-22" - }, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"qer" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "0,0"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/specops) -"qfW" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"qhb" = ( -/obj/effect/shuttle_landmark/ert/start, -/obj/machinery/computer/shuttle_control/specops, -/turf/simulated/floor/shuttle/black, -/area/shuttle/specops) -"qhc" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/structure/noticeboard{ - pixel_x = 2; - pixel_y = 31 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"qhk" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"qhn" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/window/reinforced/crescent, -/obj/effect/floor_decal/sign/b, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/holding) -"qhw" = ( -/obj/machinery/door/blast/regular/open{ - id = "tcflcheckpointouter"; - name = "Checkpoint Outer" - }, -/obj/machinery/door/blast/odin/shuttle/tcfl{ - id = "tcflhangar5" - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"qiS" = ( -/obj/structure/table/rack, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/item/rig/merc/empty, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"qiY" = ( -/turf/unsimulated/wall/darkshuttlewall, -/area/tdome/tdome2) -"qje" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = -9; - pixel_y = 7 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"qjw" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/machinery/door/window/southright{ - dir = 4; - req_access = list(102) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"qjR" = ( -/obj/machinery/iv_drip, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"qlg" = ( -/obj/structure/shuttle_part/burglar{ - icon_state = "11,3" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/burglar) -"qlC" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/flora/ausbushes/pointybush, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"qlN" = ( -/obj/item/modular_computer/console/preset/research, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - name = "adjusted window" - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"qmi" = ( -/obj/machinery/computer/shuttle_control/multi/burglar{ - name = "shuttle control console" - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/burglar) -"qmq" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-22"; - pixel_y = 23 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"qmz" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"qmV" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 4 - }, -/obj/structure/sign/poster{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/merchant_station) -"qnp" = ( -/obj/effect/floor_decal/corner/grey{ - dir = 5 - }, -/obj/effect/floor_decal/sign/a, -/turf/unsimulated/floor, -/area/centcom/control) -"qnC" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/holding) -"qnL" = ( -/obj/structure/shuttle_part/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "13,0"; - name = "autoshuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/arrival) -"qnP" = ( -/turf/simulated/floor/beach/sand{ - icon_state = "desert4" - }, -/area/centcom/shared_dream) -"qoa" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "propulsion_l"; - name = "spaceship engine"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor/plating, -/area/centcom/distress_prep) -"qoj" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "0,1" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"qoI" = ( -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "CCIABS" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "CCIABS" - }, -/obj/structure/window/reinforced/polarized{ - id = "CCIABS" - }, -/obj/structure/grille, -/turf/unsimulated/floor/plating, -/area/centcom/control) -"qoQ" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "1,1" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"qpU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/mercenary) -"qqj" = ( -/turf/simulated/wall/shuttle/unique/burglar{ - icon_state = "10,1" - }, -/area/shuttle/burglar) -"qqp" = ( -/obj/machinery/door/blast/odin{ - _wifi_id = "odin_arrivals_lockdown"; - density = 0; - icon_state = "pdoor0"; - id = "CentComArrivalsForeInt"; - name = "Security Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor, -/area/centcom/checkpoint/fore) -"qry" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "11,0" - }, -/area/shuttle/legion) -"qrB" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/obj/structure/sign/directions/medical{ - dir = 1; - pixel_y = -5 - }, -/turf/unsimulated/floor/plating, -/area/antag/raider) -"qrQ" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"qrX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"qsh" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "2,1" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"qsn" = ( -/obj/effect/floor_decal/corner_wide/paleblue/diagonal{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/structure/closet/crate/medical, -/obj/item/reagent_containers/inhaler/pneumalin, -/obj/item/reagent_containers/inhaler/pneumalin, -/obj/item/reagent_containers/inhaler/pneumalin, -/obj/item/reagent_containers/inhaler/pneumalin, -/obj/item/reagent_containers/hypospray/autoinjector/survival, -/obj/item/reagent_containers/hypospray/autoinjector/survival, -/obj/item/reagent_containers/hypospray/autoinjector/survival, -/obj/item/reagent_containers/hypospray/autoinjector/survival, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"qso" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"qsr" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "3,1" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"qss" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"qsA" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_dininghall) -"qtg" = ( -/obj/structure/shuttle_part/raider{ - density = 0; - icon_state = "11,17" - }, -/turf/space/dynamic, -/area/shuttle/skipjack) -"qtH" = ( -/obj/effect/floor_decal/corner/grey/full, -/obj/structure/bed/stool/chair/padded/black{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"qtQ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/shieldwallgen, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"quz" = ( -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"quG" = ( -/obj/machinery/door/airlock/external{ - frequency = 1332; - icon_state = "door_locked"; - id_tag = "pirate_hideout_door"; - locked = 1; - name = "hideout airlock"; - req_access = list(110); - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"quS" = ( -/turf/simulated/wall/shuttle/unique/mercenary/small{ - icon_state = "7,2" - }, -/area/shuttle/syndicate_elite) -"qvf" = ( -/obj/structure/closet/crate/medical, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/storage/firstaid/surgery, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/effect/floor_decal/industrial/outline/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 4; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"qvZ" = ( -/obj/item/paper_bin, -/obj/item/pen/multi, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/obj/structure/table/standard, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"qwA" = ( -/obj/machinery/optable, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/holding) -"qwZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor/northright{ - name = "checkpoint"; - req_access = list(101) - }, -/obj/machinery/door/blast/odin{ - icon_state = "shutter1"; - icon_state_closed = "shutter1"; - icon_state_closing = "shutterc1"; - icon_state_open = "shutter0"; - icon_state_opening = "shutterc0"; - id = "CentComArrivalsForeChkpt"; - name = "checkpoint shutter" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/checkpoint/fore) -"qxn" = ( -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/distress_prep) -"qxy" = ( -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/black, -/obj/machinery/sleeper{ - dir = 8 - }, -/obj/item/device/radio/intercom/east{ - frequency = 1213; - name = "Intercom"; - subspace_transmission = 1; - syndie = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"qxH" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/bed/stool/chair/padded/black{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"qxI" = ( -/obj/structure/shuttle_part/merchant, -/turf/space/dynamic, -/area/shuttle/merchant) -"qxL" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "5,1" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"qxN" = ( -/turf/unsimulated/floor/plating, -/area/centcom/holding) -"qyx" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/shuttle/black, -/area/shuttle/distress) -"qza" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/structure/sign/flag/biesel/large/north, -/turf/unsimulated/floor, -/area/centcom/holding) -"qzj" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "6,1" - }, -/area/shuttle/merchant) -"qzr" = ( -/obj/machinery/cryopod/robot, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/spawning) -"qzy" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "7,1" - }, -/area/shuttle/merchant) -"qAm" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-22" - }, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/ferry) -"qAq" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-22"; - pixel_x = 1; - pixel_y = 24 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"qAH" = ( -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/ferry) -"qBY" = ( -/obj/structure/flora/tree/jungle, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass, -/area/centcom/shared_dream) -"qCl" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "13,2" - }, -/area/shuttle/mercenary) -"qDu" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "8,1" - }, -/area/shuttle/merchant) -"qDw" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "9,1" - }, -/area/shuttle/merchant) -"qDS" = ( -/turf/unsimulated/floor, -/area/centcom/legion) -"qDT" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "10,1" - }, -/area/shuttle/merchant) -"qEp" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled{ - start_pressure = 15000 - }, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"qEL" = ( -/obj/structure/shuttle_part/tcfl{ - icon_state = "0,6" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/legion) -"qFf" = ( -/obj/machinery/door/airlock/command{ - name = "Thunderdome Administration"; - req_access = list(102) - }, -/turf/simulated/floor, -/area/tdome/tdome2) -"qFs" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "11,1" - }, -/area/shuttle/merchant) -"qFt" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "13,0" - }, -/area/shuttle/legion) -"qFT" = ( -/obj/machinery/door/airlock/hatch{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "legion_shuttle_hatch"; - locked = 1; - name = "Dropship Hatch"; - req_access = list(111); - dir = 1 - }, -/obj/machinery/door/blast/regular/open{ - dir = 8; - id = "tcflblastport"; - name = "Starboard Blast Door" - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "tcflblastport"; - name = "Port Blast Door"; - pixel_x = -22; - req_access = list(111) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"qGj" = ( -/obj/effect/decal/fake_object/light_source{ - icon = 'icons/obj/mining.dmi'; - icon_state = "purpflag_open"; - light_color = "#A97FAA"; - name = "beacon"; - pixel_y = -2 - }, -/turf/simulated/floor/exoplanet/barren, -/area/centcom/shared_dream) -"qGr" = ( -/obj/structure/window/shuttle/unique/merchant{ - icon_state = "12,1" - }, -/turf/simulated/floor/plating, -/area/shuttle/merchant) -"qGE" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/structure/sign/poster{ - icon_state = "tcflposter"; - pixel_x = -6; - pixel_y = 31; - poster_type = "/datum/poster/bay_67" - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"qGK" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/ferry) -"qHs" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/fake_object{ - density = 1; - icon = 'icons/obj/doors/windoor.dmi'; - icon_state = "leftsecure"; - name = "Tram Boarding" - }, -/obj/effect/floor_decal/spline/plain/black, -/turf/unsimulated/floor/plating, -/area/centcom/bar) -"qHx" = ( -/obj/item/aicard{ - pixel_y = 4 - }, -/obj/item/pinpointer/advpinpointer{ - pixel_y = 3 - }, -/obj/item/stamp/centcomm{ - pixel_y = 4 - }, -/obj/structure/table/wood, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"qHD" = ( -/obj/structure/window/shuttle/unique/merchant{ - icon_state = "13,1" - }, -/turf/simulated/floor/plating, -/area/shuttle/merchant) -"qHQ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/decal/fake_object{ - desc = "An automated turret."; - icon = 'icons/obj/turrets.dmi'; - icon_state = "cover_1"; - name = "turret" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"qHR" = ( -/obj/structure/railing/mapped{ - name = "adjusted railing" - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-21"; - pixel_y = -1 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/evac) -"qIn" = ( -/obj/structure/window/shuttle/unique/merchant{ - icon_state = "14,1" - }, -/turf/simulated/floor/plating, -/area/shuttle/merchant) -"qJG" = ( -/obj/structure/window/shuttle/unique/merchant{ - icon_state = "15,1" - }, -/turf/simulated/floor/plating, -/area/shuttle/merchant) -"qJM" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/unsimulated/floor{ - dir = 9; - icon_state = "tiled_preview" - }, -/area/antag/raider) -"qKr" = ( -/obj/effect/landmark/thunderdome2, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/tdome/tdome2) -"qKH" = ( -/turf/simulated/wall/shuttle/unique/mercenary/small{ - icon_state = "4,2" - }, -/area/shuttle/syndicate_elite) -"qKJ" = ( -/obj/effect/floor_decal/corner_wide/paleblue/diagonal{ - dir = 8 - }, -/obj/machinery/optable, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"qKT" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "13,6" - }, -/area/shuttle/legion) -"qLd" = ( -/obj/machinery/porta_turret/crescent, -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/control) -"qMs" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "5,11"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/supply/dock) -"qMu" = ( -/obj/structure/shuttle_part/tcfl{ - icon_state = "14,6" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/legion) -"qMN" = ( -/obj/structure/shuttle_part/tcfl{ - icon_state = "15,6" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/legion) -"qND" = ( -/obj/structure/shuttle_part/transfer{ - density = 0; - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "14,12"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"qNZ" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "1,20"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"qOq" = ( -/obj/machinery/door/airlock/glass_centcom{ - name = "Diplomatic Waiting Lounge"; - req_access = null; - req_one_access = list(38,72); - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/ferry) -"qOx" = ( -/obj/effect/decal/fake_object{ - icon = 'icons/obj/doors/door_assembly.dmi'; - icon_state = "door_as_ext0"; - name = "damaged airlock" - }, -/turf/unsimulated/floor{ - icon_state = "panelscorched" - }, -/area/antag/raider) -"qPF" = ( -/obj/effect/floor_decal/corner_wide/paleblue/diagonal{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/machinery/vending/wallmed1{ - pixel_x = 28; - req_access = null - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/item/reagent_containers/glass/bottle/peridaxon{ - pixel_x = 8; - pixel_y = -8 - }, -/obj/item/reagent_containers/glass/bottle/peridaxon{ - pixel_x = 8; - pixel_y = -8 - }, -/obj/item/reagent_containers/glass/bottle/antitoxin{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bottle/inaprovaline{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/reagent_containers/glass/bottle/stoxin{ - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/bottle/mortaphenyl{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/reagent_containers/glass/bottle/dexalin_plus{ - pixel_x = 7; - pixel_y = -12 - }, -/obj/item/reagent_containers/glass/bottle/dermaline, -/obj/item/reagent_containers/glass/bottle/butazoline{ - pixel_x = -3; - pixel_y = -8 - }, -/obj/item/reagent_containers/glass/bottle/butazoline{ - pixel_x = -3; - pixel_y = -8 - }, -/obj/item/reagent_containers/syringe, -/obj/item/storage/box/gloves{ - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/bottle/inaprovaline{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/reagent_containers/glass/bottle/thetamycin{ - pixel_x = 9 - }, -/obj/item/reagent_containers/glass/bottle/perconol{ - pixel_x = -7; - pixel_y = -4 - }, -/obj/item/reagent_containers/glass/bottle/perconol{ - pixel_x = -7; - pixel_y = -4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"qRm" = ( -/obj/structure/table/wood, -/obj/effect/decal/fake_object{ - desc = "A colorful drink that smells a lot like rotten fruit."; - icon = 'icons/obj/drinks.dmi'; - icon_state = "xrim"; - name = "Xrim Garden"; - pixel_x = 5; - pixel_y = 6 - }, -/obj/effect/decal/fake_object{ - desc = "A fizzing drink that looks like a really great time."; - icon = 'icons/obj/drinks.dmi'; - icon_state = "rixulin_sundae"; - name = "Rixulin Sundae"; - pixel_x = -6; - pixel_y = 7 - }, -/turf/simulated/floor/beach/sand{ - icon_state = "desert" - }, -/area/centcom/shared_dream) -"qSa" = ( -/obj/effect/shuttle_landmark/arrival/interim, -/turf/space/transit/bluespace/west, -/area/template_noop) -"qSn" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/obj/structure/sign/directions/com{ - dir = 8; - pixel_y = -4 - }, -/obj/structure/sign/directions/medical{ - dir = 1; - pixel_y = 5 - }, -/turf/unsimulated/floor{ - icon_state = "plating" - }, -/area/centcom/holding) -"qSq" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "16,1" - }, -/area/shuttle/merchant) -"qSx" = ( -/obj/machinery/computer/security/nuclear, -/turf/simulated/floor/shuttle/black, -/area/shuttle/syndicate_elite) -"qSC" = ( -/obj/effect/decal/fake_object{ - color = "#545c68"; - dir = 4; - icon = 'icons/obj/railing.dmi'; - icon_state = "mcorneroverlay1"; - name = "railing" - }, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"qSH" = ( -/turf/simulated/wall/shuttle/unique/mercenary/small{ - icon_state = "1,6" - }, -/area/shuttle/syndicate_elite) -"qTh" = ( -/obj/machinery/door/airlock/centcom{ - icon_state = "door_locked"; - locked = 1; - name = "Abandoned Wing"; - req_access = list(150) - }, -/turf/unsimulated/floor, -/area/antag/raider) -"qTD" = ( -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 1; - icon = 'icons/obj/railing.dmi'; - icon_state = "mcorneroverlay1"; - name = "railing" - }, -/turf/simulated/floor/holofloor/space{ - blocks_air = 1; - density = 1; - dynamic_lighting = 1; - icon_state = "black" - }, -/area/antag/ninja) -"qTX" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "17,1" - }, -/area/shuttle/merchant) -"qTY" = ( -/obj/machinery/cryopod/robot, -/obj/machinery/computer/cryopod/robot{ - pixel_y = 28 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/spawning) -"qUe" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"qVd" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"qVB" = ( -/turf/simulated/wall/shuttle/unique/merchant{ - icon_state = "18,1" - }, -/area/shuttle/merchant) -"qWa" = ( -/obj/structure/shuttle_part/tcfl{ - icon_state = "14,0" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/legion) -"qWn" = ( -/obj/structure/bed, -/obj/item/bedsheet/black, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/distress_prep) -"qWx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 4; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/obj/item/reagent_containers/glass/beaker/bluespace, -/obj/machinery/light{ - dir = 4; - name = "adjusted light fixture"; - pixel_x = -3; - icon_state = "tube_empty" - }, -/obj/structure/table/steel, -/obj/machinery/chem_master{ - dir = 1; - pixel_x = -6; - pixel_y = 31 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"qXj" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/control) -"qXk" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/template_noop, -/area/template_noop) -"qXu" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"qXF" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"qXO" = ( -/obj/structure/table/rack, -/obj/item/gun/projectile/automatic/rifle/sts35{ - pixel_y = 6 - }, -/obj/item/gun/projectile/automatic/rifle/sts35{ - pixel_y = -2 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"qYv" = ( -/obj/structure/window/shuttle/unique/mercenary{ - icon_state = "10,24" - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"qZM" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/machinery/door/window/southright{ - dir = 8; - req_access = list(102) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"qZO" = ( -/obj/structure/window/shuttle/unique/merchant{ - icon_state = "19,1" - }, -/turf/simulated/floor/plating, -/area/shuttle/merchant) -"rbz" = ( -/obj/structure/window/shuttle/unique/merchant{ - icon_state = "20,1"; - outside_window = 1 - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"rbI" = ( -/obj/structure/shuttle_part/tcfl{ - icon_state = "16,0" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/legion) -"rbV" = ( -/obj/effect/decal/fake_object{ - density = 1; - desc = "It opens and closes."; - icon = 'icons/obj/doors/Doorglass.dmi'; - icon_state = "door_locked"; - name = "Upper Levels" - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"rcd" = ( -/obj/structure/window/reinforced/crescent, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/grass, -/area/centcom/spawning) -"rch" = ( -/turf/simulated/wall/shuttle/dark/corner/underlay{ - dir = 10 - }, -/area/centcom/legion) -"rck" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "3,1" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"rcz" = ( -/obj/structure/cryofeed{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"rcG" = ( -/obj/structure/shuttle_part/merchant{ - density = 0; - icon_state = "21,1" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"rcJ" = ( -/obj/machinery/door/airlock/glass{ - name = "Cryogenic Storage"; - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"rcX" = ( -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/ferry) -"rdA" = ( -/obj/machinery/door/airlock/silver{ - name = "Washroom" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"rdN" = ( -/obj/structure/bed/stool/chair/shuttle, -/obj/structure/extinguisher_cabinet/west{ - pixel_y = 2 - }, -/obj/structure/closet/walllocker/emerglocker/north{ - pixel_x = -1; - pixel_y = 29 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/specops) -"reg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/turretid{ - ailock = 1; - check_arrest = 0; - check_records = 0; - name = "Hangar 5 turret control"; - pixel_x = -29; - req_access = list(111) - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"reC" = ( -/obj/structure/table/rack, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/syndicate/black/engie, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/syndicate/black/engie, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"reJ" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "22,1" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"rft" = ( -/turf/simulated/wall/shuttle/unique/ert{ - icon_state = "7,0" - }, -/area/centcom/specops) -"rgr" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "13,19" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"rgN" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "thunderdomehea"; - name = "Heavy Supply" - }, -/turf/simulated/floor, -/area/tdome/tdome2) -"rhe" = ( -/obj/item/cane/crutch, -/obj/item/cane/crutch, -/obj/item/cane/crutch, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/structure/table/rack, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"rhg" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "1,5" - }, -/area/shuttle/legion) -"rhi" = ( -/turf/unsimulated/wall/fakeairlock{ - icon_state = "door_locked"; - name = "Shield Generator Access" - }, -/area/antag/ninja) -"rhl" = ( -/turf/unsimulated/wall/fakeairlock{ - icon = 'icons/obj/doors/Doorext.dmi'; - icon_state = "door_locked"; - name = "service airlock" - }, -/area/template_noop) -"rhm" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "asteroidplating" - }, -/area/template_noop) -"rhD" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "0,0" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"rhK" = ( -/obj/structure/table/reinforced, -/obj/item/device/magnetic_lock, -/obj/item/device/magnetic_lock, -/obj/item/device/magnetic_lock, -/obj/item/device/magnetic_lock, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/control) -"rhL" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "2,5" - }, -/area/shuttle/legion) -"rhW" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/table/reinforced, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"riT" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "3,5" - }, -/area/shuttle/legion) -"rkf" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/west{ - pixel_y = -5 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"rkk" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"rkr" = ( -/obj/structure/bed/stool/chair/office/bridge, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/control) -"rky" = ( -/obj/structure/table/reinforced/wood, -/obj/machinery/door/blast/odin{ - dir = 4; - icon_state = "shutter1"; - icon_state_closed = "shutter1"; - icon_state_closing = "shutterc1"; - icon_state_open = "shutter0"; - icon_state_opening = "shutterc0"; - id = "CentComBarShutters"; - name = "Bar Shutter" - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"rkF" = ( -/turf/simulated/wall/shuttle/unique/ert{ - icon_state = "8,4" - }, -/area/shuttle/specops) -"rkQ" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "1,0" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"rkX" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "13,5"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"rlJ" = ( -/turf/simulated/wall/shuttle/unique/cargo{ - icon_state = "4,2" - }, -/area/supply/dock) -"rlP" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"rmb" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "2,0" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"rme" = ( -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/centcom/spawning) -"rmo" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "0,4"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"rmr" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/machinery/button/remote/blast_door{ - id = "crescent_vip_shuttle"; - name = "VIP Shuttle Access"; - pixel_x = 7; - req_access = list(101) - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/ferry) -"rmH" = ( -/obj/machinery/light/small, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"rmM" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"rob" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "3,0" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"roc" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "0,2" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"roC" = ( -/obj/structure/sign/flag/nanotrasen{ - pixel_y = 30 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"roD" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "4,0" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"roE" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/effect/decal/fake_object{ - name = "service ladder"; - pixel_y = 24 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/unsimulated/floor/plating, -/area/antag/mercenary) -"roS" = ( -/obj/effect/floor_decal/corner/grey, -/turf/unsimulated/floor, -/area/centcom/control) -"rph" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/centcom/distress_prep) -"rqh" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "5,0" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"rqm" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "6,0" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"rrb" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/shuttle/merchant) -"rrE" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "7,0" - }, -/turf/space{ - dynamic_lighting = 1 - }, -/area/shuttle/merchant) -"rrF" = ( -/obj/structure/shuttle_part/merchant{ - density = 0; - icon_state = "0,6" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"rsL" = ( -/obj/structure/cryofeed{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor/plating, -/area/centcom/holding) -"rsQ" = ( -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/lube, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"rtl" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"rtG" = ( -/obj/structure/bed/stool/chair/shuttle, -/obj/structure/closet/walllocker/emerglocker{ - pixel_y = 31 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"rtH" = ( -/turf/simulated/wall/shuttle/unique/burglar{ - icon_state = "4,4" - }, -/area/shuttle/burglar) -"rvl" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"rvq" = ( -/obj/structure/closet/walllocker/emerglocker/south{ - pixel_y = -27 - }, -/obj/machinery/light, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"rvx" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/lattice, -/turf/space/dynamic, -/area/antag/raider) -"rvz" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/bed/stool/chair/padded/blue{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/evac) -"rvE" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"rvN" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/obj/structure/sign/directions/tram{ - dir = 1; - pixel_x = 1; - pixel_y = 2 - }, -/turf/unsimulated/floor/plating, -/area/centcom/bar) -"rwj" = ( -/obj/structure/shuttle_part/tcfl{ - icon_state = "13,5"; - outside_part = 0 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"rwk" = ( -/obj/structure/railing/mapped, -/turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" - }, -/area/centcom/holding) -"rwl" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "14,5" - }, -/area/shuttle/legion) -"rxw" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "8,0" - }, -/turf/space{ - dynamic_lighting = 1 - }, -/area/shuttle/merchant) -"rxN" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "12,0" - }, -/area/shuttle/legion) -"ryr" = ( -/obj/structure/sign/directions/mndl{ - pixel_y = -4 - }, -/obj/structure/sign/directions/security{ - pixel_x = 3; - pixel_y = 5 - }, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/checkpoint/aft) -"rys" = ( -/turf/simulated/floor/beach/sand{ - icon_state = "beach" - }, -/area/centcom/shared_dream) -"ryF" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "9,0" - }, -/turf/space{ - dynamic_lighting = 1 - }, -/area/shuttle/merchant) -"ryK" = ( -/obj/structure/shuttle_part/merchant{ - icon_state = "10,0" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"rAH" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "5,7"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"rAO" = ( -/obj/structure/shuttle_part/ccia{ - icon_state = "11,2" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/transport1) -"rAP" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/door/window/brigdoor/southright{ - name = "holding cell" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/holding) -"rAZ" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/obj/machinery/door/window/westright, -/obj/structure/railing/mapped, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "tiled_preview" - }, -/area/antag/burglar) -"rBr" = ( -/obj/structure/bed/stool/chair/shuttle, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/shuttle/black, -/area/centcom/specops) -"rBY" = ( -/obj/machinery/shieldwallgen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"rCI" = ( -/obj/effect/shuttle_landmark/merc/interim, -/turf/space/transit/bluespace/south, -/area/template_noop) -"rDb" = ( -/obj/structure/table/wood{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/snacks/liquidfood{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/snacks/liquidfood{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/snacks/liquidfood{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/snacks/liquidfood{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/snacks/liquidfood{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/snacks/liquidfood{ - pixel_x = -4; - pixel_y = 10 - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/distress_prep) -"rDl" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"rDF" = ( -/obj/structure/closet/crate/trashcart, -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/turf/unsimulated/floor/plating, -/area/centcom/spawning) -"rDZ" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = -1; - pixel_y = 25 - }, -/obj/machinery/vending/wallmed1{ - name = "Emergency NanoMed"; - pixel_x = -28; - req_access = null - }, -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/burglar) -"rEH" = ( -/obj/structure/shuttle_part/merchant{ - density = 0; - icon_state = "11,0" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"rFl" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 5 - }, -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"rFD" = ( -/obj/machinery/door/airlock/command{ - name = "Thunderdome Administration"; - req_access = list(102); - dir = 1 - }, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"rFJ" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"rFS" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/pottedplant{ - icon_state = "plant-28"; - pixel_x = -3 - }, -/turf/simulated/floor/grass, -/area/shuttle/arrival) -"rGt" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "1,14"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"rGE" = ( -/obj/structure/bed/roller, -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"rGG" = ( -/obj/structure/shuttle_part/merchant{ - density = 0; - icon_state = "12,0" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"rHd" = ( -/obj/machinery/r_n_d/server/centcom, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"rHn" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"rHx" = ( -/obj/structure/table/rack, -/obj/random/technology_scanner, -/obj/random/hoodie, -/turf/unsimulated/floor/plating, -/area/centcom/holding) -"rHF" = ( -/obj/structure/closet/crate/secure/legion, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"rHW" = ( -/obj/structure/lattice/catwalk/indoor/grate/light, -/obj/effect/decal/fake_object/light_source/invisible, -/turf/unsimulated/floor/plating, -/area/antag/ninja) -"rIs" = ( -/obj/structure/shuttle_part/merchant{ - density = 0; - icon_state = "13,0" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"rIN" = ( -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/flora/ausbushes/pointybush, -/turf/simulated/floor/grass, -/area/centcom/spawning) -"rKw" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"rKA" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"rKH" = ( -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = 1; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/table/reinforced/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/ferry) -"rLu" = ( -/obj/structure/closet/crate/secure/legion{ - locked = 0; - opened = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"rLH" = ( -/obj/structure/shuttle_part/merchant{ - density = 0; - icon_state = "14,0" - }, -/turf/space/dynamic, -/area/shuttle/merchant) -"rMa" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/unsimulated/floor{ - dir = 4; - icon_state = "ramptop" - }, -/area/centcom/evac) -"rMe" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "asteroidplating" - }, -/area/merchant_station/warehouse) -"rMm" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/merchant_station/warehouse) -"rMF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/obj/item/trash/cigbutt, -/turf/unsimulated/floor{ - icon_state = "wood-broken5" - }, -/area/centcom/legion/hangar5) -"rMK" = ( -/obj/structure/table/standard, -/obj/item/device/paicard, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/antag/mercenary) -"rNL" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor/plating, -/area/antag/mercenary) -"rNY" = ( -/obj/structure/table/standard, -/obj/effect/landmark{ - name = "Nuclear-Code" - }, -/obj/structure/bedsheetbin{ - pixel_y = 6 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/antag/mercenary) -"rPi" = ( -/obj/structure/table/standard, -/obj/item/modular_computer/handheld/pda/syndicate, -/obj/item/clothing/mask/gas/vaurca/filter, -/obj/item/clothing/mask/gas/vaurca/filter, -/obj/item/clothing/mask/gas/vaurca/filter, -/obj/item/clothing/mask/gas/vaurca/filter, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/antag/mercenary) -"rPz" = ( -/turf/simulated/wall/shuttle/unique/ert{ - icon_state = "6,0" - }, -/area/shuttle/specops) -"rPS" = ( -/obj/structure/closet/secure_closet/personal, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"rQb" = ( -/obj/machinery/door/airlock/silver{ - id_tag = "tower_stall_2"; - name = "Washroom" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"rQi" = ( -/turf/unsimulated/floor{ - icon_state = "whiteshiny" - }, -/area/centcom/bar) -"rQs" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/adv{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/storage/firstaid/adv, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"rQH" = ( -/turf/simulated/wall/shuttle/dark/corner/underlay{ - dir = 6 - }, -/area/centcom/legion) -"rRg" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/bed/roller, -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"rRr" = ( -/obj/structure/table/stone/marble, -/obj/item/reagent_containers/food/snacks/taco{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/snacks/taco{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/snacks/burger/nt_muffin{ - pixel_x = 13; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/snacks/burger/nt_muffin{ - pixel_x = 11; - pixel_y = 1 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"rRP" = ( -/obj/machinery/photocopier, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"rSk" = ( -/turf/simulated/wall/shuttle/unique/ert{ - icon_state = "8,0" - }, -/area/centcom/specops) -"rSt" = ( -/obj/structure/bed/stool/chair/shuttle{ - can_dismantle = 1; - name = "worn chair" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"rSF" = ( -/obj/structure/window/shuttle/unique/mercenary{ - icon_state = "7,24" - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"rSL" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "8,2" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"rSM" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "11,1"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"rSX" = ( -/obj/structure/flora/rock{ - icon_state = "basalt2"; - pixel_x = -3; - pixel_y = 8 - }, -/obj/structure/flora/rock/pile{ - icon_state = "lavarocks2" - }, -/turf/simulated/floor/beach/sand{ - icon_state = "beach" - }, -/area/centcom/shared_dream) -"rTg" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/unsimulated/floor{ - icon_state = "carpet" - }, -/area/centcom/bar) -"rTN" = ( -/obj/machinery/door/airlock/centcom{ - name = "Civil Protection Station"; - req_access = list(101) - }, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/control) -"rTZ" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"rUc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/closet/crate/secure/legion{ - locked = 0; - opened = 1 - }, -/obj/item/flag/biesel/l{ - pixel_y = 8 - }, -/obj/item/flag/biesel/l{ - pixel_y = 8 - }, -/obj/item/flag/biesel{ - pixel_y = 8 - }, -/obj/item/flag/biesel{ - pixel_y = 8 - }, -/obj/item/flag/biesel{ - pixel_y = 8 - }, -/obj/item/storage/box/tcaf_pamphlet, -/obj/item/material/twohanded/pike/flag, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"rUz" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"rUE" = ( -/obj/machinery/atmospherics/unary/cryo_cell, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"rUR" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/atmospherics/unary/cryo_cell, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"rVj" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/shuttle/black, -/area/centcom/specops) -"rVC" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/item/storage/secure/briefcase{ - pixel_y = 12 - }, -/obj/item/storage/briefcase/aluminium, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"rWs" = ( -/obj/machinery/computer/pod{ - id = "thunderdome"; - name = "Thunderdome Blast Door Control" - }, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"rWF" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/antag/mercenary) -"rXE" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "2,1" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"rXN" = ( -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/antag/mercenary) -"rYv" = ( -/obj/machinery/door/airlock/centcom{ - name = "Arrival Hangar Maintenance"; - req_access = list(106) - }, -/turf/unsimulated/floor/plating, -/area/centcom/evac) -"rYS" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"rZt" = ( -/obj/structure/window/shuttle/unique/burglar{ - icon_state = "2,3" - }, -/turf/simulated/floor/plating, -/area/shuttle/burglar) -"rZy" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/structure/undies_wardrobe{ - anchored = 1 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/antag/mercenary) -"saE" = ( -/turf/unsimulated/wall/steel, -/area/antag/burglar) -"saF" = ( -/obj/vehicle/bike/speeder, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1337; - id_tag = "legion_shuttle_aft_pump"; - name = "Dropship Air Vent" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"saQ" = ( -/obj/structure/sign/double/map/right{ - desc = "A framed picture of a station."; - pixel_x = -16; - pixel_y = 32 - }, -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/burglar) -"sbc" = ( -/obj/machinery/door/airlock/glass_centcom{ - name = "To: NTCC Odin Mass Transit"; - req_access = null; - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"sbk" = ( -/obj/structure/cryofeed{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"scd" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/fake_object{ - dir = 4; - icon = 'icons/obj/recycling.dmi'; - icon_state = "conveyor0"; - name = "conveyor" - }, -/turf/unsimulated/floor/plating, -/area/antag/raider) -"scp" = ( -/obj/machinery/computer/security/nuclear, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"scL" = ( -/obj/structure/bed, -/obj/item/bedsheet/syndie, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/antag/mercenary) -"sdf" = ( -/obj/effect/landmark{ - name = "Syndicate-Spawn" - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/antag/mercenary) -"sdz" = ( -/obj/machinery/door/window/northleft{ - health = 2000; - maxhealth = 2000; - req_access = list(101) - }, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"sdC" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/space/dynamic, -/area/template_noop) -"sdF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/loot{ - desc = "The old dusty labels on this crate indicate that it was supposed to be shipped long ago."; - name = "forgotten shipment" - }, -/turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" - }, -/area/antag/raider) -"sdS" = ( -/obj/structure/bed, -/obj/item/toy/figure/syndie, -/obj/item/bedsheet/syndie, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/antag/mercenary) -"seN" = ( -/obj/structure/shuttle_part/burglar{ - icon_state = "11,0" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/burglar) -"sfb" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "3,4" - }, -/area/shuttle/legion) -"sgv" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "11,20"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"sgR" = ( -/obj/structure/window/shuttle/unique/mercenary{ - icon_state = "10,22" - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"sgY" = ( -/turf/simulated/wall/shuttle/unique/cargo{ - icon_state = "3,2" - }, -/area/supply/dock) -"shc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/fake_object{ - dir = 4; - icon = 'icons/obj/recycling.dmi'; - icon_state = "conveyor0"; - name = "conveyor" - }, -/obj/machinery/door/airlock/external{ - close_sound_powered = 'sound/machines/airlock_close_force.ogg'; - glass = 1; - name = "airlock"; - opacity = 0; - open_sound_powered = 'sound/machines/airlock_open_force.ogg'; - dir = 4 - }, -/turf/unsimulated/floor/plating, -/area/antag/raider) -"sio" = ( -/obj/item/gun/energy/rifle{ - pixel_y = 6 - }, -/obj/item/gun/energy/rifle{ - pixel_y = -2 - }, -/obj/structure/table/reinforced/steel, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"siK" = ( -/obj/structure/cryofeed{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/unsimulated/floor/plating, -/area/centcom/holding) -"siS" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "0,7" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"siZ" = ( -/obj/structure/railing/mapped, -/turf/unsimulated/floor/plating, -/area/centcom/spawning) -"sje" = ( -/obj/machinery/door/airlock/centcom{ - locked = 1; - name = "Entertainment Wing Maintenance"; - req_one_access = list(102) - }, -/turf/unsimulated/floor/plating, -/area/centcom/holding) -"sjp" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/obj/structure/sign/double/map/left{ - desc = "A framed picture of a station."; - pixel_x = 16; - pixel_y = 32 - }, -/turf/unsimulated/floor/plating, -/area/antag/loner) -"sjG" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/bed/stool/chair/padded/blue{ - dir = 4 - }, -/turf/simulated/floor/shuttle/tan, -/area/centcom/bar) -"skr" = ( -/obj/structure/bed/stool/chair/office/dark, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"slj" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/grey{ - dir = 5 - }, -/obj/item/folder/blue, -/obj/machinery/door/window/northleft{ - req_access = list(109) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"slk" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "12,18" - }, -/area/shuttle/mercenary) -"slE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" - }, -/area/antag/raider) -"smn" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 3; - pixel_y = 26 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/escape) -"smr" = ( -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/circuit.dmi'; - icon_state = "bcircuit" - }, -/area/centcom/control) -"smt" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/obj/structure/sign/greencross{ - name = "Emergency Room" - }, -/turf/unsimulated/floor/plating, -/area/centcom/holding) -"smT" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"snu" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "0,3" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"sny" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/specops) -"snF" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "15,4" - }, -/area/shuttle/mercenary) -"snL" = ( -/obj/structure/table/rack, -/obj/item/ammo_magazine/c762{ - pixel_x = 5 - }, -/obj/item/ammo_magazine/c762{ - pixel_x = 5 - }, -/obj/item/ammo_magazine/c762{ - pixel_x = 5 - }, -/obj/item/ammo_magazine/c762{ - pixel_x = -6 - }, -/obj/item/ammo_magazine/c762{ - pixel_x = -6 - }, -/obj/item/ammo_magazine/c762{ - pixel_x = -6 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"snR" = ( -/obj/structure/bed/stool/wood, -/turf/simulated/floor/beach/sand{ - icon_state = "desert" - }, -/area/centcom/shared_dream) -"soj" = ( -/obj/machinery/computer/shuttle_control{ - req_access = null; - req_one_access = list(38,72); - shuttle_tag = "SCC Shuttle" - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/transport1) -"som" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "14,4" - }, -/area/shuttle/legion) -"sot" = ( -/obj/machinery/deployable/barrier, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/control) -"sph" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"spt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "damaged1" - }, -/area/antag/raider) -"spG" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "1,2"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"sqj" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"sqq" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"sqy" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "11,22" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"sqU" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "12,22" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"sqZ" = ( -/obj/machinery/vending/snack{ - density = 0; - name = "Jacked Getmore Chocolate Corp"; - pixel_y = -22; - prices = list(); - random_itemcount = 0 - }, -/turf/unsimulated/floor, -/area/antag/loner) -"srF" = ( -/obj/structure/window/shuttle/unique/tcfl{ - icon_state = "16,4" - }, -/turf/simulated/floor/plating, -/area/shuttle/legion) -"ssh" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"ssN" = ( -/obj/machinery/vending/coffee/free{ - pixel_x = -1 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"stK" = ( -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/antag/raider) -"stO" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"stW" = ( -/obj/structure/window/shuttle/unique/tcfl{ - icon_state = "17,4"; - outside_window = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/legion) -"suq" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "6,5" - }, -/area/shuttle/mercenary) -"suT" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"suV" = ( -/obj/machinery/cryopod{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain/black, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"svr" = ( -/obj/structure/bed/stool/chair/padded/brown{ - can_buckle = 0; - dir = 8; - name = "old chair" - }, -/obj/effect/decal/fake_object{ - color = "#5C4831"; - dir = 8; - icon = 'icons/obj/furniture.dmi'; - icon_state = "chair_armrest"; - name = "leather chair" - }, -/turf/simulated/floor/carpet, -/area/centcom/shared_dream) -"swe" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"swT" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "13,16" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"sxi" = ( -/obj/structure/table/wood/gamblingtable, -/obj/item/flame/lighter/random{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/storage/box/fancy/cigarettes/dromedaryco, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"sxl" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "2,7"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"sxq" = ( -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/centcom/spawning) -"sxB" = ( -/turf/unsimulated/wall/fakepdoor{ - icon_state = "shutter1"; - name = "pharmacy" - }, -/area/antag/raider) -"sxH" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"syd" = ( -/obj/structure/table/reinforced/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"sym" = ( -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/raider) -"syP" = ( -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"syV" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/window/reinforced{ - name = "adjusted window" - }, -/obj/effect/floor_decal/spline/plain/black, -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/arrival) -"szg" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"szr" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"szK" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"szP" = ( -/obj/machinery/cell_charger{ - pixel_y = 3 - }, -/obj/structure/table/steel, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"szR" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/grass, -/area/centcom/shared_dream) -"sAP" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = list(2) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"sBa" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"sBd" = ( -/obj/structure/bed, -/obj/item/bedsheet/syndie, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/burglar) -"sBC" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/pipewrench{ - pixel_x = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"sBD" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/structure/table/reinforced, -/obj/item/storage/box/syringes{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/storage/box/beakers{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/item/storage/box/pillbottles{ - pixel_x = 12; - pixel_y = -4 - }, -/obj/item/storage/box/autoinjectors{ - pixel_x = 12; - pixel_y = 10 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"sBK" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "tower_stall_2"; - name = "Door Bolt Control"; - pixel_x = -10; - pixel_y = 23; - specialfunctions = 4 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"sCz" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "11,20" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"sCH" = ( -/obj/structure/bed/stool/chair/office/bridge/pilot, -/turf/simulated/floor/shuttle/black, -/area/shuttle/syndicate_elite) -"sDs" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/fire{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 6 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = -3; - pixel_y = -1 - }, -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"sDF" = ( -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass, -/area/centcom/evac) -"sEk" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/storage/firstaid/regular, -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"sEG" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "12,20" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"sEJ" = ( -/obj/effect/step_trigger/thrower/shuttle/east, -/turf/template_noop, -/area/template_noop) -"sFB" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/fake_object{ - density = 1; - icon = 'icons/obj/doors/windoor.dmi'; - icon_state = "rightsecure"; - name = "Tram Boarding" - }, -/obj/effect/floor_decal/spline/plain/black, -/turf/unsimulated/floor/plating, -/area/centcom/bar) -"sFL" = ( -/obj/machinery/bodyscanner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"sFP" = ( -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 1; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/turf/simulated/floor/holofloor/space{ - blocks_air = 1; - density = 1; - dynamic_lighting = 1; - icon_state = "black" - }, -/area/antag/ninja) -"sFY" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" - }, -/area/centcom/evac) -"sGy" = ( -/obj/item/modular_computer/console/preset/command, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"sHn" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "crescent_checkpoint_access"; - name = "Aft Public Hallway Access"; - pixel_x = -7; - pixel_y = -21; - req_access = list(101) - }, -/turf/unsimulated/floor, -/area/centcom/control) -"sHB" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/antag/mercenary) -"sIe" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/light{ - dir = 4; - name = "adjusted light fixture"; - pixel_y = -16; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"sIC" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"sJo" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/syndicate/black/green, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/syndicate/black/green, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"sKg" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"sLb" = ( -/obj/machinery/chem_master/condimaster{ - pixel_y = 1 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"sLq" = ( -/obj/machinery/vending/zora{ - density = 0; - name = "Jacked Zo'ra Soda"; - pixel_y = -22; - prices = list() - }, -/turf/unsimulated/floor, -/area/antag/loner) -"sLO" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"sMa" = ( -/obj/structure/closet/crate/drop/grey, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/random/coin, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/antag/mercenary) -"sMB" = ( -/obj/machinery/door/airlock/centcom{ - name = "Dormitory"; - req_access = list(112) - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/distress_prep) -"sMK" = ( -/obj/machinery/body_scanconsole{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"sMS" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/bed/stool/chair/padded/blue{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/evac) -"sNi" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"sNE" = ( -/obj/machinery/door/airlock/centcom{ - name = "Personnel Files"; - req_access = list(109) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"sNV" = ( -/obj/structure/sign/greencross{ - name = "Emergency Room" - }, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/legion) -"sOx" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1337; - master_tag = "legion_shuttle_aft_airlock"; - name = "interior access button"; - pixel_x = 7; - pixel_y = -24; - req_access = list(111) - }, -/obj/machinery/door/airlock/glass_command{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "legion_shuttle_aft_interior"; - locked = 1; - name = "Dropship Internal Airlock"; - req_access = list(111); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"sOJ" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "0,0" - }, -/turf/unsimulated/floor/plating, -/area/supply/dock) -"sPr" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/shuttle/legion) -"sPv" = ( -/obj/structure/shuttle_part/burglar{ - icon_state = "12,2" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/burglar) -"sQf" = ( -/obj/machinery/suit_cycler/freelancer, -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"sQq" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/specops) -"sQB" = ( -/obj/machinery/cryopod, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/merchant_station) -"sQX" = ( -/obj/effect/shuttle_landmark/legion/start, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/shuttle/legion) -"sRi" = ( -/turf/simulated/floor/tiled/dark, -/area/centcom/bar) -"sRY" = ( -/obj/structure/closet/crate/secure/legion, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"sRZ" = ( -/obj/machinery/vending/wallmed1{ - name = "Medical Supplies"; - pixel_x = -26; - pixel_y = -1; - req_access = null - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/distress) -"sSa" = ( -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 1; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 4; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/turf/simulated/floor/holofloor/space{ - blocks_air = 1; - density = 1; - dynamic_lighting = 1; - icon_state = "black" - }, -/area/antag/ninja) -"sSn" = ( -/obj/structure/cryofeed, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/ferry) -"sUx" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/bed/stool/chair/padded/blue{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/evac) -"sUP" = ( -/obj/structure/window/shuttle/unique/ccia{ - icon_state = "1,3" - }, -/turf/simulated/floor/plating, -/area/shuttle/transport1) -"sVk" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "11,7" - }, -/area/shuttle/mercenary) -"sVJ" = ( -/obj/effect/decal/fake_object{ - desc = "Ding."; - icon = 'icons/obj/doors/doorlift.dmi'; - icon_state = "door_open"; - name = "elevator door" - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/bar) -"sVK" = ( -/obj/machinery/computer/shuttle_control/multi/legion, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"sWw" = ( -/obj/structure/window/shuttle/unique/tcfl{ - icon_state = "17,3" - }, -/turf/simulated/floor/plating, -/area/shuttle/legion) -"sWR" = ( -/obj/effect/ghostspawpoint{ - identifier = "NTERTSpawn"; - name = "igs - NTERT" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"sXo" = ( -/obj/machinery/porta_turret/crescent, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/lattice/catwalk/indoor, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/checkpoint/aft) -"sXD" = ( -/obj/structure/bed/stool/chair/padded/brown{ - can_buckle = 0; - dir = 1; - name = "old chair" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/raider) -"sXE" = ( -/obj/structure/cryofeed{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/unsimulated/floor/plating, -/area/centcom/holding) -"sXN" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "1,11"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"sYm" = ( -/obj/machinery/vending/snack{ - name = "Free Chocolate Corp"; - prices = list() - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/evac) -"sYx" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "11,19"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"sZi" = ( -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_dininghall) -"sZl" = ( -/obj/item/device/magnetic_lock, -/obj/item/device/magnetic_lock, -/obj/item/device/magnetic_lock, -/obj/item/device/magnetic_lock, -/obj/item/device/magnetic_lock, -/obj/item/device/magnetic_lock, -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"sZB" = ( -/obj/effect/shuttle_landmark/merc_elite/start, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled/dark, -/area/shuttle/syndicate_elite) -"tae" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "10,5" - }, -/area/shuttle/mercenary) -"taw" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor/plating, -/area/centcom/suppy) -"tbh" = ( -/obj/machinery/door/airlock/silver{ - name = "Washroom" - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/antag/mercenary) -"tbt" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"tbK" = ( -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/flora/ausbushes/stalkybush, -/turf/simulated/floor/grass, -/area/centcom/spawning) -"tbN" = ( -/obj/effect/decal/fake_object/light_source/invisible{ - light_color = "#64C864"; - light_range = 7; - name = "green light" - }, -/obj/structure/bed/stool/chair/office/hover{ - can_buckle = 0; - dir = 8 - }, -/turf/simulated/floor/grass, -/area/centcom/shared_dream) -"tbP" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/structure/closet/secure_closet/guncabinet{ - name = "contraband"; - req_access = list(101) - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "CentComArrivalsAftChkpt"; - name = "Aft Checkpoint Blast Doors"; - pixel_x = -23; - req_access = list(103) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"tbS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"tbX" = ( -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"tcd" = ( -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/effect/decal/fake_object{ - dir = 4; - icon = 'icons/obj/recycling.dmi'; - icon_state = "conveyor0"; - name = "conveyor" - }, -/turf/unsimulated/floor/plating, -/area/antag/raider) -"tcg" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/obj/machinery/door/blast/odin/open{ - _wifi_id = "merc_droppod_8"; - name = "Pod G" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"tcy" = ( -/obj/structure/table/rack, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"tcP" = ( -/obj/structure/bed/stool/chair/shuttle{ - can_dismantle = 1; - name = "worn chair" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"tdl" = ( -/obj/effect/decal/fake_object{ - icon = 'icons/obj/smoothtrack.dmi'; - icon_state = "track12"; - name = "tram track" - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/bar) -"tdp" = ( -/obj/machinery/light/spot, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"tdV" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"teb" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/unsimulated/floor, -/area/centcom/ferry) -"teq" = ( -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/obj/item/reagent_containers/food/drinks/bottle/brandy{ - pixel_x = 10; - pixel_y = -1 - }, -/obj/structure/window/reinforced/crescent, -/obj/structure/window/reinforced{ - anchored = 0; - desc = "On further inspection, this window seems to have been loosened."; - dir = 4; - name = "loose window" - }, -/obj/item/reagent_containers/inhaler/space_drugs{ - pixel_x = 8; - pixel_y = -6 - }, -/obj/item/reagent_containers/toothpaste{ - pixel_x = -4; - pixel_y = -10 - }, -/obj/item/reagent_containers/inhaler/space_drugs{ - pixel_x = 8; - pixel_y = -6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) -"teA" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/unsimulated/floor, -/area/centcom/ferry) -"teG" = ( -/turf/simulated/floor/beach/sand{ - icon_state = "desert1" - }, -/area/centcom/shared_dream) -"teP" = ( -/turf/simulated/wall/shuttle/unique/burglar{ - icon_state = "10,3" - }, -/area/shuttle/burglar) -"teX" = ( -/obj/machinery/light/small/emergency{ - name = "broken light"; - status = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"tfe" = ( -/obj/machinery/door/airlock/glass{ - name = "Mess Hall"; - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/full, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/centcom/legion) -"tff" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "13,18" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"tfG" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"tfL" = ( -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/structure/mirror{ - pixel_y = 31 - }, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/antag/mercenary) -"tgs" = ( -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/antag/mercenary) -"tgZ" = ( -/obj/effect/decal/fake_object{ - desc = "An automated turret."; - icon = 'icons/obj/turrets.dmi'; - icon_state = "cover_1"; - name = "turret" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"tho" = ( -/obj/machinery/door/airlock/glass{ - name = "Mess Hall"; - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/centcom/legion) -"thq" = ( -/obj/machinery/shower{ - pixel_y = 20 - }, -/obj/structure/curtain/open/shower, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/antag/mercenary) -"thB" = ( -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 8; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/turf/simulated/floor/holofloor/space{ - blocks_air = 1; - density = 1; - dynamic_lighting = 1; - icon_state = "black" - }, -/area/antag/ninja) -"thI" = ( -/obj/structure/shuttle_part/transfer{ - density = 0; - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "14,7"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"tix" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/obj/machinery/door/blast/odin{ - icon_state = "shutter1"; - icon_state_closed = "shutter1"; - icon_state_closing = "shutterc1"; - icon_state_open = "shutter0"; - icon_state_opening = "shutterc0"; - id = "CentComArrivalsForeChkpt"; - name = "checkpoint shutter" - }, -/turf/unsimulated/floor/plating, -/area/centcom/checkpoint/fore) -"tjd" = ( -/obj/structure/bed/stool/chair, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/holding) -"tjM" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/bed/stool/chair/padded/blue{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/spawning) -"tjT" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"tkb" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/ferry) -"tkT" = ( -/obj/structure/shuttle_part/ccia{ - icon_state = "3,0" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/transport1) -"tmv" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"tmP" = ( -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent, -/obj/structure/flora/ausbushes/grassybush, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/grass, -/area/centcom/spawning) -"tnJ" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"too" = ( -/turf/unsimulated/floor{ - icon_state = "ramptop" - }, -/area/antag/ninja) -"tox" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/table/reinforced/wood, -/obj/item/device/flashlight/lamp, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"toF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/remote/blast_door{ - id = "hideout_access"; - name = "Abandoned Wing Access"; - pixel_y = 23; - req_access = list(150) - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"toZ" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/shuttle/legion) -"tpa" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "4,18" - }, -/area/shuttle/mercenary) -"tqh" = ( -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"tql" = ( -/obj/machinery/light/small, -/obj/structure/table/rack, -/obj/item/gun/launcher/grenade{ - name = "active cleaning utility dispenser" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"tqn" = ( -/obj/machinery/porta_turret/legion{ - cover_set = 0; - desc = "A battle-worn blaster turret, modified to have a stun mode. The name Cerberus is inscribed on the cover."; - egun = 1; - health = 160; - icon_state = "cover_0"; - lethal = 0; - lethal_icon = 0; - maxhealth = 160; - name = "Cerberus"; - name_override = 1 - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"tqt" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "CCIA Bodyguard Primary"; - req_access = list(109) - }, -/obj/item/gun/energy/gun, -/obj/item/gun/energy/gun, -/obj/item/gun/energy/gun, -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"tqK" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/spawning) -"tqU" = ( -/turf/simulated/wall/shuttle/unique/distress{ - icon_state = "9,0" - }, -/area/shuttle/distress) -"tqV" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "15,2" - }, -/area/shuttle/legion) -"trT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/pottedplant{ - dead = 1; - icon_state = "plant-dead"; - name = "dead plant"; - pixel_x = 6 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"tsc" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/antag/mercenary) -"tse" = ( -/obj/machinery/porta_turret/crescent, -/obj/effect/floor_decal/industrial/warning/full, -/turf/unsimulated/floor/plating, -/area/centcom/control) -"tsh" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"tsj" = ( -/obj/structure/table/reinforced, -/obj/random/tech_supply, -/turf/unsimulated/floor/plating, -/area/centcom/spawning) -"tsk" = ( -/obj/structure/sign/double/barsign{ - pixel_y = 32 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/antag/raider) -"tsH" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "centcom_dock_airlock"; - locked = 1; - name = "Arrivals Airlock"; - req_access = list(13); - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor, -/area/centcom/evac) -"ttl" = ( -/obj/machinery/light/small{ - dir = 4; - name = "adjusted light fixture"; - pixel_y = -16 - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/bar) -"ttS" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced/crescent, -/obj/machinery/light/small/emergency{ - brightness_range = 4; - dir = 8; - name = "adjusted emergency light" - }, -/turf/space/dynamic, -/area/antag/raider) -"tud" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"tuE" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/light/small, -/obj/item/clothing/gloves/yellow{ - pixel_y = 18 - }, -/obj/item/clothing/gloves/yellow{ - pixel_y = 18 - }, -/obj/item/clothing/gloves/yellow/specialt{ - pixel_y = 5 - }, -/obj/item/clothing/gloves/yellow/specialu{ - pixel_y = 5 - }, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/turf/unsimulated/floor, -/area/antag/burglar) -"tuX" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "1,0"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/specops) -"tvn" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/turf/unsimulated/floor/plating, -/area/antag/mercenary) -"tvo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/mining{ - close_sound_powered = 'sound/machines/airlock_close_force.ogg'; - name = "Cargo Office"; - open_sound_powered = 'sound/machines/airlock_open_force.ogg'; - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"tvs" = ( -/obj/structure/table/rack, -/obj/item/towel{ - pixel_y = 8 - }, -/obj/item/towel, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/antag/mercenary) -"twm" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/distress) -"twx" = ( -/obj/machinery/acting/changer, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/antag/mercenary) -"twH" = ( -/obj/structure/extinguisher_cabinet/east{ - pixel_y = 1 - }, -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/burglar) -"txl" = ( -/obj/machinery/computer/rdservercontrol{ - badmin = 1; - name = "Master R&D Server Controller" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"txn" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Secure Holding"; - req_access = list(1); - dir = 1 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/escape) -"tyg" = ( -/obj/structure/table/rack, -/obj/item/tank/emergency_oxygen/double{ - pixel_y = 3 - }, -/obj/item/tank/emergency_oxygen/double{ - pixel_y = 3 - }, -/obj/item/tank/emergency_oxygen/double{ - pixel_y = 3 - }, -/obj/item/tank/emergency_oxygen/double{ - pixel_y = 3 - }, -/obj/item/tank/emergency_oxygen/double{ - pixel_y = 3 - }, -/obj/item/tank/emergency_oxygen/double{ - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 1; - name = "adjusted light fixture"; - pixel_x = -16; - icon_state = "tube_empty" - }, -/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/clothing/mask/gas/alt, -/obj/item/clothing/mask/gas/alt, -/obj/item/clothing/mask/gas/alt, -/obj/item/clothing/mask/gas/alt, -/obj/item/clothing/mask/gas/alt, -/obj/item/clothing/mask/gas/alt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/distress_prep) -"typ" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"tyu" = ( -/obj/machinery/door/airlock/centcom{ - name = "Starboard Checkpoint Door"; - req_access = list(103) - }, -/obj/machinery/door/blast/odin{ - _wifi_id = "odin_arrivals_lockdown"; - dir = 2; - id = "odincheckpoint_starboard"; - name = "checkpoint" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"tyE" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/antag/mercenary) -"tyX" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/control) -"tAj" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "1,12" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"tAA" = ( -/obj/structure/bed/stool/chair/office/dark, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/checkpoint/aft) -"tAC" = ( -/obj/structure/railing/mapped, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/grass, -/area/centcom/bar) -"tBa" = ( -/obj/structure/sign/directions/security{ - dir = 8 - }, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/holding) -"tBi" = ( -/obj/machinery/vending/snack{ - density = 0; - name = "Free Chocolate Corp"; - pixel_x = -14; - pixel_y = 20; - prices = list() - }, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/distress_prep) -"tBo" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "6,1" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"tBz" = ( -/obj/structure/table/reinforced/wood, -/obj/item/paper_scanner, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"tBL" = ( -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"tBQ" = ( -/obj/effect/landmark/latejoin, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/spawning) -"tCu" = ( -/obj/effect/floor_decal/corner/red/full, -/turf/unsimulated/floor, -/area/centcom/control) -"tCx" = ( -/obj/structure/closet/secure_closet{ - req_access = list(150) - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/syndicate_elite) -"tCB" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/ferry) -"tCM" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "10,20"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"tDo" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Emergency Surgery"; - req_one_access = list(45,104) - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/holding) -"tDA" = ( -/obj/machinery/vending/security, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/blue/full{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"tDB" = ( -/obj/structure/window/shuttle/unique/tcfl{ - icon_state = "17,2"; - outside_window = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/legion) -"tDX" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "7,1" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"tEy" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/vending/cigarette{ - pixel_x = -3 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"tFj" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/obj/structure/bed/stool/padded/red, -/turf/unsimulated/floor, -/area/centcom/bar) -"tFz" = ( -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/obj/machinery/door/airlock/glass_medical{ - name = "Emergency Operating Theatre" - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"tFU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"tGw" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/structure/table/reinforced/steel, -/obj/item/storage/box/zipties{ - pixel_y = -4 - }, -/obj/item/clothing/accessory/holster/hip{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/item/clothing/accessory/holster/hip{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/item/clothing/accessory/holster/hip{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/item/clothing/accessory/holster/hip{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/item/clothing/accessory/holster/hip{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/item/clothing/accessory/holster/hip{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/item/melee/telebaton{ - pixel_x = 12; - pixel_y = 18 - }, -/obj/item/melee/telebaton{ - pixel_x = 12; - pixel_y = 18 - }, -/obj/item/melee/telebaton{ - pixel_x = 12; - pixel_y = 18 - }, -/obj/item/melee/telebaton{ - pixel_x = 12; - pixel_y = 18 - }, -/obj/item/melee/telebaton{ - pixel_x = 12; - pixel_y = 18 - }, -/obj/item/melee/telebaton{ - pixel_x = 12; - pixel_y = 18 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"tGD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"tGR" = ( -/obj/machinery/door/airlock/silver{ - name = "Toilet" - }, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/antag/mercenary) -"tHU" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "2,14" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"tIa" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Prefect Office"; - req_access = list(103,111); - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/centcom/legion/hangar5) -"tIb" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/supply/dock) -"tIB" = ( -/turf/simulated/wall/shuttle/unique/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "2,3"; - name = "autoshuttle" - }, -/area/shuttle/arrival) -"tIU" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "1,10" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"tIZ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"tJm" = ( -/obj/effect/decal/fake_object{ - dir = 1; - icon = 'icons/obj/doors/rapid_pdoor.dmi'; - icon_state = "shutter0"; - name = "shutter" - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"tJt" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "3,14" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"tJZ" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/bed/stool/chair/padded/teal, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"tKK" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/item/storage/firstaid/o2{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"tKY" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/door/airlock/glass_centcom{ - name = "Valkyrie's Rest"; - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"tLh" = ( -/obj/structure/table/rack, -/obj/item/clothing/under/color/red, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/clothing/suit/armor/tdome/red, -/obj/item/clothing/head/helmet/thunderdome, -/obj/item/melee/baton/loaded, -/obj/item/melee/energy/sword/red, -/turf/simulated/floor, -/area/tdome/tdome2) -"tLj" = ( -/obj/structure/table/reinforced, -/obj/item/pinpointer/nukeop, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"tLm" = ( -/obj/machinery/computer/pod{ - id = "thunderdomeaxe"; - name = "Thunderdome Axe Supply" - }, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"tLp" = ( -/obj/machinery/door/blast/regular{ - id = "thunderdomegen"; - name = "General Supply" - }, -/turf/simulated/floor, -/area/tdome/tdome2) -"tLX" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"tMl" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - icon_state = "barricade"; - name = "barricade" - }, -/turf/unsimulated/wall/fakeairlock, -/area/antag/burglar) -"tMm" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "supply_shuttle_hatch"; - locked = 1; - name = "Shuttle Hatch"; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/supply/dock) -"tMD" = ( -/obj/machinery/door/blast/odin/shuttle/tcfl/shutter{ - id = "tcfl_hangar5"; - name = "Armory" - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"tNa" = ( -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "tcflreadyroom"; - name = "Ready Room Shutters"; - pixel_x = -22; - pixel_y = -2; - req_access = list(111) - }, -/obj/machinery/door/blast/odin/shuttle/tcfl/shutter{ - density = 1; - icon_state = "shutter1"; - id = "tcflreadyroom"; - name = "Task Force XIII Ready Room"; - opacity = 1 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"tNb" = ( -/obj/effect/ghostspawpoint{ - identifier = "NTERTSpawn"; - name = "igs - NTERT" - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"tNJ" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/decal/fake_object{ - color = "#545c68"; - dir = 8; - icon = 'icons/obj/railing.dmi'; - icon_state = "mcorneroverlay1"; - name = "railing" - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"tPb" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/window/reinforced/crescent, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass, -/area/centcom/holding) -"tPw" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"tPU" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "12,14" - }, -/area/shuttle/mercenary) -"tQE" = ( -/turf/unsimulated/mineral/asteroid, -/area/antag/mercenary) -"tRd" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/antag/mercenary) -"tRe" = ( -/obj/effect/decal/fake_object/light_source/invisible, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/ninja) -"tRr" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/holding) -"tRt" = ( -/obj/machinery/door/airlock/glass_centcom{ - name = "Valkyrie's Rest"; - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"tRu" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8; - name = "adjusted light fixture"; - pixel_y = 10 - }, -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "odin_arrivals_stall3"; - name = "Door Bolt Control"; - pixel_x = -22; - pixel_y = 1; - specialfunctions = 4 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"tRw" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"tRH" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "7,3"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"tSr" = ( -/obj/effect/floor_decal/corner/red{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"tTc" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/antag/mercenary) -"tTf" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "10,2"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"tUa" = ( -/obj/structure/curtain/black{ - icon_state = "open"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/window/reinforced/crescent{ - dir = 1; - pixel_y = -25 - }, -/turf/unsimulated/floor/plating, -/area/antag/burglar) -"tUf" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/storage/box/fancy/donut{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled, -/area/merchant_station) -"tUh" = ( -/obj/item/device/megaphone{ - pixel_x = -1; - pixel_y = 16 - }, -/obj/item/hand_tele{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/structure/table/wood, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"tUx" = ( -/turf/simulated/wall/shuttle/unique/mercenary/small{ - icon_state = "7,4" - }, -/area/shuttle/syndicate_elite) -"tVM" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/item/storage/box/fancy/cigarettes, -/obj/item/material/ashtray/bronze{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/structure/window/reinforced{ - name = "adjusted window" - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/unsimulated/floor{ - icon_state = "carpet" - }, -/area/centcom/bar) -"tVN" = ( -/turf/simulated/wall/shuttle/unique/mercenary/small{ - icon_state = "7,6" - }, -/area/shuttle/syndicate_elite) -"tVT" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"tWl" = ( -/obj/structure/shuttle_part/distress{ - icon_state = "1,0" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/distress) -"tXm" = ( -/obj/structure/shuttle_part/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "0,2"; - name = "autoshuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/arrival) -"tXA" = ( -/obj/structure/reagent_dispensers/keg/beerkeg, -/obj/effect/floor_decal/corner/blue/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeobserve) -"tXP" = ( -/obj/structure/table/skrell, -/turf/simulated/floor/grass, -/area/centcom/shared_dream) -"tYj" = ( -/turf/unsimulated/wall/fakeairlock{ - icon = 'icons/obj/doors/Doorext.dmi'; - icon_state = "door_locked"; - name = "external airlock"; - opacity = 0; - permit_ao = 0 - }, -/area/antag/raider) -"tYm" = ( -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"tYp" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"tZx" = ( -/turf/unsimulated/wall/fakepdoor{ - dir = 4 - }, -/area/antag/mercenary) -"tZF" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/random/pottedplant{ - pixel_y = 8 - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/distress_prep) -"tZN" = ( -/turf/simulated/wall/shuttle/unique/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "2,6"; - name = "autoshuttle" - }, -/area/shuttle/arrival) -"tZO" = ( -/turf/simulated/wall/shuttle/unique/cargo{ - icon_state = "1,10" - }, -/area/supply/dock) -"uad" = ( -/obj/structure/shuttle_part/burglar{ - icon_state = "2,4" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/burglar) -"uaE" = ( -/turf/unsimulated/floor, -/area/antag/mercenary) -"uaO" = ( -/obj/structure/table/rack, -/obj/item/stack/material/steel{ - amount = 50; - pixel_x = -2 - }, -/obj/item/stack/material/glass{ - amount = 50; - pixel_x = 1 - }, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"ubk" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"ubQ" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "15,0" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"ucm" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1337; - id_tag = "distress_shuttle_fore"; - name = "Fore docking controller"; - pixel_x = 6; - pixel_y = 28; - tag_door = "distress_shuttle_hatch_fore" - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1337; - id_tag = "distress_shuttle_aft"; - name = "Aft docking controller"; - pixel_x = -6; - pixel_y = 28; - tag_door = "distress_shuttle_hatch_aft" - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/distress) -"ucV" = ( -/obj/structure/shuttle_part/burglar{ - icon_state = "12,4" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/burglar) -"uds" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"udF" = ( -/obj/structure/shuttle_part/tcfl{ - icon_state = "15,1" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/legion) -"udV" = ( -/obj/structure/flora/pottedplant{ - dead = 1; - icon_state = "plant-dead"; - name = "dead plant" - }, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"ueV" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced/crescent, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/machinery/light/small/emergency{ - brightness_range = 4; - dir = 8; - name = "adjusted emergency light" - }, -/turf/space/dynamic, -/area/antag/raider) -"ufc" = ( -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"ufi" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_dininghall) -"ufj" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "9,4"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/specops) -"ufR" = ( -/obj/effect/ghostspawpoint{ - identifier = "OdinChef"; - name = "igs - OdinChef" - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"ugm" = ( -/obj/structure/table/wood, -/obj/item/spacecash/c1{ - pixel_y = 9 - }, -/obj/item/spacecash/c1, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/burglar) -"ugF" = ( -/obj/structure/shuttle_part/mercenary{ - density = 0; - icon_state = "1,13" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"ugV" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/ferry) -"uhU" = ( -/obj/structure/shuttle_part/distress{ - icon_state = "7,0"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/distress) -"uie" = ( -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 4; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/turf/simulated/floor/holofloor/space{ - blocks_air = 1; - density = 1; - dynamic_lighting = 1; - icon_state = "black" - }, -/area/antag/ninja) -"uiB" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "2,13" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"ujo" = ( -/obj/machinery/door/blast/odin/shuttle/tcfl/shutter{ - density = 1; - icon_state = "shutter1"; - id = "tcflreadyroom"; - name = "Task Force XIII Ready Room"; - opacity = 1 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"ujM" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"ujN" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"ujT" = ( -/obj/structure/table/standard, -/obj/item/clothing/mask/gas/vaurca/filter, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/ninja) -"ujU" = ( -/obj/structure/lattice, -/turf/space/dynamic, -/area/antag/mercenary) -"ukd" = ( -/obj/machinery/door/window/southleft{ - desc = "A strong door. An angry note is taped to the front."; - name = "VAURCA ONLY, We shouldn't have to say it, but here we are" - }, -/obj/structure/table/reinforced/steel{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/item/reagent_containers/food/snacks/koisbar_clean{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/snacks/koisbar_clean{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/snacks/koisbar_clean{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/snacks/koisbar_clean{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/snacks/koisbar_clean{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/snacks/koisbar_clean{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/item/clothing/mask/gas/vaurca/filter, -/obj/item/clothing/mask/gas/vaurca/filter, -/obj/item/clothing/mask/gas/vaurca/filter, -/obj/item/clothing/mask/gas/vaurca/filter, -/obj/item/clothing/mask/gas/vaurca/filter, -/obj/item/clothing/mask/gas/vaurca/filter, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion) -"ukL" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor/plating, -/area/centcom/evac) -"ukS" = ( -/obj/item/reagent_containers/food/snacks/liquidfood{ - pixel_x = -2; - pixel_y = 12 - }, -/obj/item/reagent_containers/food/snacks/liquidfood{ - pixel_x = -2; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/snacks/liquidfood{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/snacks/liquidfood{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/snacks/liquidfood{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/sign/flag/biesel/large/north, -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion) -"uld" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "3,1" - }, -/turf/unsimulated/floor/plating, -/area/supply/dock) -"ule" = ( -/obj/structure/dispenser/oxygen, -/turf/unsimulated/floor, -/area/antag/mercenary) -"ulK" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced/crescent, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"uml" = ( -/obj/structure/sign/double/map/left{ - desc = "A framed picture of a station."; - pixel_x = 16; - pixel_y = 32 - }, -/obj/effect/landmark{ - name = "burglarspawn" - }, -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/burglar) -"umQ" = ( -/obj/machinery/light/small/emergency, -/obj/effect/shuttle_landmark/distress/start, -/turf/simulated/floor/shuttle/black, -/area/shuttle/distress) -"umS" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "4,14" - }, -/area/shuttle/mercenary) -"unk" = ( -/obj/machinery/shower{ - pixel_y = 20 - }, -/obj/structure/curtain/open/shower, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/centcom/distress_prep) -"unn" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "3,13" - }, -/area/shuttle/mercenary) -"unG" = ( -/obj/machinery/door/airlock/command{ - name = "Thunderdome" - }, -/obj/machinery/door/blast/regular{ - id = "crescent_thunderdome"; - name = "Thunderdome" - }, -/obj/effect/floor_decal/corner/blue/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeobserve) -"unV" = ( -/obj/structure/table/stone/marble, -/obj/machinery/recharger{ - pixel_x = 10; - pixel_y = 9 - }, -/obj/item/device/binoculars{ - pixel_x = -6; - pixel_y = 7 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/syndicate_elite) -"uon" = ( -/obj/structure/shuttle_part/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "13,2"; - name = "autoshuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/arrival) -"uoN" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "mercworkshop"; - name = "shutter" - }, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/door/window/brigdoor/eastleft{ - req_access = list(150) - }, -/obj/item/clothing/glasses/meson, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"upn" = ( -/obj/structure/table/wood, -/obj/item/flame/candle{ - pixel_x = 1; - pixel_y = 6 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/raider) -"upy" = ( -/obj/item/reagent_containers/food/snacks/skrellsnacks{ - pixel_x = -10; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/snacks/skrellsnacks{ - pixel_x = -10; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/snacks/skrellsnacks{ - pixel_x = -10; - pixel_y = 1 - }, -/obj/item/reagent_containers/food/snacks/nathisnack{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/structure/table/standard, -/obj/item/reagent_containers/food/condiment/shaker/salt{ - pixel_y = 1 - }, -/obj/item/reagent_containers/food/condiment/shaker/peppermill{ - pixel_x = 6; - pixel_y = 1 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion) -"upK" = ( -/obj/effect/floor_decal/corner/blue/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeobserve) -"upQ" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "10,3"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"uql" = ( -/obj/item/reagent_containers/food/drinks/carton/soymilk{ - pixel_x = 6; - pixel_y = 12 - }, -/obj/item/reagent_containers/food/snacks/nathisnack{ - pixel_x = -12; - pixel_y = 12 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = 7 - }, -/obj/structure/table/standard, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion) -"uqI" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/chemical_dispenser/bar_soft/full{ - name = "beverage dispenser"; - pixel_x = -4; - pixel_y = 5; - spawn_cartridges = list(/obj/item/reagent_containers/chem_disp_cartridge/water,/obj/item/reagent_containers/chem_disp_cartridge/sodawater,/obj/item/reagent_containers/chem_disp_cartridge/ice,/obj/item/reagent_containers/chem_disp_cartridge/coffee,/obj/item/reagent_containers/chem_disp_cartridge/tea,/obj/item/reagent_containers/chem_disp_cartridge/clean_kois) - }, -/obj/structure/table/standard, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion) -"uqJ" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"uqP" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "4,13" - }, -/area/shuttle/mercenary) -"uqT" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "15,8" - }, -/area/shuttle/mercenary) -"uqU" = ( -/obj/structure/bed/stool/chair/padded/brown{ - can_buckle = 0; - dir = 4; - name = "old chair" - }, -/obj/effect/decal/fake_object{ - color = "#5C4831"; - dir = 4; - icon = 'icons/obj/furniture.dmi'; - icon_state = "chair_armrest"; - name = "leather chair" - }, -/turf/simulated/floor/carpet, -/area/centcom/shared_dream) -"urh" = ( -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/splint, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/obj/item/reagent_containers/hypospray/autoinjector/survival, -/obj/structure/closet/walllocker/medical{ - pixel_x = -28 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"urj" = ( -/obj/structure/railing/mapped{ - dir = 8; - name = "adjusted railing"; - pixel_x = -8 - }, -/turf/simulated/floor/shuttle/tan, -/area/shuttle/arrival) -"ury" = ( -/obj/structure/flora/tree/jungle{ - icon_state = "tree4" - }, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/grass, -/area/centcom/shared_dream) -"urN" = ( -/obj/structure/closet/crate/freezer/rations, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"usD" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor/plating, -/area/centcom/suppy) -"utk" = ( -/obj/effect/step_trigger/thrower/shuttle/southwest, -/turf/space/transit/bluespace/west, -/area/template_noop) -"utl" = ( -/turf/simulated/floor/tiled/ramp/bottom, -/area/centcom/legion) -"uue" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/closet/walllocker/emerglocker{ - pixel_x = 27; - pixel_y = -1 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"uul" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"uuE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/obj/machinery/light/small/emergency{ - brightness_range = 4; - dir = 8; - name = "adjusted emergency light" - }, -/turf/unsimulated/floor/plating, -/area/antag/raider) -"uuM" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"uvI" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/bodybags{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/storage/box/gloves, -/obj/item/storage/box/masks, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"uwJ" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "12,13" - }, -/area/shuttle/mercenary) -"uxa" = ( -/obj/effect/landmark{ - name = "CCIAAgent" - }, -/turf/unsimulated/floor, -/area/centcom/control) -"uxc" = ( -/obj/machinery/door/airlock/centcom{ - name = "Entertainment Wing Maintenance"; - req_one_access = list(102,106) - }, -/turf/unsimulated/floor/plating, -/area/centcom/holding) -"uxh" = ( -/turf/simulated/wall/shuttle/unique/tcfl{ - icon_state = "6,0" - }, -/area/shuttle/legion) -"uxs" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/fancy/donut{ - pixel_y = 3 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"uyK" = ( -/obj/structure/shuttle_part/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "13,6"; - name = "autoshuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/arrival) -"uze" = ( -/obj/structure/shuttle_part/tcfl{ - icon_state = "15,0" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/legion) -"uBB" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "13,13" - }, -/area/shuttle/mercenary) -"uBL" = ( -/obj/structure/shuttle_part/tcfl{ - icon_state = "17,0" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/legion) -"uCJ" = ( -/obj/structure/dispenser/oxygen{ - pixel_x = -1 - }, -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"uCS" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/pointybush, -/turf/simulated/floor/grass, -/area/centcom/shared_dream) -"uDo" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "14,13" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"uDS" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"uDT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/ninja) -"uEt" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"uEw" = ( -/obj/structure/table/standard, -/obj/item/storage/toolbox/mechanical, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"uEJ" = ( -/turf/simulated/floor/shuttle/tan, -/area/centcom/bar) -"uEQ" = ( -/obj/structure/window/shuttle/unique/mercenary{ - icon_state = "6,25"; - outside_window = 1 - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"uFb" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/structure/bed/stool/chair/padded/blue{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/holding) -"uFf" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "1,1" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"uFz" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -4 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -4 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"uFE" = ( -/obj/structure/window/shuttle/unique/burglar{ - icon_state = "0,3"; - outside_window = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/burglar) -"uFL" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "10,1"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"uGw" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "0,2" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"uGz" = ( -/turf/unsimulated/floor{ - dir = 1; - name = "staircase"; - icon_state = "tiled_preview" - }, -/area/centcom/spawning) -"uGA" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/unsimulated/floor, -/area/antag/mercenary) -"uHw" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "3,3"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"uHz" = ( -/obj/machinery/door/airlock/glass_centcom{ - name = "CCIA Auxillary Office"; - req_access = list(109); - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"uHA" = ( -/obj/structure/table/standard, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"uHL" = ( -/obj/structure/shuttle_part/mercenary{ - density = 0; - icon_state = "15,13" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"uIj" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "specops_shuttle_fore"; - name = "forward docking hatch controller"; - pixel_x = -10; - pixel_y = -23; - tag_door = "specops_shuttle_fore_hatch" - }, -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/specops) -"uJl" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "1,9" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"uJv" = ( -/obj/effect/floor_decal/spline/plain/black, -/turf/unsimulated/floor{ - icon_state = "ramptop" - }, -/area/antag/mercenary) -"uJw" = ( -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "CCIABS" - }, -/obj/structure/window/reinforced/polarized{ - id = "CCIABS" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "CCIABS" - }, -/turf/unsimulated/floor/plating, -/area/centcom/control) -"uJN" = ( -/obj/machinery/door/airlock/centcom{ - name = "Detention Wing"; - req_access = list(103) - }, -/obj/machinery/door/blast/odin{ - dir = 2; - id = "detention"; - name = "Detention Wing" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"uJO" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/syndicate/black/red, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/syndicate/black/red, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"uJY" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor/plating, -/area/centcom/distress_prep) -"uKM" = ( -/obj/effect/decal/fake_object{ - desc = "An automated turret."; - icon = 'icons/obj/turrets.dmi'; - icon_state = "cover_1"; - name = "turret" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"uLe" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"uLy" = ( -/turf/simulated/wall/shuttle/unique/mercenary/small{ - icon_state = "7,8" - }, -/area/shuttle/syndicate_elite) -"uLV" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "merc_hangar"; - name = "hangar access"; - pixel_x = 8; - pixel_y = -23; - req_access = list(150) - }, -/turf/unsimulated/floor/plating, -/area/antag/mercenary) -"uLW" = ( -/obj/structure/table/rack, -/obj/machinery/light/small{ - brightness_color = "#DA0205"; - brightness_power = 1; - name = "adjusted light fixture" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/random/weapon_and_ammo, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"uMb" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"uMB" = ( -/obj/effect/step_trigger/thrower/shuttle/southeast, -/turf/space/transit/bluespace/south, -/area/template_noop) -"uMX" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "8,7"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"uMY" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/machinery/door/window/eastleft{ - name = "dispensary"; - req_access = null; - req_one_access = list(33,104) - }, -/obj/item/reagent_containers/glass/beaker/large, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/holding) -"uNd" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"uNr" = ( -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/reagent_containers/hypospray, -/obj/item/reagent_containers/hypospray, -/obj/item/clothing/gloves/latex/nitrile/tajara, -/obj/item/clothing/gloves/latex/nitrile/unathi, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/mask/surgical, -/obj/item/storage/belt/medical, -/obj/item/storage/belt/medical/paramedic/combat, -/obj/item/storage/belt/medical, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/closet/walllocker/medical/secure{ - name = "medical supplies"; - pixel_x = 28; - req_access = null - }, -/obj/item/storage/backpack/messenger/med, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"uNJ" = ( -/obj/structure/railing/mapped{ - name = "adjusted railing" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/ferry) -"uNY" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/turf/space/dynamic, -/area/antag/raider) -"uOx" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/unsimulated/floor, -/area/antag/mercenary) -"uOL" = ( -/obj/machinery/computer/shuttle_control/multi/raider, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/shuttle/skipjack) -"uOM" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/sign/flag/biesel{ - pixel_x = 5; - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"uOR" = ( -/obj/structure/table/standard, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/holding) -"uPw" = ( -/obj/item/flame/candle{ - pixel_x = -4; - pixel_y = 21 - }, -/obj/effect/decal/fake_object{ - desc = "A worn-down wooden table covered in a blue cloth."; - icon = 'icons/obj/furniture.dmi'; - icon_state = "memorial1"; - name = "memorial Table"; - pixel_y = 20 - }, -/obj/effect/decal/fake_object{ - desc = "A sweet and strongly alchoholic drink, made after numerous distillations and years of maturing."; - dir = 1; - icon = 'icons/obj/drinks.dmi'; - icon_state = "cognacbottle"; - name = "sealed cognac bottle"; - pixel_x = 4; - pixel_y = 34 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"uPE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"uPQ" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/railing/mapped{ - name = "adjusted railing" - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"uRD" = ( -/obj/machinery/door/airlock/hatch{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "distress_shuttle_hatch_aft"; - locked = 1; - name = "Aft Shuttle Hatch"; - req_access = list(112); - dir = 1 - }, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id = "distress_blast_aft"; - name = "Blast Door" - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/distress) -"uRY" = ( -/obj/effect/decal/fake_object{ - desc = "In memoriam. The picture shows a human posing with a gauss thumper trying their best to look tough. The background appears to be the Towers cargo bay."; - dir = 4; - icon = 'icons/obj/decals.dmi'; - icon_state = "memorial_picture"; - name = "framed picture of Vol. Gutterey"; - pixel_y = 23 - }, -/obj/effect/decal/fake_object{ - desc = "In memoriam. The picture shows a smiling unathi shaking hands with a hesitant looking human compatriot."; - dir = 8; - icon = 'icons/obj/decals.dmi'; - icon_state = "memorial_picture"; - name = "framed picture of Lgn. Skegresr"; - pixel_x = 9; - pixel_y = 23 - }, -/obj/effect/decal/fake_object{ - desc = "In memoriam. The picture shows a shell ipc looking at the setting sun whilst standing on a green pasture."; - icon = 'icons/obj/decals.dmi'; - icon_state = "memorial_picture"; - name = "framed picture of Vol. Anderson"; - pixel_x = -9; - pixel_y = 23 - }, -/obj/effect/decal/fake_object{ - desc = "In memoriam. The picture shows a stern looking human standing at attention in front of a run-down bulkhead."; - dir = 8; - icon = 'icons/obj/decals.dmi'; - icon_state = "memorial_picture2"; - name = "framed picture of Pfct. Singh"; - pixel_y = 32 - }, -/obj/effect/decal/fake_object{ - desc = "A worn-down wooden table covered in a blue cloth."; - icon = 'icons/obj/furniture.dmi'; - icon_state = "memorial2"; - name = "memorial Table"; - pixel_y = 20 - }, -/obj/effect/decal/fake_object{ - desc = "A dusty and empty drinking glass."; - dir = 4; - icon = 'icons/obj/drinks.dmi'; - icon_state = "glass_empty"; - name = "dusty glass"; - pixel_x = -20; - pixel_y = 28 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"uSk" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "8,2" - }, -/area/shuttle/mercenary) -"uSm" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass, -/area/centcom/shared_dream) -"uSv" = ( -/turf/unsimulated/floor, -/area/centcom/control) -"uSA" = ( -/obj/item/flame/candle{ - pixel_x = 5; - pixel_y = 21 - }, -/obj/structure/flora/pottedplant{ - anchored = 1; - icon_state = "plant-27"; - pixel_x = -8; - pixel_y = 33 - }, -/obj/effect/decal/fake_object{ - desc = "A worn-down wooden table covered in a blue cloth."; - icon = 'icons/obj/furniture.dmi'; - icon_state = "memorial3"; - name = "memorial Table"; - pixel_y = 20 - }, -/obj/effect/decal/fake_object{ - desc = "In memoriam. Made the ultimate sacrifice aboard the NSS Aurora, bravely defending its crew against a horrible geist, saving countless from an equally grim fate.. The picture shows a tajara deep in thought, playing chess against a compatriot."; - dir = 1; - icon = 'icons/obj/decals.dmi'; - icon_state = "memorial_picture"; - name = "framed picture of Vol. Rrhamaja"; - pixel_x = -8; - pixel_y = 20 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"uSG" = ( -/obj/structure/sign/flag/biesel{ - pixel_x = -5; - pixel_y = 32 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"uTc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/item/clothing/glasses/welding/superior{ - pixel_y = 9 - }, -/obj/item/clothing/glasses/welding/superior{ - pixel_y = 9 - }, -/obj/item/storage/belt/utility/very_full{ - pixel_y = -4 - }, -/obj/item/storage/belt/utility/very_full{ - pixel_y = -4 - }, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/item/grenade/chem_grenade/metalfoam{ - pixel_x = 16; - pixel_y = 8 - }, -/obj/item/grenade/chem_grenade/metalfoam{ - pixel_x = 16; - pixel_y = 8 - }, -/obj/item/grenade/chem_grenade/metalfoam{ - pixel_x = 16; - pixel_y = 8 - }, -/obj/item/grenade/chem_grenade/metalfoam{ - pixel_x = 16; - pixel_y = 8 - }, -/obj/structure/table/steel, -/obj/item/weldingtool/experimental{ - pixel_x = 15; - pixel_y = 4 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"uTe" = ( -/obj/structure/shuttle_part/transfer{ - density = 0; - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "14,9"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"uTw" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/extinguisher_cabinet/east{ - pixel_y = 1 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/syndicate_elite) -"uTI" = ( -/obj/effect/shuttle_landmark/skipjack/interim, -/turf/space/transit/bluespace/south, -/area/template_noop) -"uTK" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/hypospray/autoinjector/survival, -/obj/item/storage/box/gloves{ - pixel_y = -8 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"uTL" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "9,2" - }, -/area/shuttle/mercenary) -"uTT" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/item/device/camera{ - desc = "A polaroid camera. This one has 'Kismet' scribled into the casing." - }, -/obj/item/device/camera{ - desc = "A polaroid camera. This one has 'Petr' scribled into the casing." - }, -/obj/item/device/flashlight/lamp{ - pixel_x = 3; - pixel_y = -12 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/structure/table/wood{ - table_reinf = "wood" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/burglar) -"uUa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/door/airlock/hatch{ - req_access = list(150); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"uUx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/wall/fakepdoor{ - icon_state = "shutter1"; - name = "shutter"; - opacity = 0; - permit_ao = 0 - }, -/area/antag/raider) -"uUF" = ( -/obj/machinery/porta_turret/crescent, -/obj/effect/floor_decal/industrial/warning/full, -/turf/unsimulated/floor, -/area/centcom/control) -"uVh" = ( -/obj/structure/railing/mapped{ - dir = 4; - name = "adjusted railing"; - pixel_x = 8 - }, -/turf/simulated/floor/shuttle/tan, -/area/shuttle/arrival) -"uVE" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "1,11"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/supply/dock) -"uVX" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "0,12" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"uWg" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "3,1" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"uWm" = ( -/obj/structure/table/rack, -/obj/item/clothing/under/color/green, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/melee/energy/axe, -/obj/effect/decal/fake_object/light_source/invisible, -/turf/simulated/floor, -/area/tdome/tdome1) -"uWV" = ( -/obj/structure/table/standard, -/obj/machinery/vending/wallmed1{ - name = "Emergency NanoMed"; - pixel_y = 30; - req_access = null - }, -/obj/item/reagent_containers/glass/bottle/peridaxon{ - pixel_x = 2; - pixel_y = 7 - }, -/obj/item/reagent_containers/glass/bottle/dermaline{ - pixel_x = -14; - pixel_y = 6 - }, -/obj/item/reagent_containers/glass/bottle/dexalin_plus{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"uXF" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "1,12"; - opacity = 1 - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"uYl" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "2,12" - }, -/area/shuttle/mercenary) -"uYK" = ( -/obj/machinery/acting/changer, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"uZp" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - name = "adjusted window" - }, -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"uZF" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 4; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"uZL" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor/plating, -/area/centcom/ferry) -"vas" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "3,12" - }, -/area/shuttle/mercenary) -"vaK" = ( -/obj/machinery/door/airlock/glass_centcom{ - name = "Administrative Wing Processing"; - req_access = list(101); - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"vaT" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 2; - icon_state = "right"; - name = "Administrative Wing Processing"; - req_access = list(101) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"vbT" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/checkpoint/aft) -"vbU" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/ss13/odin6, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"vcu" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "5,1" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"vcC" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "4,12" - }, -/area/shuttle/mercenary) -"vcK" = ( -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"vdf" = ( -/obj/machinery/door/airlock/hatch{ - name = "Workshop"; - req_access = list(150); - dir = 1 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"vdh" = ( -/obj/structure/bed/stool/chair/padded/beige{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"vdn" = ( -/obj/structure/shuttle_part/burglar{ - icon_state = "12,3" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/burglar) -"vdU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"vec" = ( -/turf/unsimulated/wall/fakepdoor, -/area/centcom/legion/hangar5) -"vej" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "6,12" - }, -/area/shuttle/mercenary) -"veZ" = ( -/obj/item/ore{ - name = "meteor fragment"; - pixel_y = -4 - }, -/obj/effect/decal/fake_object{ - dir = 4; - icon = 'icons/obj/recycling.dmi'; - icon_state = "conveyor-broken"; - name = "conveyor" - }, -/turf/unsimulated/floor{ - icon_state = "panelscorched" - }, -/area/antag/raider) -"vfE" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "7,12" - }, -/area/shuttle/mercenary) -"vgD" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"vgE" = ( -/obj/structure/sink{ - pixel_y = 28 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"vgT" = ( -/obj/structure/shuttle_part/burglar{ - icon_state = "5,0"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/burglar) -"vht" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "9,0"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/specops) -"vhv" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/bed/stool/chair/unmovable{ - dir = 8 - }, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"vhx" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/janitorialcart/full{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"vih" = ( -/obj/structure/closet/secure_closet/medical2{ - req_access = null - }, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"vim" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Crew Cabin"; - req_access = list(150); - dir = 1 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"viR" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "9,12" - }, -/area/shuttle/mercenary) -"viT" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Strongroom"; - req_access = list(150); - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/reinforced, -/area/shuttle/mercenary) -"vjJ" = ( -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion/hangar5) -"vjQ" = ( -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"vjR" = ( -/obj/structure/cryofeed, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/window/reinforced/crescent, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/ferry) -"vjV" = ( -/obj/structure/diona/vines, -/obj/structure/diona/vines{ - icon_state = "glowbulb" - }, -/obj/effect/decal/fake_object/light_source/invisible{ - light_color = "#00ff00"; - light_range = 3; - name = "lime light" - }, -/turf/simulated/floor/diona, -/area/centcom/shared_dream) -"vkb" = ( -/obj/item/storage/box/fancy/cigarettes/cigar{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/flame/lighter/zippo{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/structure/table/standard, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion/hangar5) -"vkD" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "12,7" - }, -/area/shuttle/mercenary) -"vkY" = ( -/obj/structure/shuttle_part/transfer{ - density = 0; - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "14,14"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"vlD" = ( -/obj/structure/table/rack, -/obj/item/rig/retro/equipped, -/obj/item/rig/retro/equipped, -/obj/item/clothing/accessory/legion/specialist, -/obj/item/clothing/accessory/legion/specialist, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"vmB" = ( -/obj/machinery/cryopod, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"vmR" = ( -/obj/machinery/computer/shuttle_control/multi/antag/syndicate, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"vng" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/transport1) -"vnq" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"vnx" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"vnG" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "3,10"; - opacity = 1; - outside_part = 0 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/supply/dock) -"voh" = ( -/obj/effect/floor_decal/corner/grey{ - dir = 6 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"von" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"vox" = ( -/obj/structure/window/shuttle/unique/mercenary/small{ - icon_state = "5,13"; - outside_window = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"voS" = ( -/obj/structure/lattice, -/obj/item/ore{ - name = "meteor fragment"; - pixel_x = -8; - pixel_y = -8 - }, -/obj/item/stack/rods, -/obj/item/material/shard, -/turf/space/dynamic, -/area/antag/raider) -"vpg" = ( -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"vpi" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "11,21" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"vpG" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/table/standard, -/obj/item/reagent_containers/blood/OMinus{ - pixel_x = -9; - pixel_y = 6 - }, -/obj/item/reagent_containers/glass/bottle/peridaxon{ - pixel_x = 6; - pixel_y = 9 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/holding) -"vqK" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "11,12" - }, -/area/shuttle/mercenary) -"vqM" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "12,12" - }, -/area/shuttle/mercenary) -"vrw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/trashcart{ - opened = 1 - }, -/obj/item/trash/koisbar, -/obj/item/device/paicard, -/obj/random/junk, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"vrQ" = ( -/obj/structure/table/standard, -/obj/item/storage/box/gloves{ - pixel_x = 11; - pixel_y = 12 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/item/storage/box/masks{ - pixel_x = 12 - }, -/obj/item/storage/box/bodybags{ - pixel_x = -6 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -6; - pixel_y = 16 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"vrY" = ( -/obj/structure/table/rack, -/obj/item/rig/retro/equipped, -/obj/item/rig/retro/equipped, -/obj/item/rig/retro/equipped, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 22 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 32 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"vsG" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "13,12" - }, -/area/shuttle/mercenary) -"vwg" = ( -/obj/machinery/computer/shuttle_control/multi/legion, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion/hangar5) -"vwU" = ( -/turf/simulated/wall/shuttle/dark/corner/underlay{ - dir = 10 - }, -/area/centcom/legion/hangar5) -"vxd" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"vxh" = ( -/obj/structure/bed/stool/chair/padded/blue{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/holding) -"vxi" = ( -/obj/structure/bed/stool/chair/office/bridge/pilot, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"vxK" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"vxP" = ( -/turf/simulated/floor/beach/water/pool{ - icon_state = "seashallow"; - name = "ocean" - }, -/area/centcom/shared_dream) -"vyc" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/table/rack, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 22 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 32 - }, -/obj/item/crowbar, -/obj/item/crowbar, -/obj/item/crowbar, -/obj/item/crowbar, -/obj/item/crowbar, -/obj/item/crowbar, -/obj/item/clothing/accessory/holster/hip, -/obj/item/clothing/accessory/holster/hip, -/obj/item/clothing/accessory/holster/hip, -/obj/item/clothing/accessory/holster/hip, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"vyn" = ( -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/evac) -"vyq" = ( -/obj/structure/shuttle_part/distress{ - icon_state = "0,4" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/distress) -"vyX" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "3,0"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/specops) -"vze" = ( -/obj/structure/table/steel, -/obj/item/deck/cards, -/turf/simulated/floor/exoplanet/barren, -/area/centcom/shared_dream) -"vzG" = ( -/obj/machinery/vending/snack{ - name = "hacked Getmore Chocolate Corp"; - prices = list() - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"vzV" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"vAk" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "14,12" - }, -/area/shuttle/mercenary) -"vAu" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "15,12" - }, -/area/shuttle/mercenary) -"vAv" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced/crescent, -/turf/space/dynamic, -/area/template_noop) -"vAw" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "3,20"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"vBe" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"vCa" = ( -/obj/structure/bed/stool/chair/shuttle{ - can_dismantle = 1; - dir = 4; - name = "worn chair" - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"vCY" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "CentComArrivalsAftInt"; - name = "Interior Checkpoint"; - pixel_x = -6; - pixel_y = 5; - req_access = list(103) - }, -/obj/machinery/turretid{ - ailock = 1; - check_arrest = 0; - check_records = 0; - pixel_x = -31; - req_access = list(103) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/checkpoint/aft) -"vCZ" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/bed/stool/chair/padded/black{ - dir = 1 - }, -/obj/machinery/button/remote/blast_door{ - id = "crescent_vip_shuttle"; - name = "VIP Shuttle Access"; - pixel_x = -7; - pixel_y = -23; - req_access = null; - req_one_access = list(108,109) - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"vDf" = ( -/obj/effect/landmark{ - name = "ninjastart" - }, -/obj/effect/decal/fake_object/light_source/invisible, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/circuit.dmi'; - icon_state = "bcircuit" - }, -/area/antag/ninja) -"vDk" = ( -/obj/effect/decal/fake_object{ - density = 1; - desc = "Ding."; - icon = 'icons/obj/doors/doorlift.dmi'; - icon_state = "door_closed"; - name = "elevator door"; - opacity = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/bar) -"vDl" = ( -/obj/machinery/vending/cola{ - name = "Free Robust Softdrinks"; - prices = list() - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"vEj" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "5,0" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"vEy" = ( -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"vFT" = ( -/turf/unsimulated/floor{ - icon_state = "wood-broken5" - }, -/area/centcom/legion/hangar5) -"vFX" = ( -/obj/machinery/door/window/northright{ - name = "dispensary"; - req_access = null; - req_one_access = list(33,104) - }, -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/effect/ghostspawpoint{ - identifier = "OdinPharm"; - name = "igs - OdinPharmacist" - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/holding) -"vGd" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"vGf" = ( -/turf/simulated/wall/shuttle/unique/mercenary/small{ - icon_state = "1,5" - }, -/area/shuttle/syndicate_elite) -"vIS" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1337; - id_tag = "merc_base"; - pixel_x = -25; - pixel_y = -5 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"vJq" = ( -/obj/machinery/recharge_station, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"vKf" = ( -/obj/item/storage/box/zipties{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/box/handcuffs, -/obj/item/device/radio/headset/syndicate{ - pixel_x = 16; - pixel_y = 6 - }, -/obj/item/device/radio/headset/syndicate{ - pixel_x = 16; - pixel_y = 6 - }, -/obj/item/device/radio/headset/syndicate{ - pixel_x = 16; - pixel_y = 6 - }, -/obj/item/device/radio/headset/syndicate{ - pixel_x = 16; - pixel_y = 6 - }, -/obj/structure/table/reinforced/steel, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"vKj" = ( -/obj/structure/table/rack, -/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/clothing/mask/gas/tactical, -/obj/item/clothing/mask/gas/tactical, -/obj/item/clothing/mask/gas/tactical, -/obj/item/clothing/mask/gas/tactical, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"vKl" = ( -/obj/structure/undies_wardrobe, -/obj/structure/sign/flag/biesel{ - pixel_y = 32 - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"vKC" = ( -/obj/structure/table/rack, -/obj/structure/sign/poster{ - icon_state = "tcflposter"; - pixel_x = 16; - pixel_y = 32; - poster_type = "/datum/poster/bay_67" - }, -/obj/item/storage/backpack/legion{ - pixel_x = -1 - }, -/obj/item/storage/backpack/legion{ - pixel_x = -1 - }, -/obj/item/storage/backpack/legion{ - pixel_x = -1 - }, -/obj/item/storage/backpack/legion{ - pixel_x = -1 - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"vKR" = ( -/obj/structure/closet{ - icon_door = "blue"; - name = "Spare Uniforms" - }, -/obj/item/clothing/under/legion, -/obj/item/clothing/under/legion, -/obj/item/clothing/under/legion, -/obj/item/clothing/under/legion, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/shoes/jackboots/toeless, -/obj/item/clothing/shoes/jackboots/toeless, -/obj/item/clothing/suit/storage/legion, -/obj/item/clothing/suit/storage/legion, -/obj/item/clothing/suit/storage/legion, -/obj/item/clothing/suit/storage/legion, -/obj/item/towel, -/obj/item/towel, -/obj/item/rig/light/offworlder, -/obj/item/clothing/accessory/offworlder/bracer, -/obj/item/storage/pill_bottle/rmt, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"vLI" = ( -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/effect/decal/fake_object{ - dir = 4; - icon = 'icons/obj/recycling.dmi'; - icon_state = "conveyor0"; - name = "conveyor" - }, -/obj/structure/closet/crate/loot{ - desc = "The old dusty labels on this crate indicate that it was supposed to be shipped long ago."; - name = "forgotten shipment" - }, -/turf/unsimulated/floor/plating, -/area/antag/raider) -"vLR" = ( -/obj/structure/undies_wardrobe, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"vMb" = ( -/obj/effect/landmark{ - name = "burglarspawn" - }, -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/antag/burglar) -"vMG" = ( -/obj/structure/bed/stool/chair/padded/blue{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/holding) -"vMR" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/item/clothing/accessory/storage/bandolier{ - pixel_x = -8 - }, -/obj/item/clothing/accessory/storage/bandolier{ - pixel_x = -8 - }, -/obj/item/crowbar{ - pixel_x = 6 - }, -/obj/item/crowbar{ - pixel_x = 6 - }, -/obj/item/crowbar{ - pixel_x = 6 - }, -/obj/item/clothing/glasses/sunglasses/aviator{ - pixel_x = 6 - }, -/obj/item/clothing/glasses/sunglasses/aviator{ - pixel_x = 6 - }, -/obj/item/clothing/glasses/sunglasses/aviator{ - pixel_x = 6 - }, -/obj/item/clothing/glasses/sunglasses/aviator{ - pixel_x = 6 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_y = -4 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_y = -4 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_y = -4 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_y = -4 - }, -/obj/structure/table/reinforced/steel, -/obj/item/clothing/glasses/night{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/clothing/glasses/night{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/clothing/glasses/night{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/clothing/glasses/night{ - pixel_x = -6; - pixel_y = 8 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"vMZ" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/light/small{ - brightness_power = 0.5; - dir = 8; - name = "adjusted light fixture" - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"vNg" = ( -/obj/machinery/door/airlock/centcom{ - name = "Ready Room"; - req_access = list(109) - }, -/obj/machinery/door/blast/odin{ - id = "CCIAReadyRoom"; - name = "Ready Room" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"vNj" = ( -/turf/simulated/wall/shuttle/unique/ert{ - icon_state = "5,0" - }, -/area/shuttle/specops) -"vNl" = ( -/turf/simulated/wall/shuttle/unique/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "3,6"; - name = "autoshuttle" - }, -/area/shuttle/arrival) -"vNq" = ( -/obj/effect/floor_decal/corner_wide/paleblue/diagonal{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"vNR" = ( -/obj/effect/floor_decal/corner/grey{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"vOb" = ( -/obj/item/clothing/mask/gas/syndicate{ - pixel_y = 6 - }, -/obj/item/clothing/mask/gas/syndicate{ - pixel_y = 6 - }, -/obj/item/clothing/mask/gas/syndicate{ - pixel_y = 6 - }, -/obj/item/clothing/mask/gas/syndicate{ - pixel_y = 6 - }, -/obj/item/clothing/mask/gas/tactical{ - pixel_x = -7; - pixel_y = -1 - }, -/obj/item/clothing/mask/gas/tactical{ - pixel_x = -7; - pixel_y = -1 - }, -/obj/item/clothing/mask/gas/tactical{ - pixel_x = -7; - pixel_y = -1 - }, -/obj/item/clothing/mask/gas/tactical{ - pixel_x = -7; - pixel_y = -1 - }, -/obj/item/clothing/mask/gas/alt{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/clothing/mask/gas/alt{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/clothing/mask/gas/alt{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/clothing/mask/gas/alt{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/clothing/mask/gas/half{ - pixel_x = -1; - pixel_y = -6 - }, -/obj/item/clothing/mask/gas/half{ - pixel_x = -1; - pixel_y = -6 - }, -/obj/item/clothing/mask/gas/half{ - pixel_x = -1; - pixel_y = -6 - }, -/obj/item/clothing/mask/gas/half{ - pixel_x = -1; - pixel_y = -6 - }, -/obj/structure/table/reinforced/steel, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"vPG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/structure/mirror{ - pixel_y = 31 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"vPK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - pixel_y = 20 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"vQl" = ( -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"vQu" = ( -/obj/effect/landmark/distress_team_equipment, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/distress_prep) -"vRS" = ( -/obj/structure/lattice/catwalk/indoor/grate/light, -/turf/unsimulated/floor/plating, -/area/antag/ninja) -"vSi" = ( -/obj/item/modular_computer/console/preset/command, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/control) -"vSR" = ( -/obj/item/clothing/accessory/storage/pouches/black{ - pixel_x = -12; - pixel_y = 8 - }, -/obj/item/clothing/accessory/storage/pouches/brown{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/clothing/accessory/storage/pouches/brown{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/clothing/accessory/storage/pouches/white{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/clothing/accessory/storage/pouches/white{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/clothing/accessory/storage/pouches/black{ - pixel_x = -12; - pixel_y = 8 - }, -/obj/item/clothing/accessory/storage/black_vest{ - pixel_x = -12 - }, -/obj/item/clothing/accessory/storage/black_vest{ - pixel_x = -12 - }, -/obj/item/clothing/accessory/storage/black_vest{ - pixel_x = -12 - }, -/obj/item/clothing/accessory/storage/brown_vest, -/obj/item/clothing/accessory/storage/brown_vest, -/obj/item/clothing/accessory/storage/white_vest{ - pixel_x = 12 - }, -/obj/item/clothing/accessory/storage/white_vest{ - pixel_x = 12 - }, -/obj/structure/table/reinforced/steel, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"vTx" = ( -/obj/structure/window/shuttle/unique/ccia{ - icon_state = "2,1" - }, -/turf/simulated/floor/plating, -/area/shuttle/transport1) -"vTJ" = ( -/turf/simulated/wall/shuttle/unique/distress{ - icon_state = "3,4" - }, -/area/shuttle/distress) -"vTP" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - pixel_y = 20 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"vUm" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "5,1" - }, -/turf/unsimulated/floor/plating, -/area/supply/dock) -"vUs" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled/dark, -/area/shuttle/syndicate_elite) -"vUv" = ( -/obj/structure/railing/mapped, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/grass, -/area/centcom/bar) -"vVC" = ( -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"vVW" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "2,0" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"vWo" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/bed/stool/chair/padded/blue{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/spawning) -"vWz" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"vWR" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/bed/stool/chair/padded/blue{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/holding) -"vWY" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/structure/table/reinforced/steel, -/obj/item/storage/belt/military{ - pixel_x = 16; - pixel_y = 5 - }, -/obj/item/storage/belt/military{ - pixel_x = 16; - pixel_y = 5 - }, -/obj/item/storage/belt/military{ - pixel_x = 16; - pixel_y = 5 - }, -/obj/item/storage/belt/military{ - pixel_x = 16; - pixel_y = 5 - }, -/obj/item/clothing/suit/armor/carrier/heavy{ - pixel_x = -6; - pixel_y = 1 - }, -/obj/item/clothing/suit/armor/carrier/heavy{ - pixel_x = -6; - pixel_y = 1 - }, -/obj/item/clothing/suit/armor/carrier/heavy{ - pixel_x = -6; - pixel_y = 1 - }, -/obj/item/clothing/suit/armor/carrier/heavy{ - pixel_x = -6; - pixel_y = 1 - }, -/obj/item/clothing/head/helmet/merc{ - pixel_x = 6 - }, -/obj/item/clothing/head/helmet/merc{ - pixel_x = 6 - }, -/obj/item/clothing/head/helmet/merc{ - pixel_x = 6 - }, -/obj/item/clothing/head/helmet/merc{ - pixel_x = 6 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"vXg" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/floor_decal/corner/grey{ - dir = 5 - }, -/obj/machinery/door/window/northright{ - req_access = list(109) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"vXT" = ( -/turf/simulated/wall/shuttle/unique/distress{ - icon_state = "2,0" - }, -/area/shuttle/distress) -"vYd" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/unsimulated/floor/plating, -/area/antag/mercenary) -"vYv" = ( -/obj/structure/closet/crate/medical, -/obj/item/reagent_containers/inhaler/pneumalin, -/obj/item/reagent_containers/inhaler/pneumalin, -/obj/item/reagent_containers/hypospray/autoinjector/survival, -/obj/item/reagent_containers/hypospray/autoinjector/survival, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/adv, -/obj/item/roller, -/obj/item/roller, -/obj/item/airbubble, -/obj/item/storage/firstaid/regular, -/turf/simulated/floor/shuttle/black, -/area/shuttle/burglar) -"vYY" = ( -/obj/vehicle/droppod/syndie{ - connected_blastdoor = "merc_droppod_8" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/antag/mercenary) -"vZo" = ( -/obj/effect/landmark/thunderdomeobserve, -/obj/effect/floor_decal/corner/blue/diagonal, -/obj/effect/decal/fake_object/light_source/invisible, -/obj/structure/bed/stool/chair/folding, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeobserve) -"vZA" = ( -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 8; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/obj/effect/floor_decal/spline/plain/black, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/specops) -"vZI" = ( -/obj/item/clothing/accessory/holster/hip, -/obj/item/clothing/accessory/holster/hip, -/obj/item/clothing/accessory/holster/armpit, -/obj/item/clothing/accessory/holster/armpit, -/obj/item/clothing/accessory/holster/thigh, -/obj/item/clothing/accessory/holster/thigh, -/obj/item/clothing/accessory/holster/armpit/brown, -/obj/item/clothing/accessory/holster/armpit/brown, -/obj/item/clothing/accessory/holster/hip/brown, -/obj/item/clothing/accessory/holster/hip/brown, -/obj/item/clothing/accessory/holster/thigh/brown, -/obj/item/clothing/accessory/holster/thigh/brown, -/obj/structure/table/reinforced/steel, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"wap" = ( -/obj/effect/step_trigger/thrower/shuttle/southeast, -/turf/space/transit/bluespace/west, -/area/template_noop) -"waR" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/centcom/shared_dream) -"waZ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"wba" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"wbd" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/arrival) -"wbB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/chair, -/obj/item/storage/briefcase, -/turf/unsimulated/floor{ - dir = 1; - icon_state = "tiled_preview" - }, -/area/antag/raider) -"wbI" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/random/pottedplant, -/turf/unsimulated/floor, -/area/centcom/spawning) -"wbM" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "12,2" - }, -/area/shuttle/mercenary) -"wbN" = ( -/obj/structure/shuttle_part/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "0,0"; - name = "autoshuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/arrival) -"wcT" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/unsimulated/floor, -/area/antag/mercenary) -"wds" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"wdu" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "4,4"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/specops) -"wdJ" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"wdY" = ( -/obj/machinery/acting/changer{ - density = 0; - pixel_y = -16 - }, -/turf/unsimulated/floor, -/area/antag/loner) -"weB" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"weG" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/obj/structure/sign/vacuum, -/turf/unsimulated/floor/plating, -/area/antag/raider) -"weL" = ( -/obj/structure/window/shuttle/unique/transfer{ - icon_state = "5,22"; - outside_window = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"wfu" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"wfA" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/structure/flora/ausbushes/grassybush{ - pixel_y = -3 - }, -/turf/simulated/floor/grass, -/area/centcom/holding) -"wgf" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/escape) -"wgo" = ( -/obj/structure/bed/stool/padded/red, -/turf/unsimulated/floor, -/area/centcom/legion) -"wgM" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 4; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/obj/structure/table/rack, -/obj/item/clothing/mask/gas/half{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/clothing/mask/gas/half{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/clothing/mask/gas/half{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/clothing/mask/gas/half{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/clothing/mask/gas/half{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/clothing/mask/gas/tactical{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/clothing/mask/gas/tactical{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/clothing/mask/gas/tactical{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/clothing/mask/gas/tactical{ - pixel_x = -1; - pixel_y = -2 - }, -/obj/item/clothing/mask/gas/tactical{ - pixel_x = -1; - pixel_y = -2 - }, -/obj/item/clothing/mask/gas/tactical{ - pixel_x = -1; - pixel_y = -2 - }, -/obj/machinery/light{ - dir = 4; - name = "adjusted light fixture"; - pixel_x = -3; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"wgU" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"wha" = ( -/obj/structure/bed/stool/padded/red, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"whm" = ( -/obj/effect/step_trigger/thrower/shuttle/west, -/turf/space/transit/bluespace/south, -/area/template_noop) -"whV" = ( -/obj/structure/table/wood, -/obj/random/pottedplant, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_dininghall) -"whZ" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/tray, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"wjH" = ( -/obj/item/modular_computer/console/preset/security, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/blue/full, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"wjW" = ( -/obj/machinery/autolathe{ - desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; - hacked = 1; - name = "Modified Autolathe"; - pixel_y = 2 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"wkk" = ( -/obj/machinery/door/airlock/centcom{ - name = "Red Access"; - req_access = list(101) - }, -/obj/machinery/door/blast/regular{ - id = "crescent_thunderdome"; - name = "Thunderdome" - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"wkz" = ( -/obj/structure/bed/roller, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"wkO" = ( -/obj/machinery/chemical_dispenser/bar_alc/full{ - pixel_y = 7 - }, -/obj/structure/table/wood{ - table_reinf = "wood" - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/antag/raider) -"wlj" = ( -/turf/simulated/wall/diona{ - opacity = 0 - }, -/area/centcom/shared_dream) -"wlw" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - id = "odinasshutters"; - name = "Blast Shutters"; - opacity = 0 - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/item/pen{ - pixel_x = -4; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/spawning) -"wlG" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/material/knife/tacknife{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/material/knife/tacknife{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/material/knife/tacknife{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/material/knife/tacknife{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/melee/baton/stunrod{ - pixel_x = 1; - pixel_y = -2 - }, -/obj/item/melee/baton/stunrod{ - pixel_x = 1; - pixel_y = -2 - }, -/obj/item/melee/baton/stunrod{ - pixel_x = 1; - pixel_y = -2 - }, -/obj/item/melee/baton/stunrod{ - pixel_x = 1; - pixel_y = -2 - }, -/obj/item/shield/energy{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/shield/energy{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/shield/energy{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/shield/energy{ - pixel_x = -8; - pixel_y = 7 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"wlL" = ( -/obj/structure/table/reinforced, -/obj/random/contraband, -/turf/unsimulated/floor/plating, -/area/centcom/holding) -"wmg" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"wmL" = ( -/obj/structure/lattice/catwalk, -/turf/space/dynamic, -/area/template_noop) -"wmP" = ( -/obj/structure/undies_wardrobe{ - pixel_x = 2; - pixel_y = 4 - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/distress_prep) -"wne" = ( -/turf/unsimulated/floor/plating, -/area/centcom/evac) -"wnl" = ( -/obj/machinery/vending/zora{ - pixel_x = 5 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"wnK" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark{ - name = "CCIAEscort" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"woD" = ( -/turf/simulated/floor/holofloor/space{ - blocks_air = 1; - density = 1 - }, -/area/centcom/shared_dream) -"woR" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"woS" = ( -/obj/structure/bed/stool/chair/shuttle{ - can_dismantle = 1; - dir = 8; - name = "worn chair" - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"wpg" = ( -/obj/item/paper_bin{ - pixel_x = -8; - pixel_y = 6 - }, -/obj/item/pen/blue{ - pixel_x = -9; - pixel_y = 6 - }, -/obj/structure/table/standard, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion/hangar5) -"wpj" = ( -/obj/structure/shuttle_part/burglar{ - icon_state = "3,0" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/burglar) -"wpw" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/ghostspawpoint{ - identifier = "TCFLERTSpawn - Prefect"; - name = "igs - TCFLERT - Prefect" - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion/hangar5) -"wpA" = ( -/obj/structure/shuttle_part/transfer{ - density = 0; - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "14,5"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"wpI" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"wpP" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/pen{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/structure/table/reinforced, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "mercworkshop"; - name = "shutter" - }, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"wqa" = ( -/turf/unsimulated/wall/fakepdoor{ - dir = 4 - }, -/area/antag/burglar) -"wqv" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/door/window/brigdoor/southleft{ - name = "holding cell" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/holding) -"wrp" = ( -/obj/structure/table/rack, -/obj/item/shield/riot/tact/legion{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/shield/riot/tact/legion{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/shield/riot/tact/legion{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/shield/riot/tact/legion{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/shield/riot/tact/legion{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/shield/riot/tact/legion{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"wrA" = ( -/obj/structure/table/standard, -/obj/item/storage/box/handcuffs, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"wrI" = ( -/obj/structure/curtain/black{ - icon_state = "open"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent{ - dir = 1; - pixel_y = -25 - }, -/turf/unsimulated/floor/plating, -/area/antag/burglar) -"wrJ" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/mech_recharger, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"wrQ" = ( -/obj/structure/closet/crate/secure/legion{ - locked = 0; - opened = 1 - }, -/obj/item/flag/biesel{ - pixel_y = 8 - }, -/obj/item/flag/biesel/l{ - pixel_y = 8 - }, -/obj/item/flag/biesel/l{ - pixel_y = 8 - }, -/obj/item/storage/box/tcaf_pamphlet, -/obj/item/material/twohanded/pike/flag, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion/hangar5) -"wrS" = ( -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 4; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/obj/effect/floor_decal/spline/plain/black, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/specops) -"wrY" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass, -/area/centcom/shared_dream) -"wsd" = ( -/obj/structure/table/rack, -/obj/item/clothing/accessory/storage/white_vest{ - pixel_y = -5 - }, -/obj/item/clothing/accessory/storage/white_vest{ - pixel_y = -5 - }, -/obj/item/clothing/accessory/storage/white_vest{ - pixel_y = -5 - }, -/obj/item/clothing/glasses/hud/health{ - pixel_y = 8 - }, -/obj/item/clothing/glasses/hud/health{ - pixel_y = 8 - }, -/obj/item/clothing/glasses/hud/health{ - pixel_y = 8 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"wsA" = ( -/obj/machinery/iv_drip, -/obj/effect/floor_decal/industrial/outline/red, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"wsX" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/large_stock_marker, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"wtq" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/machinery/door/blast/odin/shuttle/tcfl/shutter{ - dir = 8; - id = "tcfl_hangar5"; - name = "Armory" - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"wtO" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/recharger/wallcharger{ - pixel_x = 31 - }, -/turf/unsimulated/floor, -/area/centcom/ferry) -"wtW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"wuB" = ( -/obj/structure/table/rack, -/obj/item/clothing/head/helmet/legion{ - pixel_x = -4 - }, -/obj/item/clothing/head/helmet/legion{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/clothing/head/helmet/legion{ - pixel_y = -4 - }, -/obj/item/clothing/head/helmet/legion{ - pixel_y = -4 - }, -/obj/item/clothing/head/helmet/legion{ - pixel_y = -4 - }, -/obj/item/clothing/head/helmet/legion{ - pixel_y = -4 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"wvh" = ( -/turf/simulated/wall/shuttle/unique/distress{ - icon_state = "10,3" - }, -/area/shuttle/distress) -"wvC" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "8,0" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"wvL" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled{ - start_pressure = 15000 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"wvP" = ( -/obj/item/paper_bin{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/pen/multi{ - pixel_x = 7; - pixel_y = -1 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = 7; - pixel_y = 16 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = 1; - pixel_y = 16 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = -5; - pixel_y = 16 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = 7; - pixel_y = 16 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = 1; - pixel_y = 16 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = -5; - pixel_y = 16 - }, -/obj/structure/table/standard, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/ninja) -"wwm" = ( -/obj/structure/table/rack, -/obj/item/pickaxe/diamonddrill{ - pixel_y = 7 - }, -/obj/item/pickaxe/diamonddrill{ - pixel_y = -3 - }, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"wwD" = ( -/obj/item/gun/energy/blaster{ - pixel_y = 6 - }, -/obj/item/gun/energy/blaster{ - pixel_y = -2 - }, -/obj/item/gun/energy/blaster{ - pixel_y = -10 - }, -/obj/structure/table/reinforced, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"wwV" = ( -/obj/machinery/papershredder, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"wxG" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "1,4"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"wxL" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/binary/passive_gate{ - name = "shuttle airlock pressure regulator"; - target_pressure = 200; - unlocked = 1 - }, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"wxU" = ( -/obj/structure/window/shuttle/unique/mercenary/small{ - icon_state = "2,12"; - outside_window = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"wyM" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/machinery/door/blast/odin/shuttle/tcfl/shutter{ - dir = 4; - id = "tcfl_hangar5"; - name = "Armory" - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"wyR" = ( -/obj/machinery/vending/snack{ - name = "Free Chocolate Corp"; - prices = list() - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"wzv" = ( -/obj/structure/table/rack{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/item/towel{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/towel{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/machinery/light{ - brightness_power = 0.5; - brightness_range = 3; - dir = 8; - name = "adjusted light fixture"; - pixel_y = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/centcom/distress_prep) -"wzE" = ( -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/evac) -"wAo" = ( -/obj/machinery/door/airlock/silver{ - name = "Washroom" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"wAA" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "0,11" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"wAU" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "mercworkshop"; - name = "shutter" - }, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"wBG" = ( -/obj/effect/floor_decal/corner/grey{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"wBQ" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "2,4"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"wBW" = ( -/obj/structure/bed/stool/chair/padded/blue{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/holding) -"wCa" = ( -/obj/structure/table/reinforced/steel, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/snacks/liquidfood{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/snacks/liquidfood{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/snacks/liquidfood{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/snacks/liquidfood{ - pixel_x = -5; - pixel_y = 6 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/burglar) -"wCf" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "10,0" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/specops) -"wCg" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"wCm" = ( -/obj/machinery/door/airlock/glass_centcom{ - icon = 'icons/obj/doors/Doorglass.dmi'; - name = "To: Upper Shuttle Terminal"; - req_access = null; - req_one_access = list(108,109); - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"wCv" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "3,4"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"wCy" = ( -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/spawning) -"wCA" = ( -/obj/machinery/porta_turret/crescent, -/obj/effect/decal/warning_stripes, -/turf/unsimulated/floor, -/area/centcom/control) -"wCB" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/vending/cigarette/hacked, -/turf/unsimulated/floor, -/area/antag/mercenary) -"wCK" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "4,4"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"wDV" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "1,11" - }, -/area/shuttle/mercenary) -"wEr" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "15,9" - }, -/area/shuttle/mercenary) -"wEG" = ( -/obj/structure/table/rack, -/obj/item/clothing/under/color/red, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/clothing/suit/armor/vest, -/obj/item/clothing/head/helmet/swat, -/obj/item/gun/energy/laser, -/turf/simulated/floor, -/area/tdome/tdome2) -"wEI" = ( -/obj/structure/window/shuttle/unique/ccia{ - icon_state = "1,1" - }, -/turf/simulated/floor/plating, -/area/shuttle/transport1) -"wEM" = ( -/obj/structure/window/shuttle/unique/transfer{ - icon_state = "8,22"; - outside_window = 1 - }, -/turf/simulated/floor/plating, -/area/shuttle/escape) -"wFc" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/suit_cycler/syndicate{ - locked = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"wFx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"wGs" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/merc, -/obj/item/clothing/head/helmet/space/void/merc, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"wGA" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/acting/changer{ - pixel_x = 3; - pixel_y = -1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"wGD" = ( -/obj/structure/table/standard, -/turf/unsimulated/floor, -/area/centcom/legion) -"wGN" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "12,18"; - name = "transport shuttle"; - outside_part = 0 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"wGT" = ( -/obj/effect/landmark/thunderdome1, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/effect/decal/fake_object/light_source/invisible, -/turf/simulated/floor/holofloor/tiled/dark, -/area/tdome/tdome1) -"wGY" = ( -/obj/machinery/cryopod{ - dir = 2 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"wHi" = ( -/turf/simulated/wall/shuttle/unique/distress{ - icon_state = "2,4" - }, -/area/shuttle/distress) -"wHk" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"wHm" = ( -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "merc_armory"; - name = "armory access"; - pixel_x = -23; - pixel_y = -8; - req_access = list(150) - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"wHx" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor/plating, -/area/centcom/distress_prep) -"wHR" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue, -/turf/unsimulated/floor, -/area/centcom/holding) -"wIl" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"wIB" = ( -/obj/machinery/mech_recharger, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"wIL" = ( -/obj/structure/table/standard, -/obj/item/trash/plate, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt, -/obj/item/storage/box/fancy/matches{ - pixel_y = 12 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"wJx" = ( -/obj/structure/shuttle/engine/heater{ - icon_state = "router" - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/distress_prep) -"wJK" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/centcom/shared_dream) -"wJN" = ( -/obj/structure/bed/stool/chair/shuttle, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/specops) -"wJT" = ( -/turf/simulated/wall/shuttle/unique/ccia{ - icon_state = "10,1" - }, -/area/shuttle/transport1) -"wJY" = ( -/obj/structure/shuttle_part/ccia{ - icon_state = "6,0"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/transport1) -"wKb" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 1 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/holding) -"wKm" = ( -/obj/structure/window/shuttle/unique/mercenary/small{ - icon_state = "2,13"; - outside_window = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"wKo" = ( -/obj/structure/table/standard, -/obj/item/trash/liquidfood, -/turf/unsimulated/floor, -/area/centcom/legion) -"wKL" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/food/drinks/bottle{ - icon_state = "beer"; - pixel_x = -21; - pixel_y = 12 - }, -/obj/item/pizzabox{ - icon_state = "pizzabox_messy"; - ismessy = 1; - open = 1; - pixel_y = 10 - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"wKU" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/turf/unsimulated/floor{ - icon_state = "panelscorched" - }, -/area/antag/raider) -"wLg" = ( -/obj/structure/shuttle_part/burglar{ - icon_state = "7,4"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/burglar) -"wLF" = ( -/obj/structure/shuttle_part/distress{ - icon_state = "10,4"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/distress) -"wMn" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/glass/bottle/bicaridine{ - pixel_x = -7; - pixel_y = 12 - }, -/obj/item/reagent_containers/hypospray, -/obj/item/reagent_containers/glass/bottle/inaprovaline{ - pixel_x = 4; - pixel_y = 15 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"wMw" = ( -/obj/item/storage/firstaid/trauma, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/toxin, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/storage/firstaid/regular, -/obj/structure/closet/walllocker/medical{ - pixel_x = 31; - pixel_y = 32 - }, -/obj/item/reagent_containers/blood/OMinus, -/turf/simulated/floor/shuttle/white, -/area/shuttle/escape) -"wNv" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/ferry) -"wNC" = ( -/obj/machinery/light/spot, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"wNE" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/bed/stool/chair/padded/beige{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"wNL" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"wOb" = ( -/obj/machinery/optable, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"wOf" = ( -/turf/unsimulated/wall/fakeairlock{ - icon = 'icons/obj/doors/Doorext.dmi'; - icon_state = "door_locked"; - name = "service airlock" - }, -/area/centcom/specops) -"wOm" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "3,0" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"wOo" = ( -/obj/item/storage/box/cdeathalarm_kit{ - pixel_x = -3; - pixel_y = 12 - }, -/obj/item/device/megaphone/red{ - pixel_y = -4 - }, -/obj/structure/table/standard, -/obj/structure/sign/flag/biesel{ - pixel_x = -32; - pixel_y = 32 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion/hangar5) -"wOT" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/turretid{ - check_arrest = 0; - check_records = 0; - check_wildlife = 0; - pixel_x = 29; - pixel_y = -6; - req_access = list(150) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"wOY" = ( -/obj/machinery/vending/snack{ - name = "Free Chocolate Corp"; - prices = list() - }, -/turf/unsimulated/floor, -/area/centcom/control) -"wQg" = ( -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/sign/double/map/right{ - desc = "A detailed image of a Nanotrasen facility."; - name = "operation map"; - pixel_y = 31 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"wRy" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/random/pottedplant{ - anchored = 1; - pixel_y = 5 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"wRB" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "distress_origin_airlock"; - locked = 1; - name = "Barracks"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"wSa" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"wSA" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_dininghall) -"wTs" = ( -/obj/machinery/door/blast/regular{ - id = "thunderdome"; - name = "Thunderdome Blast Door" - }, -/turf/simulated/floor, -/area/tdome/tdome2) -"wTE" = ( -/obj/effect/floor_decal/spline/plain/black, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"wTI" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/shuttle/tan, -/area/shuttle/arrival) -"wTM" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/unsimulated/floor, -/area/centcom/control) -"wTQ" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass, -/area/centcom/holding) -"wUa" = ( -/obj/structure/window/shuttle/unique/transfer{ - icon_state = "9,22"; - outside_window = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"wUc" = ( -/obj/effect/decal/fake_object{ - desc = "An automated turret."; - icon = 'icons/obj/turrets.dmi'; - icon_state = "cover_1"; - name = "turret" - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) -"wUe" = ( -/turf/simulated/wall/shuttle/unique/cargo{ - icon_state = "5,10" - }, -/area/supply/dock) -"wUv" = ( -/obj/structure/shuttle_part/arrivals{ - desc = "A state-of-the-art unmanned automatic crew transport shuttle."; - icon_state = "13,5"; - name = "autoshuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/arrival) -"wUz" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/closet/secure_closet/hos, -/obj/item/storage/backpack/satchel, -/obj/item/storage/belt/utility/very_full, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"wUU" = ( -/obj/structure/lattice/catwalk/indoor, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"wVd" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"wVg" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "6,9" - }, -/area/shuttle/mercenary) -"wVv" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/machinery/porta_turret/ballistic{ - cover_set = 1; - health = 120; - icon_state = "cover_1"; - maxhealth = 120 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"wVJ" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "16,4" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"wVZ" = ( -/turf/simulated/wall/shuttle/unique/ert{ - icon_state = "0,2" - }, -/area/centcom/specops) -"wWK" = ( -/obj/structure/table/rack, -/obj/item/storage/belt/medical/paramedic/combat/full{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/storage/belt/medical/paramedic/combat/full, -/obj/item/storage/belt/medical/paramedic/combat/full{ - pixel_x = -4; - pixel_y = 5 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"wWZ" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/storage/firstaid/regular, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"wXH" = ( -/obj/effect/floor_decal/corner/paleblue/full, -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/obj/random/pottedplant, -/turf/unsimulated/floor, -/area/centcom/holding) -"wXJ" = ( -/obj/effect/shuttle_landmark/merc/start, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"wXM" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/structure/table/rack, -/obj/item/roller{ - pixel_x = -1; - pixel_y = 14 - }, -/obj/item/roller{ - pixel_x = -1; - pixel_y = 14 - }, -/obj/item/roller{ - pixel_x = -1; - pixel_y = 14 - }, -/obj/item/roller{ - pixel_x = -1; - pixel_y = 14 - }, -/obj/item/deployable_kit/surgery_table{ - name = "field surgery table assembly kit"; - pixel_x = -1 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"wYn" = ( -/obj/item/ammo_magazine/mc9mmt{ - pixel_x = 1; - pixel_y = 20 - }, -/obj/item/ammo_magazine/mc9mmt{ - pixel_x = 1; - pixel_y = 20 - }, -/obj/item/ammo_magazine/mc9mmt{ - pixel_x = 1; - pixel_y = 20 - }, -/obj/item/ammo_magazine/mc9mmt{ - pixel_x = 1; - pixel_y = 20 - }, -/obj/item/ammo_magazine/mc9mmt{ - pixel_x = 1; - pixel_y = 20 - }, -/obj/item/ammo_magazine/mc9mmt{ - pixel_x = 1; - pixel_y = 20 - }, -/obj/item/ammo_magazine/mc9mmt{ - pixel_x = 1; - pixel_y = 20 - }, -/obj/item/ammo_magazine/mc9mmt{ - pixel_x = 1; - pixel_y = 20 - }, -/obj/item/ammo_magazine/mc9mmt/rubber{ - pixel_x = 1; - pixel_y = 14 - }, -/obj/item/ammo_magazine/mc9mmt/rubber{ - pixel_x = 1; - pixel_y = 14 - }, -/obj/item/ammo_magazine/mc9mmt/rubber{ - pixel_x = 1; - pixel_y = 14 - }, -/obj/item/ammo_magazine/mc9mmt/rubber{ - pixel_x = 1; - pixel_y = 14 - }, -/obj/item/gun/projectile/automatic/x9{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/gun/projectile/automatic/x9{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/gun/projectile/automatic/x9{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/ammo_magazine/c45m/auto{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/ammo_magazine/c45m/auto{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/ammo_magazine/c45m/auto{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/ammo_magazine/c45m/auto{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/ammo_magazine/c45m/auto{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/ammo_magazine/c45m/auto{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/table/reinforced/steel, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"wYp" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/mercenary) -"wYu" = ( -/turf/simulated/floor/shuttle/black, -/area/centcom/specops) -"wYz" = ( -/turf/simulated/wall/shuttle/unique/ert{ - icon_state = "7,4" - }, -/area/centcom/specops) -"wYN" = ( -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/control) -"wZg" = ( -/obj/machinery/porta_turret/crescent, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/railing/mapped{ - name = "adjusted railing" - }, -/obj/structure/lattice/catwalk/indoor, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/checkpoint/fore) -"wZy" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/machinery/door/blast/odin/shuttle/tcfl/shutter{ - dir = 8; - id = "tcfl_hangar5"; - name = "Armory" - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"wZB" = ( -/obj/structure/sign/staff_only, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/control) -"wZJ" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/storage/vest/legion{ - pixel_x = -4 - }, -/obj/item/clothing/suit/storage/vest/legion{ - pixel_x = -4 - }, -/obj/item/clothing/suit/storage/vest/legion{ - pixel_x = -4 - }, -/obj/item/clothing/suit/storage/vest/legion{ - pixel_y = -4 - }, -/obj/item/clothing/suit/storage/vest/legion{ - pixel_y = -4 - }, -/obj/item/clothing/suit/storage/vest/legion{ - pixel_y = -4 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"xaL" = ( -/obj/effect/landmark{ - name = "LateJoinConsular Officer" - }, -/obj/structure/bed/stool/chair/padded/blue{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/ferry) -"xbK" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "0,0"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"xbU" = ( -/obj/structure/table/reinforced, -/obj/item/gun/energy/blaster/carbine{ - pixel_y = 10 - }, -/obj/item/gun/energy/blaster/carbine{ - pixel_y = 10 - }, -/obj/item/gun/energy/blaster/carbine{ - pixel_y = 2 - }, -/obj/item/gun/energy/blaster/carbine{ - pixel_y = 2 - }, -/obj/item/gun/energy/blaster/carbine{ - pixel_y = -6 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"xcr" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/machinery/door/blast/odin/shuttle/tcfl/shutter{ - dir = 4; - id = "tcfl_hangar5"; - name = "Armory" - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"xdm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"xdo" = ( -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/structure/flora/ausbushes/grassybush{ - pixel_y = -3 - }, -/turf/simulated/floor/grass, -/area/centcom/holding) -"xeH" = ( -/obj/structure/table/reinforced/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"xeU" = ( -/turf/simulated/wall/shuttle/unique/ert{ - icon_state = "8,4" - }, -/area/centcom/specops) -"xfN" = ( -/obj/structure/sign/flag/nanotrasen/unmovable, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"xfS" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 - }, -/obj/effect/ghostspawpoint{ - identifier = "TCFLERTSpawn"; - name = "igs - TCFLERT" - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"xga" = ( -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"xgg" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 1 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"xgL" = ( -/obj/structure/table/standard, -/obj/item/storage/toolbox/electrical, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"xgO" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/merchant_station) -"xgQ" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/donut, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"xhC" = ( -/obj/structure/bed/stool/padded/red{ - pixel_y = 10 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/bar) -"xhF" = ( -/obj/structure/punching_bag, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"xia" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"xii" = ( -/obj/machinery/door/airlock/silver{ - id_tag = "tower_stall_1"; - name = "Washroom" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"xij" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"xjp" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/closet/secure_closet{ - req_access = list(150) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/syndicate_elite) -"xjr" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "13,19"; - name = "transport shuttle"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"xjB" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - id_tag = "merc_shuttle_inner"; - name = "Ship External Access"; - req_access = list(0); - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/button/remote/blast_door{ - id = "smindicate2"; - name = "internal blast door"; - pixel_y = 23; - req_access = list(150) - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "smindicate2"; - name = "Inner Airlock"; - opacity = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"xjJ" = ( -/obj/structure/table/rack, -/obj/item/gun/energy/rifle, -/obj/item/gun/energy/rifle, -/obj/item/gun/energy/rifle, -/obj/item/gun/energy/rifle, -/obj/effect/floor_decal/corner/blue/full{ - dir = 1 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = 19 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = 29 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"xjK" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"xjS" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1337; - id_tag = "merc_shuttle_pump" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"xkq" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "1,0"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"xkw" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"xkH" = ( -/obj/item/modular_computer/console/preset/security, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"xkI" = ( -/obj/structure/table/stone/marble, -/obj/item/reagent_containers/food/snacks/salad/tossedsalad{ - pixel_x = 18; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/snacks/salad/tossedsalad{ - pixel_x = 16; - pixel_y = 3 - }, -/obj/item/material/kitchen/utensil/fork/plastic{ - pixel_x = -16; - pixel_y = 4 - }, -/obj/item/material/kitchen/utensil/fork/plastic{ - pixel_x = -16; - pixel_y = 4 - }, -/obj/item/material/kitchen/utensil/fork/plastic{ - pixel_x = -16; - pixel_y = 4 - }, -/obj/item/material/kitchen/utensil/fork/plastic{ - pixel_x = -16; - pixel_y = 4 - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"xmf" = ( -/turf/simulated/wall/shuttle/dark/corner/underlay{ - dir = 6 - }, -/area/centcom/legion/hangar5) -"xmu" = ( -/obj/machinery/light{ - name = "adjusted light fixture"; - pixel_x = 16; - icon_state = "tube_empty" - }, -/obj/structure/table/rack{ - pixel_y = -3 - }, -/obj/item/rig_module/cooling_unit, -/obj/item/rig_module/cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/distress_prep) -"xmy" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"xmD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/machinery/airlock_sensor{ - frequency = 1337; - id_tag = "merc_shuttle_sensor"; - pixel_x = 8; - pixel_y = 25 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"xnZ" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/item/reagent_containers/hypospray, -/obj/structure/table/standard, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/holding) -"xoL" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/railing/mapped{ - name = "adjusted railing" - }, -/obj/machinery/porta_turret/crescent, -/obj/effect/floor_decal/industrial/warning/full, -/turf/unsimulated/floor, -/area/centcom/control) -"xps" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"xqg" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "0,5" - }, -/obj/structure/shuttle_part/mercenary/small{ - density = 0; - icon_state = "0,6"; - pixel_y = 32 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"xqm" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1337; - id_tag = "merc_shuttle_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1337; - id_tag = "merc_shuttle"; - pixel_x = -8; - pixel_y = 25; - req_access = list(150) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"xrF" = ( -/obj/machinery/computer/operating, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"xrK" = ( -/turf/simulated/wall/shuttle/unique/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "1,5"; - name = "transport shuttle" - }, -/area/shuttle/escape) -"xrS" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/machinery/computer/cryopod{ - pixel_y = 27 - }, -/turf/simulated/floor/carpet/cyan, -/area/centcom/ferry) -"xsL" = ( -/obj/machinery/iv_drip, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"xsV" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/blood/OMinus{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/item/reagent_containers/blood/OMinus{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/item/reagent_containers/blood/OMinus{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/item/reagent_containers/blood/OMinus{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/legion) -"xtA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/reinforced, -/obj/machinery/door/window/westright, -/obj/item/device/hand_labeler, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "tiled_preview" - }, -/area/antag/raider) -"xub" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "14,1" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"xun" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "11,0"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"xup" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"xuv" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - id_tag = "merc_shuttle_outer"; - name = "Ship External Access"; - req_access = list(150); - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "smindicate"; - name = "Outer Airlock"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/button/remote/blast_door{ - id = "smindicate"; - name = "external blast door"; - pixel_y = 23; - req_access = list(150) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"xux" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - id_tag = "merc_base_hatch"; - req_access = list(150); - dir = 4 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"xuH" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = -27 - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-04" - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion/hangar5) -"xuV" = ( -/obj/structure/table/rack, -/obj/item/melee/energy/sword/knife{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/material/knife/bayonet{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/shield/energy/legion{ - pixel_x = 3; - pixel_y = -2 - }, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion/hangar5) -"xvs" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/hypospray{ - pixel_x = -8 - }, -/obj/item/reagent_containers/hypospray{ - pixel_x = -2 - }, -/obj/item/reagent_containers/hypospray{ - pixel_x = 4 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"xvu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/loot{ - desc = "The old dusty labels on this crate indicate that it was supposed to be shipped long ago."; - name = "forgotten shipment" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"xvz" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"xvM" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/adv{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/storage/firstaid/adv{ - pixel_y = 9 - }, -/obj/item/storage/firstaid/surgery{ - pixel_x = 3; - pixel_y = -4 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"xwi" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "1,0"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"xwr" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_dininghall) -"xws" = ( -/obj/structure/table/rack, -/obj/item/clothing/accessory/storage/black_vest{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/clothing/accessory/storage/black_vest{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/clothing/accessory/storage/black_vest{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/clothing/mask/gas/tactical{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/clothing/mask/gas/tactical{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/clothing/mask/gas/tactical{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/clothing/mask/gas/tactical{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/clothing/mask/gas/tactical{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/clothing/mask/gas/tactical{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/clothing/mask/gas/half{ - pixel_x = -7; - pixel_y = -4 - }, -/obj/item/clothing/mask/gas/half{ - pixel_x = -7; - pixel_y = -4 - }, -/obj/item/clothing/mask/gas/half{ - pixel_x = -7; - pixel_y = -4 - }, -/obj/item/clothing/mask/gas/half{ - pixel_x = -7; - pixel_y = -4 - }, -/obj/item/clothing/mask/gas/half{ - pixel_x = -7; - pixel_y = -4 - }, -/obj/item/clothing/mask/gas/half{ - pixel_x = -7; - pixel_y = -4 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"xwI" = ( -/turf/simulated/wall, -/area/merchant_station) -"xwM" = ( -/obj/structure/table/reinforced, -/obj/item/gun/energy/blaster/rifle{ - pixel_y = 15 - }, -/obj/item/gun/energy/blaster/rifle{ - pixel_y = 7 - }, -/obj/item/gun/energy/blaster/rifle{ - pixel_y = -1 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"xxe" = ( -/obj/structure/table/standard, -/obj/item/aicard{ - pixel_y = 8 - }, -/obj/item/clothing/gloves/yellow/specialu{ - pixel_y = -14 - }, -/obj/item/clothing/gloves/yellow/specialt{ - pixel_y = -14 - }, -/obj/item/clothing/gloves/yellow{ - pixel_y = -14 - }, -/obj/item/clothing/gloves/yellow{ - pixel_y = -14 - }, -/obj/item/clothing/gloves/yellow{ - pixel_y = -14 - }, -/obj/item/clothing/gloves/yellow{ - pixel_y = -14 - }, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/item/clothing/glasses/welding/superior, -/obj/item/weldingtool/largetank{ - pixel_y = -12 - }, -/obj/item/device/radio/intercom/west{ - frequency = 1213; - name = "Intercom"; - subspace_transmission = 1; - syndie = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"xxo" = ( -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen{ - pixel_x = 1; - pixel_y = 10 - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"xxz" = ( -/obj/structure/bed/stool/chair/padded/brown, -/obj/effect/ghostspawpoint{ - identifier = "TCFLERTSpawn"; - name = "igs - TCFLERT" - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"xyf" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"xyu" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "9,4"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"xyx" = ( -/obj/machinery/door/airlock/centcom{ - name = "Arrival Hangar Maintenance"; - req_access = list(106) - }, -/turf/unsimulated/floor/plating, -/area/centcom/holding) -"xyB" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "5,0" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"xyH" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/obj/structure/sign/pods{ - desc = "A direction sign which reads 'DROPPODS'."; - name = "\improper DROPPODS" - }, -/turf/unsimulated/floor/plating, -/area/antag/loner) -"xzb" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/turf/unsimulated/floor{ - dir = 4; - icon_state = "ramptop" - }, -/area/antag/mercenary) -"xzd" = ( -/obj/structure/weightlifter, -/obj/structure/sign/poster{ - icon_state = "tcflposter2"; - pixel_x = 29; - poster_type = "/datum/poster/bay_68" - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"xzg" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"xzh" = ( -/obj/machinery/door/blast/odin{ - id = "merc_armory"; - name = "Armory Access" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor, -/area/antag/mercenary) -"xzI" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"xAW" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/adv{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 6 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = -13 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/item/storage/firstaid/adv{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = -13 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 6 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"xBm" = ( -/obj/machinery/pipedispenser/disposal/orderable{ - pixel_y = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"xCb" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"xDD" = ( -/turf/simulated/floor/shuttle/black, -/area/shuttle/mercenary) -"xDI" = ( -/obj/structure/shuttle_part/tcfl{ - icon_state = "16,6" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/legion) -"xEl" = ( -/obj/effect/ghostspawpoint{ - identifier = "TCFLERTSpawn - Pilot"; - name = "igs - TCFLERT - Pilot" - }, -/obj/machinery/button/remote/airlock{ - id = "tower_stall_1"; - name = "Door Bolt Control"; - pixel_x = -23; - pixel_y = -22; - specialfunctions = 4 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"xEw" = ( -/obj/random/pottedplant, -/turf/unsimulated/floor, -/area/centcom/legion) -"xFd" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "0,1"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"xFj" = ( -/turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" - }, -/area/antag/burglar) -"xFq" = ( -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"xFN" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "10,0" - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"xFQ" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/clothing/accessory/storage/brown_vest{ - pixel_y = -5 - }, -/obj/item/clothing/accessory/storage/brown_vest{ - pixel_y = -5 - }, -/obj/item/clothing/accessory/storage/brown_vest{ - pixel_y = -5 - }, -/obj/item/clothing/glasses/meson{ - pixel_y = 7 - }, -/obj/item/clothing/glasses/meson{ - pixel_y = 7 - }, -/obj/item/clothing/glasses/meson{ - pixel_y = 7 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) -"xFU" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/light, -/obj/structure/window/reinforced, -/turf/simulated/floor/shuttle/black, -/area/shuttle/escape) -"xFV" = ( -/obj/structure/bed/stool/padded/red, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/legion) -"xGb" = ( -/obj/structure/shuttle_part/transfer{ - desc = "A large, bloated shuttle designed for automated passenger transport."; - icon_state = "5,0"; - name = "transport shuttle" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/escape) -"xGe" = ( -/turf/simulated/wall/shuttle/unique/distress{ - icon_state = "2,3" - }, -/area/shuttle/distress) -"xGD" = ( -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/black, -/obj/structure/bed/roller, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"xGF" = ( -/obj/item/trash/tastybread, -/obj/item/trash/koisbar, -/obj/item/trash/chipbasket, -/obj/structure/closet/crate/trashcart, -/obj/item/trash/tray, -/turf/unsimulated/floor, -/area/centcom/legion) -"xGP" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "0,10" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"xGX" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "1,8" - }, -/area/shuttle/mercenary) -"xHb" = ( -/turf/simulated/wall/shuttle/unique/mercenary{ - icon_state = "10,2" - }, -/area/shuttle/mercenary) -"xHe" = ( -/obj/structure/shuttle_part/mercenary/small{ - icon_state = "6,0" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/syndicate_elite) -"xHT" = ( -/obj/machinery/light/small/emergency{ - dir = 4; - name = "adjusted light fixture"; - pixel_x = 32; - pixel_y = -64 - }, -/turf/unsimulated/floor/plating, -/area/centcom/distress_prep) -"xIi" = ( -/obj/structure/table/rack, -/obj/item/storage/box/flashbangs{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/gun/energy/blaster/revolver, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion/hangar5) -"xIt" = ( -/turf/unsimulated/floor{ - dir = 4; - icon_state = "ramptop" - }, -/area/centcom/holding) -"xIw" = ( -/obj/machinery/chem_master{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"xJF" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/item/plastique, -/obj/item/plastique, -/obj/item/plastique, -/obj/item/plastique, -/obj/structure/closet/crate/drop, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"xJL" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"xKx" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"xKM" = ( -/obj/machinery/light/small{ - brightness_power = 0.5; - dir = 1; - name = "adjusted light fixture" - }, -/turf/unsimulated/floor/plating, -/area/centcom/spawning) -"xKP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 4; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - icon = 'icons/obj/railing.dmi'; - icon_state = "railing0-1"; - name = "railing" - }, -/obj/structure/dispenser/oxygen, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"xLd" = ( -/turf/simulated/wall/shuttle/unique/mercenary/small{ - icon_state = "2,2" - }, -/area/shuttle/syndicate_elite) -"xLr" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) -"xLv" = ( -/turf/unsimulated/mineral/asteroid{ - name = "asteroid"; - opacity = 0 - }, -/area/centcom/shared_dream) -"xMf" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/specops) -"xMn" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/fire{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 6 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = -3; - pixel_y = -1 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"xMv" = ( -/obj/effect/decal/fake_object{ - icon = 'icons/obj/doors/rapid_pdoor.dmi'; - icon_state = "shutter0"; - name = "shutter" - }, -/obj/item/flame/lighter/zippo, -/obj/structure/table/reinforced, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/antag/raider) -"xMD" = ( -/obj/structure/shuttle_part/cargo{ - icon_state = "2,11"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/supply/dock) -"xNd" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/odin{ - dir = 4; - id = "merc_hangar"; - name = "Hangar Access" - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"xNv" = ( -/obj/machinery/door/airlock/hatch{ - name = "Workshop"; - req_access = list(150); - dir = 4 - }, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"xNH" = ( -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/rig_module/cooling_unit, -/obj/item/rig_module/cooling_unit, -/obj/structure/table/standard, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/ninja) -"xOs" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "CCIAReadyRoom"; - name = "Ready Room"; - pixel_x = -23; - pixel_y = 7; - req_access = list(103) - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"xOP" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "4,0"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/specops) -"xQs" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/obj/structure/sign/directions/com{ - dir = 8; - pixel_y = 5 - }, -/turf/unsimulated/floor{ - icon_state = "plating" - }, -/area/centcom/control) -"xRj" = ( -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/body_scanconsole{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"xRm" = ( -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "escapeshuttle_leave"; - teleport_x = 25; - teleport_x_offset = 245; - teleport_y = 25; - teleport_y_offset = 245; - teleport_z = 6; - teleport_z_offset = 6 - }, -/turf/unsimulated/mineral/asteroid, -/area/template_noop) -"xRr" = ( -/turf/unsimulated/floor{ - dir = 10; - icon = 'icons/turf/shuttle.dmi'; - icon_state = "advanced_plating_alt" - }, -/area/antag/ninja) -"xRH" = ( -/obj/structure/table/rack, -/obj/item/tank/emergency_oxygen/double{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/tank/emergency_oxygen/double{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/tank/emergency_oxygen/double{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/tank/emergency_oxygen/double{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/tank/emergency_oxygen/double{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/tank/emergency_oxygen/double{ - pixel_x = -1; - pixel_y = 4 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"xSh" = ( -/turf/simulated/floor/holofloor/space{ - blocks_air = 1; - density = 1; - dynamic_lighting = 1; - icon_state = "black" - }, -/area/centcom/shared_dream) -"xSi" = ( -/turf/unsimulated/floor, -/area/antag/burglar) -"xSv" = ( -/obj/structure/lattice, -/turf/space/dynamic, -/area/template_noop) -"xSL" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape) -"xTt" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - id_tag = "merc_shuttle_inner"; - name = "Ship External Access"; - req_access = list(0); - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1337; - master_tag = "merc_shuttle"; - name = "interior access button"; - pixel_x = -1; - pixel_y = -20; - req_access = list(150) - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "smindicate2"; - name = "Inner Airlock"; - opacity = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"xTG" = ( -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/bar) -"xTK" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/decal/fake_object{ - color = "#545c68"; - dir = 1; - icon = 'icons/obj/railing.dmi'; - icon_state = "mcorneroverlay1"; - name = "railing" - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"xTR" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"xUR" = ( -/turf/simulated/wall/shuttle/unique/burglar{ - icon_state = "10,4" - }, -/area/shuttle/burglar) -"xUV" = ( -/obj/structure/table/rack, -/obj/item/rig/retro/equipped, -/obj/item/clothing/accessory/legion, -/turf/unsimulated/floor{ - icon_state = "wood_preview" - }, -/area/centcom/legion/hangar5) -"xVb" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "10,4" - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"xVd" = ( -/obj/structure/table/reinforced, -/obj/item/gun/projectile/gauss{ - pixel_y = 16 - }, -/obj/item/gun/projectile/gauss{ - pixel_y = 8 - }, -/obj/item/gun/projectile/gauss, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"xVe" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"xVl" = ( -/turf/unsimulated/wall/steel, -/area/antag/mercenary) -"xVm" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "16,5" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"xVE" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1337; - id_tag = "merc_shuttle_pump" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"xWe" = ( -/turf/simulated/wall/shuttle/unique/distress{ - icon_state = "3,0" - }, -/area/shuttle/distress) -"xXf" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/structure/bed/stool/chair/folding, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"xXr" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - id_tag = "merc_shuttle_outer"; - name = "Ship External Access"; - req_access = list(150); - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "smindicate"; - name = "Outer Airlock"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1337; - master_tag = "merc_shuttle"; - name = "exterior access button"; - pixel_x = 1; - pixel_y = -20; - req_access = list(150) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"xXB" = ( -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "odin_valkyrie_stall1"; - name = "Door Bolt Control"; - pixel_x = -22; - pixel_y = -9; - specialfunctions = 4 - }, -/obj/structure/toilet{ - pixel_x = -8; - pixel_y = 11 - }, -/obj/structure/sink/kitchen{ - dir = 8; - name = "sink"; - pixel_x = 23 - }, -/obj/machinery/light/small{ - dir = 1; - name = "adjusted light fixture"; - pixel_x = 9 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"xXE" = ( -/obj/item/gun/energy/gun/nuclear{ - pixel_y = -15 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/item/storage/box/fancy/cigarettes/cigar{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/flame/lighter/zippo/gold{ - pixel_x = 5; - pixel_y = 22 - }, -/obj/structure/table/wood, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"xXQ" = ( -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/black, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"xXZ" = ( -/turf/simulated/wall/shuttle/unique/ccia{ - icon_state = "10,4" - }, -/area/shuttle/transport1) -"xYn" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "burglar_hangar"; - name = "external hangar access"; - pixel_x = 23; - pixel_y = 8; - req_access = list(150) - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"xYs" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "10,1"; - opacity = 1 - }, -/turf/unsimulated/floor/plating, -/area/shuttle/specops) -"xYt" = ( -/obj/structure/sign/directions/cryo{ - dir = 8; - pixel_y = 8 - }, -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/holding) -"xZo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/fake_object{ - density = 1; - desc = "This microwave has been through a lot of abuse."; - icon = 'icons/obj/kitchen.dmi'; - icon_state = "mwb"; - name = "Trashed microwave"; - pixel_y = 3 - }, -/turf/unsimulated/floor{ - icon_state = "wood-broken2" - }, -/area/centcom/legion/hangar5) -"xZK" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - id_tag = "merc_base_hatch"; - req_access = list(150); - dir = 4 - }, -/obj/structure/window/reinforced/crescent{ - dir = 1; - pixel_y = -32 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"yao" = ( -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/checkpoint/aft) -"yaV" = ( -/obj/effect/floor_decal/spline/plain/black, -/obj/effect/floor_decal/spline/plain/black{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/closet/crate/drop/grey, -/turf/unsimulated/floor, -/area/antag/mercenary) -"ybm" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 1 - }, -/obj/structure/window/reinforced{ - name = "adjusted window" - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/unsimulated/floor{ - icon_state = "carpet" - }, -/area/centcom/bar) -"ybY" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/unsimulated/floor, -/area/antag/mercenary) -"ybZ" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/antag/mercenary) -"ycc" = ( -/obj/machinery/door/airlock/medical{ - name = "Infirmary"; - req_access = list(150); - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"ycB" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/unsimulated/floor, -/area/antag/mercenary) -"ydO" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8; - name = "adjusted light fixture"; - pixel_y = 10 - }, -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "odin_arrivals_stall1"; - name = "Door Bolt Control"; - pixel_x = -22; - pixel_y = 1; - specialfunctions = 4 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"ydQ" = ( -/obj/effect/floor_decal/corner/green{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"yex" = ( -/obj/structure/shuttle_part/mercenary{ - icon_state = "5,20" - }, -/turf/space/dynamic, -/area/shuttle/mercenary) -"yeB" = ( -/obj/structure/bed/stool/chair/office/hover{ - can_buckle = 0; - dir = 8 - }, -/turf/simulated/floor/grass, -/area/centcom/shared_dream) -"yfl" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"yfr" = ( -/obj/structure/window/reinforced/crescent, -/obj/item/material/shard, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"yfH" = ( -/turf/simulated/wall/shuttle/unique/cargo{ - icon_state = "0,8" - }, -/area/supply/dock) -"yfZ" = ( -/obj/structure/table/reinforced/wood, -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/machinery/door/blast/odin{ - dir = 2; - icon_state = "shutter1"; - icon_state_closed = "shutter1"; - icon_state_closing = "shutterc1"; - icon_state_open = "shutter0"; - icon_state_opening = "shutterc0"; - id = "CentComBarShutters"; - name = "Bar Shutter" - }, -/turf/unsimulated/floor{ - icon_state = "lino_diamond" - }, -/area/centcom/bar) -"ygd" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "thunderdomehea"; - name = "Heavy Supply" - }, -/turf/simulated/floor, -/area/tdome/tdome1) -"ygq" = ( -/turf/unsimulated/floor/plating, -/area/antag/burglar) -"ygE" = ( -/obj/structure/table/rack, -/obj/item/clothing/gloves/yellow/specialu, -/obj/item/clothing/gloves/yellow/specialt, -/obj/item/clothing/gloves/yellow, -/obj/item/storage/belt/utility/very_full, -/obj/item/storage/belt/utility/very_full, -/obj/item/storage/belt/utility/very_full, -/obj/item/storage/belt/utility/very_full, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/distress_prep) -"ygK" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/obj/effect/ghostspawpoint{ - identifier = "TCFLERTSpawn"; - name = "igs - TCFLERT" - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"yhm" = ( -/obj/structure/table/wood/gamblingtable, -/obj/item/material/ashtray/bronze, -/obj/item/trash/cigbutt/cigarbutt, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"yhw" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/flora/ausbushes/sunnybush, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_dininghall) -"yhJ" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/turf/unsimulated/floor/plating, -/area/antag/wizard) -"yiw" = ( -/obj/machinery/button/remote/blast_door{ - id = "crescent_checkpoint_access"; - name = "Aft Public Hallway Access"; - pixel_x = -6; - pixel_y = -24; - req_access = list(101) - }, -/obj/machinery/button/remote/blast_door{ - id = "crescent_thunderdome"; - name = "Thunderdome Access"; - pixel_x = 6; - pixel_y = -24; - req_access = list(101) - }, -/obj/machinery/button/remote/blast_door{ - id = "crescent_vip_shuttle"; - name = "VIP Shuttle Access"; - pixel_x = 6; - pixel_y = -34; - req_access = list(101) - }, -/obj/machinery/turretid{ - ailock = 1; - check_arrest = 0; - check_records = 0; - pixel_x = 28; - pixel_y = -28; - req_access = list(101) - }, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/carpet.dmi'; - icon_state = "rub_carpet" - }, -/area/centcom/control) -"yiD" = ( -/obj/machinery/door/airlock/external{ - close_sound_powered = 'sound/machines/airlock_close_force.ogg'; - glass = 1; - name = "airlock"; - opacity = 0; - open_sound_powered = 'sound/machines/airlock_open_force.ogg'; - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/raider) -"yjf" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/railing/mapped{ - name = "adjusted railing" - }, -/turf/unsimulated/floor, -/area/centcom/evac) -"yjn" = ( -/obj/structure/table/wood/gamblingtable, -/obj/item/trash/plate, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"yjy" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor/plating, -/area/antag/mercenary) -"yjE" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/item/reagent_containers/hypospray, -/obj/structure/table/standard, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -5; - pixel_y = 16 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/holding) -"ykk" = ( -/obj/structure/flora/tree/dead, -/turf/simulated/floor/snow, -/area/centcom/shared_dream) -"ylt" = ( -/obj/machinery/door/airlock/glass_centcom{ - name = "Sector Administration Copula"; - req_access = null; - req_one_access = list(109,108); - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) -"ymd" = ( -/obj/item/modular_computer/console/preset/security, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/control) - -(1,1,1) = {" -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(2,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(3,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -aaM -aaM -aaM -aaM -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ait -ait -ait -ait -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(4,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -aaM -aaM -aaM -aaM -aaM -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -crO -crO -itF -iRS -iRS -jaZ -crO -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(5,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -crO -cXA -iwS -iwS -jJg -lhD -crO -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(6,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aii -aii -aii -aii -aii -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahU -ahS -aiU -aif -akr -akx -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -crO -crO -izb -iSl -iSl -liJ -crO -crO -crO -crO -pWO -rhl -pWO -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(7,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -aiO -aiV -ajf -aig -aaM -aaM -aaM -aiJ -ait -aaM -aio -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -crO -crO -crO -crO -crO -izb -hmr -hmr -hmr -mai -mQo -nWV -crO -pYl -rhm -rMe -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(8,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -ajw -aaq -aaq -aii -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -aiU -ait -ain -aaM -aaM -aaM -ahS -alP -ain -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -ahV -ahV -ahV -ahV -crO -nYp -rUz -gVd -hiO -crO -izb -iSl -iSl -hmr -hmr -mRW -oaq -pcI -hdM -hdM -hdM -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(9,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aii -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -ahV -aaM -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -ait -aaM -aaM -ahV -aaM -aaM -aaM -aaM -ahV -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -ahV -ahV -ahV -ahV -crO -cXA -gxu -gxu -gxu -ibx -gxu -gxu -jSS -lmW -hmr -lmW -oaq -peC -hdM -hdM -hdM -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -xRm -xRm -xRm -xRm -xRm -xRm -xRm -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -aaM -"} -(10,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aii -aii -aii -aii -aii -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -akR -aaM -aaM -aaM -aaM -aaM -ahU -ait -aaM -aaM -akr -pBV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -ahV -ahV -ahV -ahV -ahV -crO -crO -gzj -gVU -hjW -crO -iGY -iYu -jTI -lmW -hmr -lmW -oaq -pfR -hdM -hdM -hdM -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -iJJ -iJJ -iJJ -iJJ -iJJ -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -iJJ -iJJ -iJJ -iJJ -iJJ -iJJ -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -aQS -pBV -aaM -"} -(11,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -akr -akx -aaM -aGd -ajf -aih -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -ahV -ahV -ahV -xwI -xwI -xwI -xwI -gzk -gWY -hky -crO -iJc -iJA -jUG -lmW -hmr -mUE -oaq -crO -ahV -hdM -hdM -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(12,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aii -aii -aii -aii -aii -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -ain -aiJ -aio -aaM -aaM -aaM -aaM -ahV -aaM -akT -aaM -aaM -aof -akz -aaM -aaM -aih -ait -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -ahV -ahV -ahV -xwI -dBk -imJ -xwI -gDr -gWY -hmr -ibD -iJA -iZQ -jUG -lmW -hmr -lmW -odX -crO -ahV -hdM -hdM -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(13,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -kfW -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aii -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -lVU -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aio -aaM -aaM -aaM -aaM -aaM -ahV -ahV -aaM -aaM -aaM -aaM -akr -akA -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -ahV -ahV -ahV -xwI -fEm -fCO -xwI -gDt -gWY -hnl -crO -iMy -iJA -jUG -lmW -hmr -lmW -oaq -pcI -hdM -hdM -hdM -hdM -ahV -ahV -ahV -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(14,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aii -aaq -aiA -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -ait -aif -aaM -aaM -ait -ahS -aiU -aaM -ahV -ahV -ahV -aio -aaM -aaM -aaM -aaM -aaM -ahV -aaM -ahV -ahV -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -ahV -ahV -ahV -xwI -xwI -fXQ -xwI -xwI -gZC -xwI -xwI -iNh -iJA -jUG -lou -hmr -mZX -oaq -peC -hdM -hdM -hdM -hdM -ahV -ahV -ahV -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -uVX -wAA -xGP -gws -fOL -siS -oXd -odT -iLZ -snu -uGw -lAY -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(15,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aii -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ajf -ait -aaM -aaM -aio -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -pBV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -ahV -ahV -ahV -ahV -xwI -fGh -nUb -qmV -gEz -dLZ -hnG -xwI -iOS -iJA -jWn -gxu -maF -hmr -oaq -pfR -hdM -hdM -hdM -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ugF -uXF -wDV -xGX -xGX -xGX -xGX -xGX -eOH -diR -gfT -oKR -uFf -ckl -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(16,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aii -aii -aii -aii -aii -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -ahV -ahV -aaM -aaM -aaM -aaM -ain -aaM -aiJ -aaM -aaM -ait -ajf -akU -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -ahV -ahV -ahV -ahV -ahV -xwI -fKU -nUb -nUb -gFC -dLZ -dLZ -ibE -iJA -iJA -iJA -lqo -hmr -hmr -oks -crO -ahV -hdM -hdM -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -tHU -uiB -uYl -wFc -xJF -wwm -oXE -xxe -cWr -bMQ -dQN -ogz -fkY -rXE -lRx -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(17,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aio -ait -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -ahV -ahV -ahV -ahV -ahV -xwI -arM -tUf -gei -gKq -dLZ -hwN -xwI -itF -jaZ -crO -itF -mdL -ncu -okB -crO -ahV -ahV -hdM -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aWL -pxL -aaM -dka -jSU -tJt -unn -vas -wHk -xKx -dyI -xKx -gFg -uaO -bMQ -gEw -pjv -mJT -rck -hyU -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(18,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aii -aii -aii -aii -aii -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -ahV -ahV -aaM -aaM -aaM -aaM -aaM -ait -aks -ait -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -ahV -ahV -ahV -xwI -xwI -xwI -xwI -xwI -gfl -ahD -gZG -hwY -xwI -ait -ait -ait -ait -cWR -neK -hFF -ait -xSv -xSv -hdM -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -gSj -aPS -aQr -aQG -tpa -nDv -bRJ -fcL -umS -uqP -vcC -wIB -xKx -xKx -xKx -xKx -xKx -viT -qpU -eDH -kXw -iOr -bmI -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(19,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -ahV -aaM -aaM -aaM -aaM -aaM -ain -aaM -ait -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -ahV -ahV -ahV -xwI -fvm -fwl -fLb -xwI -gju -gMc -ahE -hyq -ifH -aaM -aaM -aaM -aaM -cWR -ael -hFF -aaM -aaM -akG -akG -hdM -ahV -ahV -ahV -ahV -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aOF -ePz -oPT -aPT -yex -pPA -iNy -fVF -kWd -bJW -rVC -urh -vdf -wOT -xKx -xKx -dio -xKx -esk -fTC -bcC -wYp -pnp -fvA -vEj -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -gTC -pBV -aaM -"} -(20,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -ajz -aaq -aaq -aii -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -ahV -ahV -ahV -xwI -fvz -xgO -adT -xwI -gnt -ahE -ahE -hAx -ifL -aaM -jdm -jXF -rrF -meB -niY -omL -ioX -qoj -rhD -akG -hdM -rMm -ahV -ahV -ahV -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -uEQ -gvF -aPm -dUn -aPU -arf -hCB -iJr -xDD -vCa -vCa -xDD -xDD -vej -wVg -xNv -wpP -uoN -hGM -wAU -fTC -aea -suq -gDY -eEU -kLP -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -gTC -xRm -aaM -"} -(21,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aig -ain -aaM -aaM -ait -aaM -ait -aaM -aaM -aaM -aaM -aaM -aaM -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -ahV -ahV -ahV -xwI -aaC -xgO -xgO -gTY -ahE -ahE -ahE -hyq -ijY -aaM -jdW -jZO -lqT -mjX -njF -onr -pjJ -qoQ -rkQ -aaM -akG -hdM -hdM -ahV -ahV -ahV -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -oPO -rSF -scp -goT -tdV -nLz -nRo -rSt -xDD -xDD -xDD -xDD -xDD -vfE -wVv -xga -tbt -tbt -tbt -qUe -ouW -uds -oPP -oLD -tDX -oBC -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -gTC -xRm -aaM -"} -(22,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aii -aii -aii -aii -aii -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -ahV -aaM -aaM -ahQ -aih -aaM -aio -aaM -aiO -ait -aaM -ain -ahV -aaM -aaM -aio -ain -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -ahV -ahV -ahV -xwI -sQB -sQB -fNM -xwI -aaV -aaZ -ahE -hBo -xwI -aaM -jgX -kbi -lrT -mlq -njF -oqN -pmr -qsh -rmb -akG -akG -hdM -hdM -hdM -ahV -ahV -ahV -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aOG -cMo -vmR -vxi -xDD -xDD -aQH -woR -xDD -xDD -xDD -xDD -xDD -vim -wXJ -xga -xga -xga -xga -xga -hXk -gnF -qEp -uSk -oRh -wvC -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -gTC -xRm -aaM -"} -(23,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -ahS -aaM -aih -aaM -aaM -ahS -aiU -aaM -aaM -aio -aaM -aaM -aaM -aaM -aaM -akr -akx -ahV -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -ahV -ahV -ahV -xwI -hqD -hqD -xwI -xwI -xwI -xwI -abj -xwI -xwI -aaM -jhe -kdV -lsr -mqU -njF -rrb -pmR -qsr -rob -akG -hdM -hdM -hdM -hdM -ahV -ahV -ahV -pBV -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -irV -aOK -gOV -dzq -aPW -hsr -aQI -tcP -xDD -xDD -xDD -xDD -xDD -viR -xga -xga -bhd -bhd -xga -lGv -viR -uul -jxr -uTL -cur -dMf -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -gTC -xRm -aaM -"} -(24,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -ahT -ajf -aip -aaM -aaM -aaM -ahV -aaM -aaM -ain -aaM -aaM -alR -aaM -aaM -aoO -akz -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -ahV -ahV -ahV -xwI -xwI -xwI -xwI -xwI -aaM -cWR -fCO -hFF -aaM -aaM -jhr -keA -lvJ -mrm -njF -rrb -puD -qxI -roD -akG -hdM -ahV -hdM -hdM -hdM -ahV -ahV -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eHM -qYv -aPn -sgR -ltl -dZM -ntT -jfU -xDD -woS -woS -xDD -urN -vkD -xij -xij -jhP -lFN -ycc -iOh -dvj -bBH -tae -xHb -dvO -bLj -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -gTC -xRm -aaM -"} -(25,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aaq -aii -aii -aii -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -ahU -aik -ahU -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -akr -akA -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -ahV -ahV -ahV -xwI -xwI -xwI -xwI -xwI -qXk -abc -fCO -hFF -aaM -aaM -jhQ -khB -lwz -mrx -njF -oww -pxY -qxL -rqh -akG -hdM -ahV -ahV -hdM -hdM -ahV -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -hOU -aPo -sqy -vpi -sCz -fja -kNT -aYO -kJd -kJd -tLj -uue -vqK -xjB -xTt -sVk -nyT -tbX -fYO -xGD -loR -qsn -hwB -kMC -bLj -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -gTC -pBV -aaM -"} -(26,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -akr -akx -aaM -aaM -aaM -aaM -aaM -aiJ -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -ahV -ahV -ahV -xwI -mKr -eIK -adY -jrk -pBa -fCO -abm -hFF -aaM -aaM -jCl -kkw -lzk -msf -nlu -owO -pyn -qzj -rqm -akG -ahV -ahV -ahV -ahV -hdM -ahV -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -gCr -yhJ -yhJ -yhJ -gCr -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -sqU -aPX -sEG -aQJ -slk -azn -ceT -aYQ -tPU -uwJ -vqM -xjS -xjS -vkD -pRl -tbX -tbX -xXQ -vNq -poM -wbM -jxO -bLj -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -gTC -pBV -aaM -"} -(27,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ajI -aaM -aaM -aky -akz -aaM -aiU -alS -ahS -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -ahV -ahV -ahV -xwI -xwI -xwI -xwI -xwI -aew -mdI -fCO -hFF -aaM -aaM -jEd -kni -lBZ -mtw -noT -oHy -pzc -qzy -rrE -aaM -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -gCr -gCr -aaG -aaR -aaW -gCr -gCr -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -rgr -tff -aaM -swT -aYR -nqq -uBB -vsG -xmD -xTR -ltR -nEs -xRj -oDD -jlx -miZ -qKJ -qCl -nCx -bLj -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -gTC -pBV -aaM -"} -(28,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -akr -akA -aaM -ahS -alU -ahS -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -xwI -aaM -cWR -fCO -hFF -aaM -aaM -jEI -krN -lCc -mux -nqa -oIS -pEJ -qDu -rxw -aaM -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -yhJ -aao -aah -aai -aah -aaY -yhJ -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -xSv -xSv -xSv -xSv -xSv -xSv -xSv -xSv -xSv -bhe -uDo -vAk -xqm -xVE -eHI -mSt -nMl -uNr -qxy -qPF -nsM -izi -xub -bLj -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(29,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -ahV -aaM -aaM -aaM -aaM -ahV -ahV -ahV -aaM -aaM -aaM -aaM -ahS -ama -ahS -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -xwI -xwI -xwI -acH -xwI -xwI -aaM -jEJ -ksM -lDO -mwf -nrX -oJl -pFI -qDw -ryF -aaM -aaM -ahV -ahV -ahV -ahV -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -yhJ -aar -aah -aai -aah -aba -yhJ -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -xVl -xVl -xVl -tvn -tvn -tvn -tvn -xVl -xVl -xSv -uHL -vAu -xuv -xXr -wEr -uqT -snF -snF -snF -snF -oRO -dlQ -igY -ubQ -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(30,1,1) = {" -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -aaM -aaM -aaM -aaM -aaM -akZ -amg -ank -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -ahV -ahV -ahV -ahV -xwI -xwI -xwI -xwI -ahI -bZd -dLZ -hwN -xwI -aaM -jGf -kBJ -lEG -mxA -nuP -oKI -pFR -qDT -ryK -aaM -aaM -ahV -ahV -ahV -ahV -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -gCr -yhJ -yhJ -gCr -aaw -aah -aai -aah -aaG -gCr -yhJ -yhJ -gCr -ahV -ahV -ahV -ahV -ahV -ahV -ahV -xVl -roE -aQa -uaE -uaE -uaE -eqB -aRE -tvn -xSv -aaM -vAv -xux -xZK -joo -ffH -hjO -hYt -xVm -wVJ -asM -cEm -emj -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(31,1,1) = {" -aap -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aap -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aap -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -aaM -aaM -aaM -aaM -aaM -aaM -akr -aeb -akr -aaM -ahV -ahV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -ahV -ahV -ahV -ahV -xwI -adS -hyh -xwI -aeN -dLZ -dLZ -hFL -imz -aaM -jGo -kCZ -lJn -mzh -nvv -oOm -pGt -qFs -rEH -aaM -aaM -ahV -ahV -ahV -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -gCr -gCr -aag -aak -aah -aah -aah -aai -aah -aah -abd -abf -abh -gCr -gCr -ahV -ahV -ahV -ahV -xVl -xVl -xVl -xVl -xVl -eIS -eyM -xzg -uaE -ohs -tvn -xSv -aaM -vAv -uaE -uaE -oYq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(32,1,1) = {" -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ald -akz -akA -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -ahV -ahV -ahV -ahV -xwI -fyK -dLZ -gbM -dLZ -dLZ -agX -hMb -ioV -aaM -jGw -kEu -lKC -mzh -nvv -oOm -pHE -qGr -rGG -aaM -aaM -ahV -ahV -ahV -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -yhJ -aad -aah -aah -aah -aah -aaI -aaS -aaI -aah -aah -aah -aah -abk -gCr -ahV -ahV -ahV -xVl -xVl -hKs -kTA -aPD -tvn -aQs -aQK -aRi -aRx -uaE -tvn -xSv -aaM -vAv -uaE -uaE -oYq -xSv -xVl -tvn -tvn -tvn -xVl -ujU -ujU -ujU -ujU -ujU -ujU -ujU -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(33,1,1) = {" -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -aaM -aaM -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -ahV -ahV -ahV -xwI -fzR -dLZ -xwI -aeR -dLZ -gZS -hOa -ioV -aaM -jGw -kFA -lLw -mzh -nxE -oOm -pIN -qHD -rGG -aaM -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -yhJ -aae -aai -aai -aai -aaA -aaK -aaK -aaK -aai -aai -aai -aai -aai -aby -ahV -ahV -ahV -xVl -hTk -hKs -aPr -aPD -tvn -oXQ -sxH -sxH -sxH -uaE -xVl -xSv -xVl -xVl -xux -xux -xVl -xVl -xVl -dIG -uYK -gtA -xVl -xVl -tvn -tvn -tvn -tvn -xVl -ujU -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(34,1,1) = {" -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -aaM -aaM -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -ahV -ahV -ahV -xwI -fDn -fXv -xwI -gpf -gMK -adh -hXi -ioV -aaM -jIw -kFA -lLw -mzh -nvv -oOm -pIN -qHD -rIs -aaM -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -yhJ -aaf -aah -aah -aah -aah -aaL -aaT -aaL -aah -aah -aah -aah -abl -gCr -ahV -ahV -ahV -xVl -iQG -quz -quz -quz -aQe -uaE -sxH -sxH -sxH -uaE -xVl -xVl -xVl -vIS -aNE -ybY -wrJ -xVl -apD -gzU -mLI -nux -nRM -xVl -wGs -wGs -wGs -wGs -xVl -xVl -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(35,1,1) = {" -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -xRm -xRm -xRm -xRm -xRm -pBV -pBV -pBV -xRm -pBV -pBV -pBV -pBV -pBV -xRm -xRm -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -ahV -ahV -ahV -xwI -xwI -xwI -xwI -xwI -xwI -adz -iax -iqt -aaM -jII -kGE -lNi -mzh -nvv -oOm -pGt -qIn -rLH -aaM -aaM -ahV -ahV -ahV -ahV -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -gCr -gCr -aaj -aam -aan -aah -aah -aai -aah -aah -abe -abg -abi -gCr -gCr -ahV -ahV -ahV -xVl -aOM -quz -quz -quz -aQe -uaE -uaE -uaE -uaE -uaE -uaE -lLS -uJv -uLe -xvz -ybZ -uLe -uJv -iIg -pWU -uaE -jXb -uOx -hOM -iIg -mLI -mLI -nux -qiS -xVl -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(36,1,1) = {" -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -aaM -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -kJv -lOl -mAP -nzP -oPn -pIT -qJG -aaM -aaM -aaM -ahV -ahV -ahV -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -gCr -yhJ -yhJ -gCr -aaG -aah -aai -aah -abb -gCr -yhJ -yhJ -gCr -ahV -ahV -ahV -ahV -xVl -paU -quz -quz -quz -tvn -uaE -uaE -uaE -uaE -uaE -uaE -bqf -uJv -uNd -xyf -ycB -uNd -uJv -dQv -oHw -uaE -ikz -uGA -hOM -dQv -oHw -uaE -aiw -ihq -xVl -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(37,1,1) = {" -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -kJQ -lPg -mAR -nAK -oWD -pLc -qSq -aaM -aaM -aaM -ahV -ahV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -yhJ -aaG -aah -aai -aah -aaG -yhJ -aaM -aaM -aaM -ahV -ahV -ahV -ahV -xVl -xVl -gEY -fQE -bKj -tvn -uaE -kVR -vzG -uaE -wCB -xVl -xVl -xVl -vJq -aNE -ybY -gLL -xVl -nMm -hDN -uaE -aiw -jXL -xVl -jFk -hDN -uaE -aiw -sJo -xVl -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(38,1,1) = {" -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aii -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -kTK -lQc -mBU -nvv -nvv -pLD -qTX -aaM -aaM -aaM -ahV -ahV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -yhJ -aaH -aah -aai -aah -aaG -yhJ -aaM -aaM -ahV -gYT -gYT -gYT -gYT -gYT -xVl -xVl -xVl -xVl -xVl -aWM -xVl -xVl -pNc -xVl -xVl -tQE -xVl -xVl -xzb -xzb -xVl -xVl -xVl -hDN -uaE -aiw -xVl -xVl -frs -hDN -uaE -aiw -gwD -xVl -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(39,1,1) = {" -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -aaM -aaM -aaM -lbB -lRI -mDE -mDE -mDE -pOQ -qVB -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -gCr -gCr -aaQ -aaU -aaX -gCr -gCr -aaM -aaM -ahV -gYT -ezR -fDN -iYn -xVl -xVl -rWF -scL -scL -scL -sHB -xVl -tfL -tgs -tvs -xVl -xVl -xVl -vKf -sLO -dJn -grz -mar -waZ -hDN -uaE -aiw -lSi -tvn -uJO -hDN -uaE -aiw -mVR -xVl -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(40,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aii -aii -aii -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -ahV -ahV -aaM -aaM -aaM -aaM -ahV -ahV -hdM -aaM -aaM -aaM -leF -lSo -mEz -nDW -oWL -pRd -qZO -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -gCr -yhJ -yhJ -yhJ -gCr -aaM -aaM -aaM -ahV -gYT -nhx -iGO -plr -xVl -rMK -rXN -sdf -sdf -sdf -rXN -xVl -tfL -tgs -tgs -tGR -tRd -xVl -vMR -hDN -jXb -mLI -mLI -mLI -pWU -uaE -aiw -kWc -tvn -frK -hDN -uaE -aiw -reC -xVl -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(41,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aii -ahC -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -ahV -ahV -ahV -ahV -ahV -aaM -aaM -ahV -ahV -hdM -hdM -aaM -aaM -lfc -lTV -mET -nPS -oXr -pRX -rbz -aaM -aaM -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -gYT -sjp -xyH -sqZ -xVl -rNY -rXN -rXN -rXN -rXN -rXN -tbh -tgs -tgs -twx -xVl -tTc -xVl -vOb -hDN -uaE -uaE -uaE -uaE -uaE -uaE -aiw -bCU -xVl -xVl -xVl -wSa -wSa -xVl -xVl -xVl -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(42,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -pKM -pKM -pKM -pKM -pKM -pKM -pKM -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -ahV -ahV -ahV -ahV -ahV -aaM -aaM -ahV -hdM -hdM -ahV -aaM -aaM -lfQ -lUJ -mIx -nQl -pcE -pSI -rcG -aaM -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -gYT -lcO -guL -sLq -xVl -rPi -rXN -sdf -sdf -sdf -rXN -xVl -thq -tgs -tyE -xVl -xVl -xVl -vSR -hDN -uaE -uaE -uaE -uaE -uaE -uaE -aiw -maM -tvn -jES -mrd -hDN -aiw -kWN -mTL -tvn -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(43,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -ahV -ahV -ahV -aaM -aaM -aaM -aaM -hdM -ahV -ahV -aaM -aaM -lhv -lWd -mPZ -nTw -nTw -pUh -reJ -aaM -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -gYT -goi -xyH -wdY -xVl -xVl -rZy -sdS -scL -scL -sMa -xVl -thq -tgs -tyE -xVl -tQE -xVl -vWY -hDN -ikz -wgU -wgU -wgU -wgU -wgU -kpU -wlG -xVl -tvn -tvn -hDN -aiw -hLS -tvn -xVl -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(44,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -ahV -ahV -ahV -aaM -aaM -aaM -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -gYT -enP -crk -iGO -gYT -xVl -xVl -xVl -xVl -xVl -xVl -xVl -thq -tsc -tyE -xVl -tQE -xVl -vZI -pZw -knO -bfw -nES -nTm -qXO -snL -yaV -iRX -tvn -bbx -pmg -hDN -wTE -dBX -jbI -tvn -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(45,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -xVl -xVl -xVl -ftC -xVl -xVl -xVl -xVl -xVl -xVl -xVl -xVl -xVl -xVl -xVl -xVl -xVl -xVl -xVl -xzh -dgi -xVl -tvn -tvn -tvn -xVl -dfV -dfV -dfV -dfV -dfV -kvo -dfV -dfV -dfV -dfV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(46,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -rCI -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -tZx -vYd -yjy -vYd -gLk -vYd -vYd -vYd -yjy -vYd -vYd -vYd -vYd -vYd -yjy -uLV -xVl -wUc -wHm -aNE -uaE -bsH -kUH -tbS -fNO -uKM -dfV -mZj -dfV -nkc -jCS -rHW -sFP -nkc -nkc -nkc -bXB -nkc -nkc -nkc -nkc -aaM -aaM -aaM -aQS -pBV -aaM -"} -(47,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pbO -pbO -pbO -pbO -pbO -pbO -pbO -pbO -pbO -pbO -pbO -pbO -pbO -pbO -pbO -pbO -pbO -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -tZx -ckv -ckv -ckv -ckv -ckv -ckv -ckv -ckv -xqg -kMt -nbE -roc -ffn -ckv -lmY -xNd -uLe -uLe -xvz -uaE -uaE -uaE -uaE -ybY -quz -dfV -mZj -dfV -nkc -jCS -vRS -sFP -nkc -nkc -nkc -bXB -nkc -nkc -nkc -nkc -aaM -aaM -aaM -aQS -pBV -aaM -"} -(48,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pbO -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -pbO -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -tZx -ckv -tAj -ldy -tIU -uJl -kHq -cPP -qSH -vGf -pXv -nKS -jnA -fGd -dxD -lmY -xNd -uNd -uNd -xyf -uaE -uNd -uNd -xyf -ybY -quz -dfV -mZj -dfV -mSF -peq -vRS -sSa -eew -nkc -nkc -bXB -nkc -nkc -nkc -nkc -aaM -aaM -aaM -aQS -pBV -aaM -"} -(49,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pbO -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -pbO -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -tZx -wKm -wxU -gGr -jvU -hON -tCx -vUs -oxe -oxe -fqt -kaO -xLd -pXD -vVW -lmY -xVl -wUc -mCu -aNE -uaE -nDL -quz -aNE -ybY -fNO -dfV -dfV -dfV -pGM -xRr -iuH -jai -lKv -uie -uie -uie -uie -uie -eew -nkc -aaM -aaM -aaM -aQS -pBV -aaM -"} -(50,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -qSa -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pbO -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -pbO -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -tZx -iaz -bVx -sCH -mau -ght -eMb -vUs -vUs -vUs -vUs -vUs -gus -uWg -wOm -fHv -xVl -xVl -xVl -nVn -nVn -xVl -quz -aNE -uaE -uaE -uaE -kvo -rHW -vRS -fvL -vDf -too -vRS -vRS -vRS -fgy -xNH -gaS -sFP -nkc -aaM -aaM -aaM -aQS -pBV -aaM -"} -(51,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aii -aii -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pbO -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -pbO -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -tZx -hRp -unV -fFC -kci -eUZ -vUs -sZB -vUs -vUs -vUs -vUs -qKH -bdL -fFB -ckv -tvn -eqc -gBg -aNE -ybY -xVl -quz -aNE -ybY -oZE -dfV -dfV -dfV -cOn -xRr -jug -jai -dac -ajm -jZc -qcb -ioz -kxv -lKv -eew -aaM -aaM -aaM -aQS -pBV -aaM -"} -(52,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aii -aii -aii -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pbO -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -pbO -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -tZx -vox -qSx -sCH -uTw -iZW -eMb -vUs -vUs -vUs -vUs -vUs -lHv -vcu -xyB -ckv -xVl -nOM -nyC -aNE -eAt -xVl -qHQ -tsh -gvx -tgZ -dfV -mZj -dfV -bdK -ajm -vRS -hAO -qTD -jCS -ioz -ioz -ioz -ioz -ioz -sFP -aaM -aaM -aaM -aQS -pBV -aaM -"} -(53,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pbO -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -pbO -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -tZx -icF -cVH -cCQ -pEK -mdk -xjp -vUs -gKo -gKo -gKo -gTK -eNP -tBo -xHe -ckv -tvn -eqc -gBg -aNE -ybY -xVl -xVl -ghU -ghU -xVl -dfV -mZj -dfV -nkc -jCS -vRS -sFP -aVh -jCS -gCf -ioz -ioz -tRe -kYI -sFP -aaM -aaM -aaM -aQS -pBV -aaM -"} -(54,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aii -aii -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aii -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pbO -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -pbO -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -tZx -ckv -bGV -lhC -lIT -ebt -uLy -eMc -tVN -dck -tUx -cep -quS -nuW -mOK -ckv -xVl -nOM -jZq -aNE -ybY -xVl -mPH -oLt -jzw -mPH -dfV -mZj -dfV -mSF -peq -vRS -sSa -eew -jCS -ioz -ioz -ioz -ioz -cbf -sFP -aaM -aaM -aaM -aQS -pBV -aaM -"} -(55,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pbO -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -pbO -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -tZx -ckv -ckv -ckv -ckv -ckv -ckv -ckv -ckv -dHX -bAr -aeq -rSL -mLc -ckv -ckv -tvn -eqc -gBg -aNE -eAt -xVl -quz -aNE -ybY -fNO -dfV -dfV -dfV -pGM -xRr -iuH -jai -lKv -peq -uDT -iKK -ioz -ujT -dac -qTD -aaM -aaM -aaM -aQS -pBV -aaM -"} -(56,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -fMR -rcX -rcX -rcX -aaM -aaM -aaM -aaM -aaM -aaM -pbO -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -pbO -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -tZx -dEw -rNL -dEw -dEw -dEw -dEw -dEw -dEw -dEw -dEw -dEw -dEw -dEw -dEw -xVl -xVl -nOM -nOA -aNE -ybY -xVl -quz -aNE -uaE -uaE -uaE -kvo -rHW -vRS -fvL -vDf -too -vRS -vRS -vRS -bln -jbp -wvP -sFP -nkc -aaM -aaM -aaM -aQS -pBV -aaM -"} -(57,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -pKM -pKM -pKM -pKM -pKM -pKM -pKM -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -fMR -jqa -pWh -rcX -aaM -aaM -aaM -aaM -aaM -aaM -pbO -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -pbO -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -xVl -xVl -xVl -xVl -xVl -xVl -iAV -qXF -qXF -qXF -qXF -qXF -qXF -qXF -qXF -cWx -oLt -uLe -uLe -xvz -ybY -xVl -quz -aNE -ybY -oZE -dfV -dfV -dfV -cOn -xRr -jug -jai -dac -thB -thB -thB -thB -thB -qTD -nkc -aaM -aaM -aaM -aQS -pBV -aaM -"} -(58,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -fMR -rcX -aDU -rcX -aaM -aaM -aaM -aaM -aaM -aaM -pbO -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -pbO -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -xVl -byi -lhE -rbV -lST -pcw -mni -mni -mni -foD -mni -xYn -chH -cWx -aNE -uaE -uaE -uaE -uaE -aem -uLe -xvz -ybY -quz -dfV -mZj -dfV -bdK -ajm -vRS -hAO -qTD -nkc -nkc -bXB -nkc -nkc -nkc -nkc -aaM -aaM -aaM -aQS -pBV -aaM -"} -(59,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -fMR -rcX -jqa -rcX -rcX -aEj -aEj -aEj -aEj -aEj -pbO -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -pbO -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -xVl -nKW -lhE -rbV -mni -fQr -iPr -bro -ajY -xVl -jsh -xVl -xVl -xVl -kYy -uaE -uaE -uaE -uaE -aem -uNd -uNd -dKL -quz -dfV -mZj -dfV -nkc -jCS -vRS -sFP -nkc -nkc -nkc -bXB -nkc -nkc -nkc -nkc -aaM -aaM -aaM -aQS -pBV -aaM -"} -(60,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -fMR -hHP -tkb -kmj -dIt -aDU -aDU -aDU -aDU -aDU -pbO -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -pbO -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -xVl -xVl -xVl -xVl -xVl -xVl -xVl -xVl -xVl -xVl -xVl -aaE -xVl -dPn -fkb -aNE -uaE -uaE -oFf -bLX -xVl -tgZ -eRy -hyv -tgZ -dfV -mZj -dfV -nkc -jCS -rHW -sFP -nkc -nkc -nkc -bXB -nkc -nkc -nkc -nkc -aaM -aaM -aaM -aQS -pBV -aaM -"} -(61,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -fMR -hHP -eZt -uNJ -tCB -aDU -kgq -kOG -bTZ -aDU -pbO -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -pbO -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wqa -ciX -ciX -ciX -ciX -ciX -ciX -ciX -ciX -ciX -byL -xFj -xVl -tvn -hLS -aNE -uaE -mHA -aiQ -aiQ -aiQ -aiQ -aiQ -qTh -aiQ -dfV -dfV -dfV -dfV -dfV -rhi -dfV -dfV -dfV -dfV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(62,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -kKH -kKH -jTO -kgc -aCb -aCb -aCb -aCb -aCb -kgc -jTO -kgc -aCb -aCb -aCb -aCb -aCb -kgc -jTO -ujN -ujN -ujN -jTO -ait -ait -ait -ait -ait -ait -fMR -hHP -hPD -laF -tCB -aDU -sUP -soj -wEI -aDU -pbO -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -nkX -pbO -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wqa -ygq -duk -wpj -oPF -vgT -eRh -eLJ -niP -seN -eGr -ygq -xVl -cMd -oqQ -aNE -uaE -neR -aiQ -aiQ -jVn -pQP -oyk -aiE -aiQ -ahV -ahV -ahV -ahV -dfV -dbW -dfV -ahV -ahV -ahV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(63,1,1) = {" -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaM -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -emP -ajX -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -jTO -uPE -rmo -ppv -wVZ -kCI -obP -mQk -jTO -axZ -mTj -wjW -nLO -mrG -sio -tGw -ujN -kpR -xXE -hCF -jTO -aaM -ait -aaM -aaM -ait -aaM -fMR -hHP -eZt -laF -tCB -fmM -orr -dUu -vTx -pzt -pbO -pbO -ati -ati -ati -ati -ati -ati -ati -ati -ati -ati -ati -ati -pbO -pbO -pbO -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wqa -epL -hoK -gRg -rDZ -dcu -jDe -vYv -qqj -mtH -lKH -ygq -xVl -tvn -hLS -aNE -uaE -neR -aiQ -enB -igl -igl -eaK -slE -aiY -aaM -aaM -aaM -aaM -dfV -dfV -dfV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(64,1,1) = {" -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -emP -oRn -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -jTO -wtW -wxG -mxn -wYu -wYu -xwi -iLs -jTO -ajV -awz -djL -awz -awz -awz -oEe -ujN -oUr -vjQ -vjQ -wOf -fMR -fMR -fMR -fMR -fMR -fMR -fMR -rcX -eZt -laF -tCB -aEk -jKL -aEy -dMA -tkT -pau -taw -atf -gMC -atf -atf -gMC -atf -atf -gMC -atf -atf -gMC -atf -jVm -pau -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wqa -izl -qmi -bDR -fAY -fAY -fAY -dfX -aiR -hkb -sPv -ygq -xVl -kXL -gyC -aNE -uaE -neR -aiQ -toF -igl -igl -gMF -igl -aiY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(65,1,1) = {" -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -emP -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -ujN -wtW -wBQ -mxn -wYu -kjZ -adU -iLs -ujN -nfe -awz -awz -awz -awz -awz -aaJ -jTO -jBi -vjQ -vjQ -jTO -aaM -ait -aaM -aaM -ait -aaM -fMR -hHP -eZt -laF -tCB -jSa -jyc -aEy -vng -hOj -pau -atf -nhn -atq -haj -yfH -cbI -eDB -gsg -psT -kzP -cvq -fKx -sOJ -atf -pau -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wqa -uFE -rZt -huB -twH -wCa -aaz -fAY -teP -qlg -vdn -ygq -xVl -tvn -hLS -aNE -uaE -neR -aiQ -ipA -pQP -igl -gSK -trT -aiY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(66,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -emP -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -tfG -ujN -wtW -wCv -mxn -wYu -kjZ -kCA -iLs -ujN -uTc -ewu -nTr -awz -awz -awz -kgS -jTO -qHx -tUh -vjQ -jTO -ait -ait -ait -ait -ait -ait -fMR -hHP -eZt -laF -tCB -jSa -aEw -bld -aFa -mGZ -pau -atf -uVE -tZO -tIb -atC -atC -atC -atC -atC -tIb -atJ -drc -nBV -atf -pau -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wqa -ygq -uad -lPX -rtH -jbu -wLg -aaD -xUR -kBQ -ucV -ygq -xVl -vYY -tcg -aNE -wcT -ule -aiQ -kOC -flh -aiQ -aiQ -aiY -aiY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(67,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -emP -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -ujN -wtW -wCK -rBr -wYu -rVj -jMg -iLs -ujN -ant -awz -kqN -nXL -awz -awz -gMf -ujN -sqq -vjQ -vjQ -ujN -aaM -aaM -aaM -aaM -aaM -aaM -fMR -hHP -hPD -laF -tCB -kEB -aEx -aEy -aFb -wJY -pau -atf -xMD -lxv -atC -atC -atC -atC -atC -atC -atC -hbQ -aYV -auK -atf -pau -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wqa -jcc -jcc -jcc -jcc -jcc -nwx -jcc -jcc -jcc -jcc -jcc -aiQ -aiQ -aiQ -aiQ -aiQ -aiQ -aiQ -aiv -gJO -aiQ -aiQ -ajd -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(68,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -emP -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -lxi -vZA -kCI -wYu -hgK -jhx -gYb -iLs -jTO -evM -awz -awz -awz -awz -ooP -gXF -ujN -oQw -vjQ -pFS -ujN -aaM -aaM -aaM -aaM -aaM -aaM -fMR -hHP -eZt -laF -tCB -fMi -aEx -aEy -aFb -wJY -pau -taw -oUt -vnG -atC -atC -atC -aCQ -atC -atC -atC -sgY -uld -auL -jVm -pau -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -gbL -saE -saE -uTT -mem -kkO -saE -nMX -bTd -cWO -rAZ -jvO -saE -aiQ -uuE -ajW -bsZ -ajd -ajW -qrB -wFx -tLX -alV -weG -krf -krf -krf -ajd -ams -anl -aog -aoU -aqb -aGf -aGT -aIE -aJa -aLm -aNO -aVs -bzb -cHN -dNJ -aaM -aQS -pBV -aaM -"} -(69,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -emP -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -lxi -wrS -kCI -wYu -wYu -dQD -eRF -iLs -jTO -bgp -awz -awz -awz -awz -gji -wYn -jTO -ujN -pjL -ujN -jTO -aCb -aCb -aCb -aCb -aCb -kgc -rcX -rcX -oaf -laF -aEf -aEl -aEx -ahA -aFb -esA -pau -atf -eOy -lsU -atC -atC -atC -atC -atC -atC -atC -rlJ -laq -auM -atf -pau -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -gbL -aaM -tUa -oNu -dUF -dUF -dUF -eOz -xSi -xSi -xSi -xSi -wqa -igl -lLa -bsZ -bsZ -ajd -bHJ -uUx -ajW -oDl -nvW -tYj -fOu -qhk -wKU -alk -amv -ano -aoi -aoY -aqh -aGg -aGU -aIG -aJb -aLn -aNP -aVt -bze -cJI -dPL -eNz -aQS -pBV -aaM -"} -(70,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -whm -whm -whm -whm -whm -whm -whm -whm -whm -whm -whm -whm -whm -whm -whm -whm -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -emP -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -ujN -wtW -wYz -wYu -wYu -wYu -rft -iLs -ujN -lQT -awz -awz -nXL -awz -awz -iLs -lHk -oRj -pns -szP -ujN -pMe -pQe -pZi -glr -qer -iLs -hHP -tkb -kQd -qAH -jrq -aEm -aEy -mmY -aFb -nuJ -pau -atf -qMs -wUe -dZW -atK -atC -cRV -atC -lGZ -dZW -iuz -vUm -nbV -atf -pau -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -gbL -aaM -saE -uml -dUF -dUF -dUF -eOz -xSi -xSi -xSi -oxc -wqa -bqi -ajW -hwW -dbq -lNt -bHJ -mqh -igl -sph -rvl -tYj -vQl -dbL -akD -alm -amw -anx -aok -api -aqj -aqj -aGV -aIH -aJc -aLo -aNQ -aVu -bDi -cJJ -dQg -eOF -aQS -pBV -aaM -"} -(71,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -mSy -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -gIs -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -emP -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -tfG -ujN -wtW -xeU -cUG -isH -bpF -rSk -iLs -ujN -ejd -awz -awz -awz -awz -awz -iLs -lHk -oRn -oNa -fCl -ujN -aau -rdN -aCI -aCv -tuX -iLs -hHP -eZt -qAH -laF -fXJ -xXZ -pCm -kiM -wJT -mlp -pau -atf -lYF -fdh -pUx -kxc -tMm -atW -tMm -hcn -auv -dMa -jPV -nph -atf -pau -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -gbL -xSv -saE -eFg -ugm -dUF -saE -ikW -xSi -xSi -gGv -iod -saE -aas -mrF -mrF -ajd -hfd -xdm -aiY -meU -mhN -fuZ -aiY -uNY -uNY -bsZ -aln -amx -any -aol -apj -aqn -aGh -aGW -aII -aJd -aLp -aNR -aVv -bGF -cKC -dSG -eOP -aQS -pBV -aaM -"} -(72,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -mSy -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -emP -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -ujN -wtW -xyu -eFy -isH -mOp -kmE -iLs -ujN -fGe -awz -awz -nYX -awz -awz -iLs -lHk -oRn -oNa -psn -ujN -aCd -aat -aCv -uIj -cYA -iLs -hHP -bVd -qAH -laF -tCB -fnm -aEz -rAO -fgO -hCM -pau -taw -atf -usD -atf -atf -usD -atf -atf -usD -atf -atf -usD -atf -jVm -pau -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -sdC -aaM -saE -saQ -vMb -dUF -lvn -eOz -xSi -xSi -xSi -gPJ -saE -aas -aas -aiQ -aiQ -aiQ -aiQ -aiQ -ieU -ktg -aiQ -aiQ -ajd -aaM -akH -alo -amC -amx -kxZ -apt -aqo -aqj -aqj -aol -aJe -aLq -aNS -aWJ -bKL -cLb -dTj -eTx -aQS -pBV -aaM -"} -(73,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aen -jMb -jMb -jMb -jMb -jMb -utk -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -lkC -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -emP -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -jTO -wtW -xVb -iwa -ehQ -cKU -xFN -iLs -jTO -bGq -nAe -awz -lpK -iWg -awz -stO -jTO -nyI -oNa -psq -ujN -aCe -aCs -aCv -aCU -vyX -iLs -hHP -cNS -fSp -lnh -tCB -aEn -aEA -qdK -pJw -aFh -pau -pau -pau -pau -pau -pau -pau -pau -pau -pau -pau -pau -pau -pau -pau -pau -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -gbL -aaM -wrI -cbz -dUF -dUF -gBb -eOz -buB -xSi -mhJ -mLo -saE -aas -aas -aiQ -aiQ -aiQ -bdI -sXD -sym -sym -eRo -aiY -ajd -aaM -aaM -alp -amG -anF -aop -apu -aqz -aGi -aGX -aIJ -aJj -aMk -aOb -aXF -bVz -cMT -dUb -eVV -aQS -pBV -aaM -"} -(74,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -lkC -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -emP -oRn -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -jTO -uZF -ptw -ptw -ptw -ptw -ptw -mWn -jTO -uZF -qWx -hTv -gSG -qvf -wgM -xKP -jTO -roC -oNa -pzn -jTO -wdu -wJN -aCv -sQq -xOP -iLs -rcX -rcX -mrX -rcX -aEf -uZL -uZL -uZL -uZL -uZL -rcX -bQP -bQP -hQm -miG -iUG -miG -miG -miG -miG -iUG -miG -him -bQP -aaM -aaM -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -gbL -xSv -saE -fpk -iOQ -sBd -saE -lek -kfD -tuE -saE -saE -saE -aas -aas -aiQ -aiE -aiQ -enn -sXD -sym -sym -fdr -aiY -ajd -aaM -aaM -aaM -amI -anH -aoq -apv -are -aGj -aGY -aIK -aJk -aMn -aOd -gvP -bWB -cQv -dVC -eYM -aQS -pBV -aaM -"} -(75,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -lkC -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -emP -oRn -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -jTO -oNa -oNa -oNa -oNa -oNa -oNa -oNa -jTO -pvz -pvz -dqu -dqu -pTQ -wvL -wvL -sZl -oNa -oNa -oNa -aBX -aCf -aCu -aCv -qhb -vNj -iLs -rcX -kvf -kvf -rcX -hHP -hHP -rcX -rcX -rcX -rcX -rcX -bQP -bQP -mcn -qiY -aLi -aLi -aLi -aLi -aLi -aLi -qiY -bjD -bQP -bQP -bQP -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -oYo -saE -saE -saE -saE -saE -saE -tMl -saE -saE -ahV -aiQ -aas -gNf -aiQ -aje -aiQ -enn -sXD -sym -sym -fAi -aiQ -aiQ -aaM -aaM -aaM -aaM -aaM -aaM -apw -arg -aGk -aGZ -aIX -aJJ -aNe -aOe -aXS -cal -cQY -dVV -eZI -aQS -pBV -aaM -"} -(76,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -kYR -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -emP -oRn -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -lIa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -lLK -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -aBX -aCf -aCv -aCv -aCV -rPz -iLs -hHP -qGK -qGK -qGK -nAg -kvf -oCF -qAH -bto -aFg -rcX -bLK -hQm -gQw -qiY -tLh -jbw -tLh -tLh -jbw -mmb -qFf -gAA -him -kxT -bQP -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aiQ -ibf -igl -aiQ -iFM -aiQ -aiQ -kIp -sym -sym -sym -mcg -aiQ -aiQ -aaM -alq -amN -anI -aot -apx -arw -aGl -aHi -aIX -aJK -aIX -aOo -aXW -caA -cTS -dXe -aaM -aQS -pBV -aaM -"} -(77,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -kYR -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -emP -oRn -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -jTO -oNa -oNa -hVx -oNa -oNa -oNa -oNa -jTO -aoj -pfY -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -aBK -kgc -oQt -dGw -aCv -dIN -lQI -mPA -rcX -oNp -doP -doP -iwr -jvz -ejA -qAH -qAH -aFg -rcX -bLK -qiY -qiY -qiY -tLp -tLp -tLp -tLp -tLp -tLp -qiY -qiY -qiY -bLK -bQP -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -bSa -igl -igl -aiQ -bdu -dDH -bJv -sym -sym -drE -fMm -fMm -igl -aiY -akJ -alr -amP -anJ -aov -apy -azs -aGm -aaF -aFR -aJL -aFR -aOp -aXX -caG -cWK -dXk -aaM -aQS -pBV -aaM -"} -(78,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -lkC -lkC -lkC -lkC -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -emP -fpS -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -kVA -jTO -jTO -jTO -jTO -jTO -jTO -uJN -jTO -jTO -qtQ -rBY -oNa -oNa -xBm -aCE -bsj -pfY -oNa -oNa -kzR -ujN -rkF -aav -aCK -aay -enU -iLs -hHP -nVi -doP -doP -iwr -rKH -rcX -xrS -bvm -ddn -rcX -avk -qiY -mLh -khA -lvy -qKr -lvy -qKr -qKr -lvy -rgN -wEG -qiY -bLK -bQP -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -sxB -igl -igl -aiY -tsk -stK -eeI -dpM -sym -dUK -dPO -fQS -ikQ -aiY -akK -alv -amQ -anK -aoy -apF -aoz -aGn -aHk -suT -cRP -cRP -aOq -uUa -cfo -dby -dXR -fcf -aQS -pBV -aaM -"} -(79,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -mSy -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -jTO -lLj -mkO -mxm -ujN -oNa -oNa -ncM -jTO -jTO -jTO -dXh -dXh -jTO -ujN -ujN -ujN -iqm -iqm -ujN -ujN -ufj -aCx -aCK -aCX -vht -iLs -rcX -eiJ -eTt -xaL -iwr -cIQ -rcX -oSD -oSD -oSD -rcX -bLK -qiY -bIQ -khA -qKr -gEh -qKr -qKr -gEh -qKr -rgN -cFp -qiY -bLK -bQP -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -sxB -igl -igl -aiY -iEB -stK -cLJ -dpM -sym -dYk -gct -gct -iyr -aiY -qtg -alw -uOL -anM -aoz -apG -aoz -aGt -aHl -cie -aJM -aNf -aOr -aYK -chb -dff -dXX -feQ -aQS -pBV -aaM -"} -(80,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -lkC -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -jTO -xMf -oNa -oNa -oNa -oNa -oNa -oNa -oNa -jTO -lNL -eHY -eHY -mxw -oNa -oNa -oNa -jTO -nlK -nEY -nUr -nZm -jTO -cCW -fuy -oJY -oJY -oJY -oQM -ujN -hQg -aCy -oOX -xYs -wCf -iLs -rcX -hHP -hHP -hHP -qOq -hHP -rcX -cCk -sSn -vjR -rcX -bLK -qiY -mLh -khA -qKr -lvy -qKr -qKr -lvy -qKr -rgN -wEG -qiY -bLK -bQP -aaM -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -ahV -ahV -ahV -aiQ -igl -igl -aiY -wkO -cRd -nLV -fYr -sym -sym -sym -dbM -aiQ -aiQ -akP -alx -amU -anP -aoA -apH -aDR -aGu -olC -cie -aJN -aNg -brB -aYL -coi -dhq -dYV -aaM -aQS -pBV -aaM -"} -(81,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -lkC -aaq -aaq -aaq -aaq -uTI -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -jTO -oNa -oNa -oNa -oNa -oNa -oNa -oNa -oNa -jTO -jTO -jTO -jTO -jTO -oNa -oNa -ngi -jTO -nlQ -nGs -mlA -ocD -oik -vjQ -oCD -oJY -sny -sny -pEp -ujN -wIl -wIl -wIl -wIl -wIl -vGd -rcX -akp -kUh -kUh -kUh -bQZ -rcX -rcX -rcX -rcX -rcX -bLK -qiY -bIQ -khA -qKr -gEh -qKr -qKr -gEh -qKr -rgN -cFp -qiY -avk -bQP -bQP -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -sxB -igl -igl -aiY -dHW -stK -lnV -dpM -sym -sym -deN -aiQ -aiQ -aaM -aaM -alz -amX -anR -aoB -apI -aEt -aGv -aHO -aIL -aJO -aNh -aOt -aYM -cpq -dlj -eay -aaM -aQS -pBV -aaM -"} -(82,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -ahv -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -lkC -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -jTO -huh -oNa -izf -izf -izf -oNa -oNa -oNa -jTO -lLj -mkO -mxm -ujN -oNa -oNa -mEq -jTO -nmO -nLo -nWh -ocD -jTO -aRt -ekG -oJY -sny -sny -pEp -jTO -jTO -jTO -aCc -bcL -wUU -wUU -rcX -mkB -kvf -pXr -iyf -ugV -rcX -bLK -bLK -bLK -bLK -avk -qiY -mLh -khA -lvy -qKr -qKr -lvy -qKr -lvy -rgN -wEG -qiY -bLK -bLK -bQP -aaM -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -sxB -igl -igl -aiY -cOf -stK -xMv -dpM -sym -sym -upn -aiY -ajd -aaM -aaM -aaM -aaM -aaM -aaM -apJ -aEu -aGw -aIh -cie -aKq -aNi -aOE -aZX -cti -dnh -ens -ffx -aQS -pBV -aaM -"} -(83,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -lkC -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -jTO -vLR -hVx -izf -izf -izf -hVx -kQH -lfI -jTO -lNL -eHY -eHY -kml -oNa -oNa -ngi -jTO -nnf -nSz -vjQ -ocD -jTO -wQg -qvZ -oNt -oXS -oXS -pEG -pIW -pNG -jTO -jTO -jTO -jTO -jTO -rcX -rcX -teA -oAl -rmr -gpF -rcX -bLK -aiz -aiz -aiz -aiz -qiY -qiY -qiY -wTs -wTs -wTs -wTs -wTs -wTs -qiY -qiY -qiY -lUA -jtT -lUA -lUA -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -bSa -igl -igl -aiQ -dmM -stK -lds -ahN -fXq -gPO -qaW -aiY -ajd -aaM -aaM -aaM -ana -anT -aoC -apK -aEG -aGx -aIi -aIV -aKr -aNx -aPg -bdl -cvk -dnE -eqw -fiE -aQS -pBV -aaM -"} -(84,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -kYR -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bYs -bYs -bYs -bYs -bYs -bYs -bYs -bYs -bYs -bYs -bYs -bYs -bYs -bYs -bYs -jTO -jTO -jTO -jTO -jTO -oNa -oNa -oNa -jTO -kJk -aWf -nSA -wUz -jTO -otw -oNa -oNa -oNa -pqL -pES -oNa -oNa -pWa -pZr -kIi -kIi -qcl -qso -nQD -teb -oAl -jRx -wNv -rcX -avk -aiz -kWy -upK -upK -upK -lvs -aTW -aTX -aTX -aTX -aTX -aTX -aTX -aTW -nQZ -cJB -cJB -cJB -uHA -lUA -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -aiQ -aiQ -hOV -hOV -aiQ -aiQ -aiQ -aiQ -aiQ -chs -ajW -aiQ -aiQ -ajd -aaM -aaM -alH -anb -anW -aoD -apM -aEH -aGy -aIj -fvg -wxL -aNy -aPk -bfN -cvJ -dql -erT -flO -aQS -pBV -aaM -"} -(85,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -eaA -gyi -gyi -gyi -gyi -gyi -wap -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -lkC -lkC -lkC -lkC -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bYs -qLd -ghR -wTM -wTM -wTM -wTM -wTM -wTM -wTM -wTM -wTM -wTM -tCu -mDS -jTO -jBt -moi -eHY -mBP -oNa -oNa -oNa -jTO -jTO -jTO -gSc -jTO -jTO -ouV -oII -pfY -oNa -oNa -oNa -pfY -oNa -iVT -qcl -qcl -qcl -qcl -vCZ -rcX -qAm -ugV -gRD -wtO -rcX -bLK -aiz -jdr -vZo -upK -vZo -lvs -aTX -odx -aTX -aTX -aTX -aTX -odx -aTX -nQZ -mks -cJB -bBe -uHA -lUA -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -aiQ -hCk -igl -qje -aiQ -wsX -wsX -wsX -fIp -kns -spt -ajW -weG -jpD -jpD -krf -alJ -aIF -kak -aoE -apN -aIX -aFR -aIk -aIX -aKs -aNz -aPl -bmV -uLW -dqP -esM -fmz -aQS -pBV -aaM -"} -(86,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -mSy -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bYs -ghR -uSv -uSv -uSv -uSv -uSv -uSv -uSv -uSv -uSv -uSv -uSv -uSv -tCu -jTO -lSZ -mqY -eHY -jTO -mCf -oNa -oNa -jTO -fYz -nTe -vVC -cew -jTO -oAu -oNa -sWR -sWR -sWR -sWR -sWR -tNb -pWa -qel -qcl -qcl -qcl -qxH -rcX -rcX -rcX -rcX -rcX -rcX -bLK -aiz -dJe -fgI -pzs -fgI -lvs -aTX -aTX -aTX -aTX -aTX -aTX -aTX -aTX -nQZ -ohC -ifs -cJB -uHA -lUA -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -aiQ -wbB -igl -igl -pEP -ajW -igl -igl -ajW -igl -ajW -igl -quG -aix -aix -aep -alK -and -anY -aoF -gIn -aFQ -aGz -aIl -apO -aKt -aNA -aPC -brw -cCo -dzN -etN -fqx -aQS -pBV -aaM -"} -(87,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -mSy -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bYs -bYs -bYs -bYs -bYs -bYs -bYs -bYs -bYs -bYs -bYs -bYs -bYs -bYs -bYs -bYs -bYs -bYs -owT -uSv -hZx -szr -cAL -cAL -cAL -cAL -cAL -szr -cAL -nxI -uSv -nyh -jTO -eHY -mxc -eHY -jTO -mEq -mMF -oNa -lYZ -vVC -vVC -vVC -vVC -jTO -vLR -oNa -jFq -oZm -prI -pIu -bvr -pKR -jTO -wCA -qcl -qcl -qcl -wCA -bQP -hQm -miG -iUG -miG -bQP -bLK -aiz -jdr -fgI -hpf -fgI -lvs -aTX -aTX -aTX -odx -aTX -aTX -aTX -aTX -nQZ -ohC -cJB -xXf -gTk -lUA -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -aiQ -hCk -igl -igl -djX -ajW -igl -ajW -ajW -ajW -ajW -pNM -dzP -mPa -mPa -aer -alL -ang -anZ -aoH -apP -aFR -aFR -aIm -aIX -aKM -aNB -aVj -bsi -cCD -dAj -euo -ftc -aQS -pBV -aaM -"} -(88,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -lkC -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bYs -iED -ufc -llE -vVC -bXx -bYs -fyB -qtH -qoI -gou -vVC -ayw -jcm -wwV -bYs -bYs -bYs -owT -uSv -nyh -bYs -ayw -ayw -ylt -ayw -ayw -bYs -tse -owT -uSv -nyh -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -jTO -nuX -vVC -vVC -vVC -jTO -jTO -ndP -jTO -jTO -jTO -jTO -jTO -jTO -jTO -eJc -eJc -lBD -eJc -eJc -bQP -qrQ -bdY -kYq -kYq -wkk -avk -aiz -tXA -fgI -pzs -fgI -lvs -aTX -aTX -aTX -aTX -aTX -aTX -aTX -aTX -nQZ -ohC -ifs -xXf -tLm -lUA -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -aiQ -lxL -slE -sdF -aiQ -igl -ajW -lJD -ajW -ajW -cRG -lVG -aiY -idA -rvx -uNY -alM -anh -aob -aoI -apR -aFS -aGR -aIn -aIY -aKO -aNC -aVk -bsu -cDi -dFD -eAT -ftu -aQS -pBV -aaM -"} -(89,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -lkC -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ayw -ufc -uqJ -mbV -vVC -mJJ -bYs -lSm -vNR -cmA -vVC -vVC -dhs -ufc -ufc -aVo -bYs -bYs -owT -uSv -nyh -ayw -iua -nHd -vVC -jSH -rhK -aAF -bYs -owT -uSv -hQM -wTM -bYs -iYk -wTM -wTM -wTM -wTM -iYk -wTM -wTM -wTM -wTM -tCu -gaD -iox -laY -laY -laY -laY -nyo -laY -laY -laY -laY -laY -laY -laY -chw -eJc -mnl -hPU -rhW -qjw -bQP -bLK -aiz -upK -vZo -upK -vZo -lvs -aTX -odx -aTX -aTX -aTX -aTX -odx -aTX -nQZ -mks -cJB -nFM -cKK -lUA -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -aiQ -qJM -xtA -ioi -aiY -cCB -llG -ajW -ajW -igl -ajW -tPw -aiY -aaM -aaM -aaM -aaM -anj -aoe -aoJ -apX -aFT -aGS -aIo -aIZ -aLl -aNN -aVr -bvA -cEy -dJl -eEC -aaM -aQS -pBV -aaM -"} -(90,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -lkC -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ayw -tox -pUK -syd -vVC -vVC -fdH -qnp -vNR -hGv -vVC -ixg -jAm -ufc -ufc -ufc -ggI -bYs -lqc -uUF -nyh -ayw -wYN -tyX -vVC -tyX -wYN -kff -ayw -owT -uUF -uSv -uSv -jpG -uSv -uSv -uUF -uSv -uSv -uSv -uSv -uSv -uSv -uUF -nyh -ldd -mAD -bLK -wCA -bLK -bLK -bLK -bLK -wCA -bLK -bLK -bLK -bLK -wCA -lOO -eJc -miG -miG -miG -kof -bQP -bQP -aiz -upK -upK -upK -upK -lvs -aTX -aTX -aTX -aUm -aUm -aTX -aTX -aTX -rFD -esR -cJB -cJB -jre -lUA -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -aiQ -huN -exX -igl -aiY -igl -scd -ajW -ajW -scd -ajW -aYm -aiY -aaM -aaM -ghN -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(91,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -kYR -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ayw -vVC -oOB -oOB -vVC -vVC -bYs -kjq -vNR -uJw -vVC -ixg -emO -nYo -ufc -ufc -tBz -bYs -owT -uSv -nyh -ayw -jDI -hOC -vVC -vSi -rkr -miX -ayw -owT -uSv -hZx -cAL -bYs -cAL -cAL -cAL -cAL -cAL -szr -cAL -cAL -cAL -cAL -sHn -onk -bHL -lMn -lMn -lMn -lMn -nEt -lMn -lMn -lMn -lMn -lMn -ydQ -bLK -lOO -kjR -bLK -bLK -bLK -bLK -bLK -bLK -unG -nBl -upK -nBl -upK -lvs -aTX -aTX -aTX -aUn -goO -aTX -aTX -aTX -nQZ -cJB -bBe -cJB -bBe -lUA -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -bPL -ise -igl -igl -tvo -ajW -aac -ajW -edH -scd -igl -vdU -aiY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(92,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -kYR -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -uMB -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bYs -juP -vVC -kjl -vVC -eGb -bYs -leH -vNR -hIw -efD -vVC -xeH -pUK -fTh -niU -ayw -bYs -owT -uSv -nyh -ayw -cmb -joC -hum -vVC -vVC -vVC -aes -owT -uSv -nyh -bYs -bYs -ezv -wZB -ayw -ayw -bYs -bQP -bQP -aDb -bQP -aDb -bQP -bQP -lDJ -nDp -aDb -aDb -aDb -bQP -bQP -bQP -bKw -bQP -bQP -edR -bLK -lOO -eJc -off -off -off -bDy -bQP -bQP -aiz -upK -upK -upK -upK -lvs -aTX -aTX -aTX -aUm -aUm -aTX -aTX -aTX -rFD -cJB -pgY -cJB -rWs -lUA -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -aiQ -aiQ -aiQ -aiQ -aiQ -yfl -scd -ajW -nIj -scd -igl -xvu -aiY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(93,1,1) = {" -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -bkL -bkL -bkL -bkL -bkL -bkL -bkL -bkL -bkL -bkL -bkL -bkL -bkL -bkL -bkL -bkL -aii -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bYs -bYs -bYs -bYs -sNE -bYs -bYs -lSm -vNR -hIw -aaa -vVC -vVC -oOB -oOB -vVC -hyy -bYs -owT -uSv -nyh -ayw -smr -hCw -vVC -vSi -rkr -odJ -ayw -owT -uSv -nyh -bYs -oeh -vVC -fHF -fFd -mJt -kSB -bQP -yjE -lEC -wKb -lEC -xnZ -bQP -ddo -wCg -fOM -tmv -wjH -bQP -tjd -rAP -kYq -nUK -bQP -mAD -bLK -lOO -eJc -dmw -qZM -hWR -aXp -bQP -bLK -aiz -upK -vZo -upK -vZo -lvs -aTX -odx -aTX -aTX -aTX -aTX -odx -aTX -nQZ -mks -cJB -nFM -gZx -lUA -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -ahV -aiQ -rsQ -scd -ajW -kOh -scd -ajW -nEc -aiQ -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(94,1,1) = {" -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bYs -kTJ -kTJ -kTJ -vVC -bYs -rRP -leH -vNR -kUG -fkx -vVC -kjl -vVC -vVC -vVC -hmN -bYs -owT -uUF -nyh -ayw -wYN -cha -vVC -cha -yiw -nHd -ayw -owT -uUF -qXj -bYs -luY -vVC -lsJ -rtl -vVC -ghF -bQP -vpG -fch -tRr -fch -iEv -bQP -eMQ -liY -kYq -lnt -oBu -aDb -kVk -ebr -kYq -nUK -aDb -mAD -bLK -lOO -bQP -swe -xLr -kYq -kYq -ezF -avk -aiz -tXA -fgI -pzs -fgI -lvs -aTX -aTX -aTX -aTX -aTX -aTX -aTX -aTX -nQZ -ohC -ifs -xXf -lhd -lUA -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahV -ahV -ahV -ahV -aiQ -aiQ -tYj -tYj -aiY -shc -yiD -aiQ -aiQ -aaM -ghN -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(95,1,1) = {" -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ayw -aal -vVC -vVC -vVC -bYs -egj -leH -wBG -oDp -kUG -dct -dct -hnb -aet -gNM -hnb -bYs -owT -uSv -nyh -ayw -mGV -faT -vVC -faT -kQa -bYs -bYs -owT -uSv -nyh -bYs -jrH -vVC -vVC -vVC -vVC -mvQ -bQP -hhU -tRr -tRr -tRr -qwA -bQP -kUb -kYq -kYq -kYq -oBu -aeu -kYq -kYq -kYq -kYq -aev -mAD -bLK -eIe -bQP -lqP -off -qXu -off -bQP -bLK -aiz -upK -fgI -hpf -fgI -lvs -aTX -aTX -aTX -odx -aTX -aTX -aTX -aTX -nQZ -ohC -cJB -xXf -wrA -lUA -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ttS -iIo -hWl -ueV -tcd -hWl -eCT -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(96,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bYs -kTJ -kTJ -kTJ -vVC -bYs -mOm -leH -uSv -wBG -eNd -eNd -eNd -eNd -eNd -eNd -uSv -ayw -tBL -uSv -nyh -bYs -ayw -ayw -ylt -ayw -ayw -bYs -tse -owT -uSv -nyh -bYs -pGw -rtl -vVC -vVC -skr -txl -bQP -bsS -iGC -tRr -bCG -bsS -bQP -wfu -liY -kYq -liY -oBu -aDb -qnC -qhn -kYq -nUK -aDb -mAD -bLK -lOO -bQP -bQP -bQP -bQP -bQP -bQP -bLK -aiz -tXA -fgI -pzs -fgI -lvs -aTX -aTX -aTX -aTX -aTX -aTX -aTX -aTX -nQZ -ohC -ifs -xXf -gGS -lUA -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ajd -veZ -yfr -ewl -vLI -hWl -kMF -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(97,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bYs -bYs -bYs -bYs -sNE -bYs -bYs -lSm -uxa -uSv -uSv -uSv -uSv -uSv -uSv -uSv -uSv -uHz -uSv -uSv -hQM -iYk -wTM -wTM -wTM -wTM -wTM -iYk -wTM -tBL -uSv -nyh -bYs -prK -vVC -oiN -nTt -dzT -rHd -bQP -bQP -bQP -tDo -bQP -bQP -bQP -xjJ -vKj -eDp -bMp -tDA -bQP -tjd -wqv -kYq -nUK -bQP -mAD -bLK -lOO -bQP -qxN -lLC -nwG -rHx -bQP -bLK -aiz -upK -efo -mSo -hJZ -krP -aTY -dRD -aTY -aTY -aTY -aTY -dRD -aTY -fFe -ePj -lIE -nFM -xgL -lUA -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -voS -qOx -tYj -ewl -tYj -tYj -kMF -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(98,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bYs -juP -vVC -mIi -vVC -eGb -bYs -leH -uxa -uSv -roS -voh -voh -voh -voh -voh -uSv -ayw -cAL -uSv -uSv -uSv -uSv -uSv -uSv -uSv -uSv -uSv -uSv -uSv -uSv -iiu -bYs -bYs -bYs -bYs -bYs -bYs -bYs -bQP -ekC -cWe -mDt -ePq -fUg -bQP -bQP -bQP -bQP -bQP -bQP -bQP -bQP -bQP -bKw -bQP -bQP -edR -wCA -lOO -uxc -qxN -qxN -qxN -qxN -sje -avk -aiz -cqK -dlh -upK -upK -lvs -aTW -aTX -aTX -aTX -aTX -aTX -aTX -aTW -nQZ -cJB -cJB -cJB -uEw -lUA -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(99,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aen -jMb -jMb -jMb -jMb -jMb -jMb -jMb -utk -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ayw -vVC -cew -cew -vVC -vVC -bYs -kjq -uxa -uSv -vNR -ayw -ayw -ayw -cPC -ayw -bYs -bYs -qLd -hri -cAL -cAL -cAL -cAL -szr -cAL -cAL -cAL -cAL -cAL -iiu -mDS -eBz -xXB -ffN -aqu -gFh -hYo -eBz -qjR -pEo -jGV -mDt -vFX -fjq -bQP -aFU -wGY -wds -gAb -suV -sXE -bQP -dPU -kYq -sAP -bQP -mAD -bLK -lOO -bQP -bQP -bQP -bQP -kIX -bQP -bLK -aiz -aiz -aiz -aiz -nOh -nOh -nOh -pjc -pjc -pjc -pjc -pjc -pjc -nOh -nOh -nOh -lUA -pjh -lUA -lUA -aaM -pBV -gUc -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -pBV -aaM -"} -(100,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ayw -laB -iKN -dwe -vVC -vVC -fdH -jLm -uxa -uSv -vNR -ayw -ymd -lny -vVC -dWZ -bzK -bYs -bYs -rTN -bYs -bYs -awh -vaK -awh -byk -awh -eBz -eBz -eBz -eBz -eBz -eBz -eBz -eBz -fqq -eBz -eBz -eBz -tJZ -mNl -jGV -mDt -uMY -lIr -bQP -aFF -wGY -wds -wds -suV -siK -bQP -iqi -kYq -awC -aCm -mAD -bLK -lOO -bQP -cUL -hRS -bQP -qxN -bQP -bLK -bLK -bLK -bLK -avk -nOh -iAl -lDL -wGT -cik -cik -wGT -cik -wGT -ygd -eUW -nOh -bLK -bLK -bQP -aaM -aaM -pBV -gUc -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -sEJ -pBV -aaM -"} -(101,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ayw -ufc -fsT -mbV -vVC -nLw -bYs -leH -uSv -uSv -vNR -slj -wnK -vVC -vVC -vVC -lKG -bYs -wYN -wYN -wYN -bYs -jPQ -vVC -kQO -vVC -sIC -eBz -cnf -cHW -cKw -iSL -bew -ivI -eXA -vpg -rTg -tVM -eBz -vrQ -pLt -jGV -aHV -mNl -dxC -bQP -aFG -wGY -wds -wds -suV -rsL -bQP -epa -kYq -awC -aCm -mAD -bLK -lOO -kzj -bmM -tql -bQP -qxN -bQP -bQP -bQP -bQP -bQP -bLK -nOh -uWm -lDL -cik -cwK -cik -cik -cwK -cik -ygd -ihi -nOh -avk -bQP -bQP -aaM -aaM -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -aaM -"} -(102,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bYs -iED -ufc -rKw -vVC -mYG -bYs -eIJ -gvA -voh -fEX -vXg -vVC -vVC -vVC -nZE -bGw -bYs -sot -oat -ocp -bYs -sGy -vVC -vaT -vVC -dhC -eBz -eUc -lMz -lMz -lMz -lMz -yfZ -hWU -vpg -pxm -ybm -eBz -dWP -eES -jGV -mDt -wkz -wkz -bQP -aFF -wGY -wds -wds -suV -siK -bQP -iqi -kYq -awC -aCm -mAD -bLK -eIe -bQP -gLC -jOW -bQP -qxN -qxN -iXt -qxN -qxN -bQP -bLK -nOh -iAl -lDL -cik -wGT -cik -cik -wGT -cik -ygd -eUW -nOh -bLK -bQP -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(103,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bYs -bYs -bYs -bYs -bYs -bYs -bYs -bYs -bYs -wOY -ssN -ayw -sBa -kjl -vVC -lvN -uxs -bYs -oat -oat -oat -bYs -bXZ -nDD -kQO -vVC -sIC -eBz -fIR -lMz -fWO -lMz -lMz -jvw -hWU -vpg -pxm -ybm -eBz -xAW -eUY -jGV -mDt -wkz -wkz -bQP -ncV -wGY -wds -wds -suV -avT -bQP -igo -kYq -awE -bQP -mAD -bLK -lOO -iuQ -bQP -bQP -bQP -bQP -bQP -bQP -bQP -qxN -bQP -bLK -nOh -uWm -lDL -cik -cwK -cik -cik -cwK -cik -ygd -ihi -nOh -bLK -bQP -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(104,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bYs -bYs -bYs -bYs -bYs -bYs -vNg -bYs -bYs -bYs -bYs -bYs -bYs -bYs -awh -ssh -ulK -hLp -xQs -eBz -rky -rky -rky -rky -rky -rky -hWU -vpg -cCj -mYJ -eBz -aDb -smt -jGV -kbw -smt -aDb -bQP -bQP -lNN -oIw -oIw -xYt -bQP -bQP -tBa -avU -bQP -bQP -mAD -bLK -lOO -wCm -tRw -tRw -tRw -vMZ -tRw -tRw -nfY -aJH -nfY -avk -nOh -iAl -lDL -wGT -cik -wGT -cik -cik -wGT -ygd -eUW -nOh -bLK -bQP -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(105,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bYs -mPL -kbh -xOs -vxK -vxK -kbh -cfh -eBz -tAC -wCA -xzI -ahp -ahp -ahp -ahp -nnS -avR -jQJ -pCe -pCe -pCe -pCe -pCe -kJE -vpg -oVZ -tEy -eBz -avs -rHn -ouQ -ouQ -ouQ -iqR -iqR -vnx -iqR -ouQ -ouQ -iqR -iqR -vnx -iqR -ouQ -wXH -qSn -edR -bLK -lOO -wCm -tRw -tRw -tRw -tRw -tRw -tRw -nfY -eBX -nfY -bLK -nOh -nOh -nOh -eQs -eQs -eQs -eQs -eQs -eQs -nOh -nOh -nOh -bLK -bQP -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(106,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ayw -iRr -vVC -vVC -vVC -vVC -vVC -bFS -eBz -kOH -xzI -aqu -aqu -aqu -aqu -aqu -apU -tKY -vpg -vpg -vpg -vpg -vpg -vpg -vpg -vpg -vpg -vpg -eBz -avW -jEA -kvZ -kvZ -kvZ -kvZ -kvZ -kvZ -kvZ -kvZ -kvZ -kvZ -iTm -iTm -iTm -iTm -typ -ayG -mAD -wCA -lOO -gZV -nfY -nfY -nfY -nfY -tRw -tRw -gYa -aJH -nfY -bLK -lqP -aDM -nOh -mMJ -dUW -mMJ -mMJ -dUW -eic -pjd -hpk -uDS -hZq -bQP -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -mHT -cZw -cSV -cZw -mHT -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(107,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ayw -pwd -vVC -vVC -vVC -vVC -vVC -tqt -eBz -tAC -ahe -aqu -fOK -ifi -ujM -ifi -xps -rvN -iCW -wnl -aUh -mVZ -mVZ -vpg -mVZ -mVZ -vpg -vpg -tRt -axR -mCC -szK -szK -szK -gdz -szK -szK -szK -kEp -bLK -min -min -min -min -rvE -typ -bLK -mAD -bLK -eIe -nfY -tRw -tRw -joU -gva -tRw -tRw -nfY -aJH -nfY -nfY -nfY -jGV -nOh -biK -biK -biK -biK -biK -biK -nOh -mDt -bQP -bQP -bQP -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -mHT -mHT -ogF -hoY -xup -mHT -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(108,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ayw -jhw -vVC -vVC -vVC -vVC -vVC -aBO -eBz -eBz -ayK -aqu -lQy -eBz -eBz -eBz -eBz -eBz -eBz -eBz -cov -eCE -eOT -vpg -eCE -eOT -vpg -vpg -tRt -ahq -nMu -nmV -nmV -nmV -aEP -nmV -nmV -nmV -wHR -iTm -gdz -gdz -gdz -gdz -gdz -qci -aCm -oPz -lMn -nZy -nfY -tRw -tRw -gbB -lkT -tRw -tRw -nfY -aJH -aJH -hUd -nfY -lqP -off -qXu -off -off -off -off -qXu -off -uDS -bQP -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -mHT -nzt -nbD -hoY -xup -mHT -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(109,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -iZt -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bYs -nfl -doU -csc -csc -csc -hpB -tKK -eBz -eAg -ahe -aqu -tFj -qcr -jcv -aDB -eHe -bpk -jcv -rRr -vzV -vdh -vdh -vpg -vdh -vdh -vpg -mVZ -lVY -ahq -ahr -aEP -aEP -aEP -aEP -aEP -aEP -aEP -dob -psL -bQP -jWI -lfH -aCm -lfH -bQP -bQP -bQP -xyx -bQP -nfY -daH -tRw -aKZ -aKZ -nfY -nfY -nfY -xKM -aJH -gyn -nfY -nfY -nfY -nfY -nfY -nfY -nfY -nfY -bQP -bQP -bQP -bQP -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -mHT -mHT -mHT -mHT -mHT -mHT -aaM -oID -hoY -hoY -hoY -cVA -mHT -aaM -mHT -mHT -mHT -mHT -mHT -mHT -mHT -mHT -mHT -mHT -aaM -aaM -aaM -"} -(110,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bYs -bYs -bYs -nQb -aiy -fsy -bYs -bYs -eBz -vUv -ahe -aqu -tFj -qcr -jcv -lMz -lMz -lMz -jcv -psh -fOf -vpg -vpg -vpg -vpg -vpg -vpg -igD -eBz -dHY -nMu -wBW -dNv -wBW -aEP -wBW -dNv -wBW -wHR -xVe -bQP -nGO -axR -kvZ -typ -uFb -bQP -iXt -qxN -ggE -nfY -kbT -tRw -aMs -geT -tRw -tRw -nfY -aJH -eBX -uGz -dBV -aJH -aJH -aJH -aJH -bcu -aJH -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -mHT -oWB -hoY -mqC -vQu -mHT -aaM -mHT -cUR -hQI -hoY -xup -mHT -aaM -mHT -wHx -aZd -vyq -fGK -hwV -kWS -mYp -aZd -mHT -aaM -aaM -aaM -"} -(111,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bYs -bYs -bYs -bYs -bYs -aaM -eBz -tAC -ahe -aqu -tFj -qcr -jcv -lMz -lMz -lMz -jcv -xkI -gwf -vpg -aXz -dOH -mUH -vpg -vpg -wNE -eBz -fwF -tNJ -wTQ -bQP -bQP -liD -bQP -bQP -tPb -xTK -cRB -bQP -oel -axR -kvZ -typ -uOR -bQP -qxN -qxN -wlL -nfY -aMW -tRw -aMt -aKx -tRw -tRw -nfY -nfY -nfY -nfY -nfY -eBX -aJH -rDF -tsj -nfY -aJH -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -mHT -ygE -hoY -hoY -fwX -mHT -mHT -mHT -mHT -ogF -hoY -xup -mHT -mHT -mHT -ikG -aZd -mGk -fTG -mVd -iCJ -tWl -aZd -mHT -aaM -aaM -aaM -"} -(112,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aax -aax -aax -aax -aax -aax -aax -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -eBz -bZQ -aqu -tFj -qcr -jcv -lMz -lMz -lMz -jcv -hmF -xhC -vpg -aXz -eCE -mUH -kOI -hjw -ijf -eBz -qqp -qqp -cTw -cTw -cEa -kYq -tbP -yao -yao -laL -laL -bQP -bQP -qhc -kvZ -typ -vxh -bQP -qxN -nfY -nfY -nfY -nfY -nfY -nfY -aKZ -aBD -otu -nfY -eDr -kdm -rcd -nfY -nfY -nfY -nfY -nfY -nfY -eBX -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -mHT -mHT -mHT -mHT -mHT -mHT -mHT -tyg -hoY -hoY -gPm -mHT -mHT -mHT -mHT -cZw -cSV -cZw -mHT -mHT -mHT -cNm -aZd -wHi -xGe -qyx -pzh -vXT -aZd -mHT -aaM -aaM -aaM -"} -(113,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -tAC -ahe -aqu -lQy -eBz -eBz -aJG -kgi -bJH -eBz -eBz -hog -fRm -eBz -wzE -wzE -wzE -jAK -wzE -wZg -nli -kop -tix -iIp -kYq -kYq -kYq -vCY -lWl -hEz -avo -sXo -bQP -qmq -kvZ -typ -vMG -bQP -qxN -nfY -ciV -ciV -ciV -ciV -nfY -kDN -aMV -uMb -aNJ -uMb -aMT -kDN -dtU -qfW -otY -vhx -aQi -nfY -aJH -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -mHT -mHT -qWn -qWn -qWn -mHT -mHT -hmd -hoY -hoY -gPm -mHT -mHT -mHT -mHT -eYC -hoY -hax -mHT -mHT -mHT -uJY -aZd -vTJ -hNI -bnB -sRZ -xWe -aZd -mHT -aaM -aaM -aaM -"} -(114,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -vUv -ahe -aqu -apU -eBz -clb -lMz -bkg -lMz -kgi -crg -kgi -lMz -eBz -pQp -gdk -kIY -hAS -wzE -jja -nli -etl -qwZ -kRY -kYq -kYq -kYq -tAA -nZv -vbT -avo -njP -bQP -qza -kvZ -typ -uOR -bQP -qxN -nfY -ciV -nII -tBQ -lfg -ksI -uEt -aMW -aMW -pyg -aMW -aMW -aMT -sdz -tRw -tRw -tRw -tRw -gND -aJH -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -mHT -fUN -qxn -qxn -qxn -pEu -mHT -uCJ -hoY -hoY -hoY -sQf -cZw -hbO -giw -nbD -hoY -sqj -giw -fDg -cZw -aZd -aZd -kge -bnB -bnB -twm -kTS -aZd -mHT -aaM -aaM -aaM -"} -(115,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aax -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -eAg -ahe -aqu -apU -eBz -evC -lMz -ufR -lMz -lMz -lMz -lMz -lMz -eBz -foQ -ppa -fso -hAS -wzE -wZg -nli -kop -tix -kxg -xkH -czf -xkH -kTE -lWl -hEz -avo -sXo -bQP -qAq -kvZ -typ -vxh -bQP -qxN -nfY -ciV -aIU -tBQ -lfg -ksI -aMH -aMW -aMW -aNK -aMW -aMW -tud -iXl -tRw -tRw -tRw -aQj -nfY -nfY -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -mHT -kqF -qxn -qxn -qxn -qxn -sMB -hoY -hoY -hoY -hoY -hoY -gXe -hoY -hoY -hoY -hoY -hoY -hoY -hoY -wRB -mDn -aZd -uRD -bnB -bnB -lvr -cIl -aZd -mHT -aaM -aaM -aaM -"} -(116,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -eBz -ahe -aqu -apU -pAs -sLb -lMz -kgi -kgi -lMz -lMz -cCN -eBz -eBz -pQp -fis -fQc -hAS -wzE -wzE -nvO -nvO -giS -cTw -mtf -tyu -bQP -yao -ryr -hmc -hmc -bQP -bQP -qGE -kvZ -typ -vMG -bQP -qxN -nfY -ciV -ciV -ciV -ciV -pMG -aMH -aMW -tud -gZV -aNX -aMW -tud -nfY -nfY -hDo -nfY -nfY -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -mHT -huK -qxn -qxn -qxn -mHT -mHT -lPl -mjw -mjw -mjw -xJL -cZw -tjT -xjK -xjK -xjK -xjK -xjK -tjT -cZw -aZd -aZd -nFu -iXy -bnB -bUC -cFg -aZd -mHT -aaM -aaM -aaM -"} -(117,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -tAC -ahe -aqu -apU -aex -lMz -lMz -kgi -kgi -lMz -lMz -deb -eBz -sYm -amr -amr -amr -hAS -ism -wzE -cyX -tSr -pKz -nCJ -cww -eLs -qVd -nCJ -pKz -syP -hAL -bQP -bIt -axR -kvZ -typ -uOR -bQP -kIX -nfY -nfY -nfY -nfY -nfY -nfY -aMJ -aMW -aNs -nfY -aNY -aNY -aNY -nfY -aOl -iAO -aPO -fbo -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -mHT -wmP -qxn -qWn -qWn -mHT -rDb -qxn -qxn -qxn -xmu -mHT -mHT -mHT -cZw -cZw -cZw -cZw -cZw -mHT -mHT -uJY -aZd -jhg -ucm -bnB -bnB -uhU -aZd -mHT -aaM -aaM -aaM -"} -(118,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -eaA -gyi -gyi -gyi -gyi -gyi -gyi -gyi -wap -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -vUv -ahe -aqu -apU -avR -eBh -lMz -ufR -lMz -lMz -lMz -dGn -eBz -ccs -amr -amr -qHR -hAS -ivL -wzE -nEC -hyn -qSC -aCG -iUA -bZv -iGi -aCG -hYX -hyn -avr -bQP -ooJ -axR -kvZ -typ -vWR -bQP -qxN -nfY -ciV -ciV -ciV -ciV -pMG -aMH -aMW -tud -nfY -eRq -bbH -aOz -wlw -iAO -iAO -dWO -aQk -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -mHT -mHT -bEa -mHT -mHT -mHT -opB -qxn -qxn -qxn -hlL -mHT -xSv -xSv -xSv -xSv -xSv -xSv -xSv -xSv -mHT -aZd -aZd -gMM -gGx -bnB -umQ -uhU -aZd -mHT -aaM -aaM -aaM -"} -(119,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -ktj -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -tAC -iXX -ifi -xps -eBz -gsY -gfu -bDu -fNc -pmD -kgi -dUS -eBz -eVL -amr -amr -amr -hAS -ivL -mbM -sMS -sMS -wNL -aCG -iUA -ccI -iGi -aCG -yjf -dKP -dKP -aCm -oTX -ppV -aCm -ppV -wfA -bQP -qxN -nfY -ciV -nII -tBQ -lfg -ksI -aMH -aMW -tud -ker -jvF -bbH -aOz -gyj -tqK -iAO -dWO -iAO -aSf -aQS -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -mHT -rph -eKz -wzv -nuN -mHT -tBi -qxn -qxn -qxn -qxn -cZw -xSv -aaM -aaM -aaM -aaM -aaM -aaM -xSv -mHT -aZd -aZd -cZW -jdE -bnB -bnB -tqU -aZd -mHT -aaM -aaM -aaM -"} -(120,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -eBz -llv -hGA -hGA -hGA -llv -eBz -eBz -avR -sbc -avR -eBz -eBz -eBz -eBz -eBz -eBz -eBz -eBz -eBz -wzE -pQp -gdk -fTt -hAS -ivL -mbM -hxw -vyn -iGi -aCG -iUA -fLi -iGi -aCG -iUA -vyn -iXx -aCm -phW -gZQ -xIt -jVH -xdo -bQP -aze -nfY -ciV -aIU -tBQ -lfg -ksI -aMH -aMW -aNt -nfY -eRq -bbH -aOz -iLT -iAO -iAO -dWO -aQm -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -mHT -unk -eKz -eKz -eKz -gOp -qxn -cJm -mwJ -cJm -qxn -cZw -xSv -aaM -aaM -aaM -aaM -aaM -aaM -xSv -mHT -aZd -aZd -wLF -wvh -iAG -pjH -fVh -aZd -mHT -aaM -aaM -aaM -"} -(121,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -aBJ -aGI -tdl -cdV -tdl -cFZ -sjG -sjG -sKg -aqu -wNC -eBz -awS -awS -awS -awS -awS -eBz -wne -wne -wzE -foQ -ppa -gcj -hAS -ivL -mbM -rvz -rvz -wNL -aCG -iUA -bUd -iGi -aCG -yjf -sUx -sUx -aCm -phW -awK -axs -rwk -xdo -bQP -azf -nfY -ciV -ciV -ciV -ciV -nfY -aMy -vhv -aNv -nfY -mfx -mfx -mfx -nfY -lLG -iAO -kCR -ccF -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -mHT -mHT -mHT -unk -oZr -oZr -eDn -mHT -oqo -cJm -fkH -cJm -qxn -cZw -xSv -aaM -aaM -aaM -aaM -aaM -aaM -gdf -mHT -mHT -mHT -cSV -cSV -cSV -cSV -cSV -mHT -mHT -aaM -aaM -aaM -"} -(122,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -eBz -bag -tdl -cdV -tdl -sFB -uEJ -uEJ -mKe -aqu -puj -vDk -awS -awS -awS -awS -awS -eBz -wne -wne -wzE -pQp -fis -gpo -hAS -ivL -wzE -nKX -hNX -hXN -guX -bbD -vbU -aDo -oSo -xoL -sDF -nKX -wzE -wzE -wzE -wzE -wzE -wzE -wzE -rYv -nfY -nfY -nfY -nfY -nfY -nfY -nfY -nfY -nfY -nfY -boM -aOk -kBz -nfY -nfY -hDo -nfY -nfY -nfY -nfY -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -mHT -mrJ -mHT -mHT -cZw -cZw -cZw -mHT -tZF -cJm -bfa -cJm -pOz -cZw -xSv -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(123,1,1) = {" -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aax -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -eBz -bYv -tdl -cdV -tdl -qHs -uEJ -uEJ -mKe -aqu -puj -vDk -awS -awS -awS -awS -awS -eBz -wne -wne -wzE -wzE -wzE -wzE -tsH -wzE -wzE -wzE -wzE -mbM -mbM -afm -afm -afm -mbM -mbM -wzE -wzE -wzE -ddK -xFd -xbK -rFJ -rYv -aJH -cHx -aJH -aJH -aJH -aJH -aJH -aJH -siZ -pTg -aKZ -enD -lRR -mvz -pvQ -bPP -ndV -ndV -nfY -qTY -qzr -qzr -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -mHT -xHT -bTB -pEO -pEO -pEO -pEO -mHT -mHT -cZw -cZw -cZw -mHT -mHT -gdf -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(124,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -eBz -bYv -tdl -cdV -tdl -cFZ -pWc -pWc -sKg -aqu -puj -vDk -awS -awS -awS -awS -awS -eBz -eyj -wne -wne -qNZ -cgd -mBc -aec -cYT -rGt -rGt -gmv -nHm -sXN -aec -aec -aec -pdo -jdB -xrK -aGc -dGi -spG -kDo -xkq -rMa -wzE -aJH -aKn -aKD -aLg -oPB -tXm -aMf -wbN -siZ -aJH -qce -aMr -aOa -aOa -aOa -aOa -aOa -aOa -aPQ -eGO -jDi -lzo -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -mHT -dTp -mHT -gVK -xSv -aaM -aaM -aaM -mHT -xSv -xSv -xSv -mHT -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(125,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aen -jMb -jMb -jMb -utk -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -eBz -bYv -tdl -cdV -tdl -cFZ -sjG -sjG -sKg -aqu -puj -vDk -awS -awS -awS -awS -awS -eBz -wne -wne -ngm -dgF -aVG -fSX -xFq -btV -aVL -fYX -xFq -aOC -xFq -xFq -xFq -xFq -sxl -smn -wgf -aWH -aWU -aXa -aXe -aXh -sFY -wzE -aJH -oxr -hFS -aLh -aLE -aLI -lHt -fPE -siZ -aJH -aKZ -pDr -aOa -jxk -icc -icc -icc -icc -nfY -aOA -aMW -aMW -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -mHT -mHT -mHT -oci -qoa -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(126,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aen -aen -aen -aen -aaB -aaB -aaB -utk -utk -utk -utk -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aax -aax -aax -aax -aax -aax -aax -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -eBz -bYv -tdl -cdV -tdl -sFB -uEJ -uEJ -mKe -aqu -puj -ifu -awS -awS -awS -awS -awS -eBz -wne -wne -cJl -vAw -aFZ -mjy -aWu -oCm -aWu -aWu -aWu -aWu -aWu -aVP -aWu -xFq -txn -aWu -aWu -xFU -uHw -dmL -aXf -aXi -ukL -wzE -aJH -tZN -aKE -iOA -tIB -pVW -aMg -aMz -siZ -aJH -aKZ -kXP -aOa -uPQ -pSM -tjM -tjM -bUn -nfY -vmB -nxK -nxK -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -mHT -mHT -wJx -pCq -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(127,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aen -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -utk -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -eBz -bYv -tdl -cdV -tdl -qHs -uEJ -uEJ -mKe -aqu -wNC -eBz -eBz -eBz -eBz -eBz -eBz -eBz -wne -mja -aVC -aFu -eZw -lqt -gey -aOX -aVU -aWc -aWc -aWc -aWc -aWm -aWu -xFq -dvz -isd -dnd -dXJ -aWV -aWI -bMd -jON -wne -wzE -aJH -vNl -nzH -ear -ear -lXE -rFS -aMA -aKZ -aKZ -aKZ -kXP -aOa -fit -wCy -wCy -wCy -iBu -nfY -aQn -cvx -aQW -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -mHT -mHT -wJx -mfU -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(128,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aen -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -utk -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -eBz -bYv -tdl -cdV -tdl -cFZ -pWc -pWc -sKg -aqu -puj -ifu -kBr -kBr -kBr -kBr -kBr -eBz -wne -weL -aFn -aFz -aGN -qlN -aWu -aVH -kYV -aWu -aWu -aWu -aWu -aWu -aWu -rvq -rAH -aIg -oGi -oGi -lje -bJf -cRn -xGb -wne -wzE -aJH -jok -aKG -aKK -aKK -aKK -urj -gdU -aBl -aMW -afp -weB -aOa -uPQ -vWo -vWo -vWo -tbK -nfY -nfY -nfY -nfY -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -mHT -mHT -hTi -nnl -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(129,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aen -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -utk -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -eBz -bYv -tdl -cdV -tdl -cFZ -sjG -sjG -sKg -aqu -puj -sVJ -sVJ -sRi -nIu -sRi -kBr -eBz -wne -gMq -aFq -aFA -aGO -aGO -aWu -aVH -aVV -aWd -aWd -aWd -aWd -aWn -aWu -xFq -fmE -aWv -aWv -aWv -aWW -hHX -aXg -wne -wne -wzE -aJH -isr -lXR -wbd -wbd -syV -wTI -isr -aKZ -aKZ -aKZ -kXP -aOa -uPQ -tjM -tjM -tjM -rIN -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bLO -dZm -eqb -fvQ -bWj -dZm -eqb -fvQ -rch -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(130,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aen -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -utk -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -eBz -bYv -tdl -cdV -tdl -sFB -uEJ -uEJ -mKe -aqu -puj -sVJ -sVJ -sRi -sRi -kIO -kBr -eBz -wne -lCv -aFs -aFB -aWu -aWu -gey -aVH -aVU -aWc -aWc -aWc -aWc -aWm -aWu -xFq -cCU -lSL -jwX -pLp -tRH -nUO -cjZ -wne -wne -wzE -aJH -aKo -aKI -ear -ear -lXE -oPE -aKo -siZ -aJH -aKZ -kXP -aOa -fit -wCy -wCy -wCy -dqT -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bWj -dZx -etD -fzQ -bWj -dZx -etD -fzQ -bWj -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(131,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aen -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -utk -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -eBz -bYv -tdl -cdV -tdl -qHs -uEJ -uEJ -mKe -aqu -puj -sVJ -sVJ -sRi -sRi -sRi -kBr -eBz -wne -wEM -mUx -hYV -aHM -aHM -aWu -aVH -dLD -aWu -aWu -aWu -aWu -aWu -aWu -gAT -uMX -aXb -aWO -aWp -aWX -hgr -hOe -wne -wne -wzE -aJH -isr -njm -aKK -htp -aKK -aTs -isr -siZ -aJH -qce -pDr -aOa -uPQ -vWo -vWo -vWo -rme -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bWj -fEY -gNQ -hru -bWj -fEY -fEY -nNG -bWj -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(132,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aen -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -utk -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -eBz -bYv -tdl -cdV -tdl -cFZ -pWc -pWc -sKg -aqu -puj -sVJ -sVJ -sRi -ttl -sRi -kBr -eBz -wne -wUa -gug -kQY -kJM -nuc -aWu -aVH -aVV -aWd -aWd -aWd -aWd -aWn -aWu -xFq -iqr -aWT -hrI -aVX -fmH -ljc -bDq -pHg -wne -wzE -aJH -aKo -lXR -wbd -wbd -syV -oPE -aKo -siZ -aJH -aKZ -kXP -aOa -uPQ -tjM -tjM -tjM -sxq -nfY -nfY -nfY -nfY -nfY -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bWj -fEY -fEY -hsQ -jBI -kIy -fEY -fEY -bWj -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(133,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aen -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -utk -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -eBz -bYv -tdl -cdV -tdl -cFZ -sjG -sjG -sKg -aqu -puj -eBz -kBr -kBr -kBr -kBr -kBr -eBz -wne -gYU -aFO -tCM -gES -iHN -aXq -aVH -aVU -aWc -aWc -aWc -aWc -aWm -aWu -xFq -bPc -aGQ -aGQ -aHN -upQ -tTf -uFL -ibb -wne -wzE -aJH -isr -aKI -ear -ear -lXE -wTI -isr -aKZ -aKZ -aKZ -kXP -aOa -fit -wCy -wCy -wCy -tmP -nfY -ppZ -aOB -aRa -ydO -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bLO -dZm -eqb -fvQ -bWj -bWj -fFJ -bWj -bWj -bWj -fFJ -bWj -bWj -dZm -eqb -fvQ -rch -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(134,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aen -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -utk -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -eBz -bYv -tdl -cdV -tdl -sFB -uEJ -uEJ -mKe -aqu -wNC -eBz -eBz -eBz -eBz -eBz -eBz -eBz -wne -wne -aDK -sgv -sYx -lqt -aWu -aVH -kYV -aWu -aWu -aWu -aWu -aWu -aWu -xFq -bPc -wMw -aGQ -aHN -fzh -hQa -rSM -xun -wne -wzE -aJH -jok -eta -aKK -aKK -aKK -uVh -gdU -aBl -aMW -afp -weB -aOa -uPQ -vWo -vWo -vWo -iDT -nfY -ppZ -aOB -nfY -nfY -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bLO -bWj -bWj -dZx -etD -fzQ -bWj -gnj -eHN -hNt -jCO -eHN -eHN -ohD -bWj -dZx -etD -teq -bWj -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(135,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aen -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -utk -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -eBz -bYv -tdl -cdV -tdl -qHs -uEJ -uEJ -mKe -aqu -qmz -kRu -avR -gqa -bGR -xTG -ntE -eBz -wne -wne -aRB -lkN -aIf -wGN -xFq -aVJ -aVV -xSL -aWd -oap -aWd -uZp -aWC -mbk -lhJ -aWF -aWF -iAt -pcu -aXc -plM -omw -ukL -wzE -aJH -isr -lXR -wbd -wbd -syV -cZH -isr -aKZ -aKZ -aKZ -kXP -aOa -aCj -vBe -vBe -vBe -vBe -nfY -ppZ -aOB -aRb -iKk -nfY -aaM -aaM -aaM -aaM -aaM -wmL -wmL -wmL -wmL -cDK -dcT -cDK -eby -eum -fEY -bWj -gpl -gRJ -fQC -eHN -fNk -fNk -fNk -fFJ -fEY -fEY -teX -bWj -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(136,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aen -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -utk -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -eBz -bYv -tdl -cdV -tdl -cFZ -pWc -pWc -sKg -aqu -aqu -aqu -pzN -sRi -rQi -kNJ -xTG -eBz -wne -wne -wne -eqs -xjr -hIp -aWB -aVK -aWB -aVT -aWB -aVT -aWB -aVT -aWB -aVT -mic -aWD -rkX -nis -aWZ -aXd -qdJ -ccN -wne -wzE -aJH -fwz -oiW -aLk -aLG -aLJ -iGD -cYR -siZ -aJH -qce -aNM -aOa -aOa -aOa -aOa -aOa -aOa -aPM -aOB -aOB -nfY -nfY -nfY -aaM -aaM -aaM -aaM -aaM -wmL -bLO -bWj -jcG -bWj -bWj -bWj -bWj -bWj -fFJ -bWj -gpZ -eHN -eHN -fNk -kLE -bWj -bWj -bWj -bWj -bWj -bWj -bWj -jcG -jcG -jcG -bWj -rch -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(137,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aen -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -utk -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -eBz -bYv -tdl -cdV -tdl -dTe -hrP -kRu -nCc -aqu -aqu -aqu -avR -sRi -rQi -sRi -apW -eBz -eyj -wne -wne -wne -wne -exa -hEu -mNQ -oRm -vkY -oQu -qND -krK -myc -uTe -fuj -thI -aka -wpA -wne -wne -mnU -kdz -kbl -wne -wzE -aJH -uyK -wUv -lQQ -pgL -uon -exn -qnL -siZ -aJH -aKZ -enD -xfN -wbI -rDl -wRy -gov -qdi -nfY -sIe -aOB -mMS -tRu -nfY -aaM -aaM -aaM -aaM -aaM -wmL -bWj -clq -cor -cqS -cqS -cqS -edG -eEO -fNk -fNk -eHN -eHN -hPp -fNk -kMh -bWj -okn -rcz -rcz -sbk -bWj -ukd -vWz -qDS -qDS -xEw -bWj -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(138,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aen -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -utk -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -eBz -bYv -tdl -cdV -tdl -dTe -ixW -llN -llN -llN -qss -aqu -ayM -sRi -sRi -sRi -sRi -eBz -wne -wne -wne -wne -wne -wne -wne -wne -wne -wne -wne -wne -wne -wne -wne -wne -wne -wne -wne -wne -wne -wne -wne -wne -wne -wzE -aJI -aJH -aJH -aJH -aJH -aJH -aJH -aJH -siZ -aJI -nfY -nfY -aKZ -aKZ -aKZ -aKZ -aKZ -nfY -nfY -aKZ -aKZ -nfY -nfY -nfY -aaM -aaM -aaM -aaM -aaM -wmL -jcG -cor -cqS -cDL -dft -dKp -bWj -bWj -bWj -bWj -bWj -bWj -bWj -jCR -bWj -bWj -okP -okP -okP -okP -bWj -ukS -wba -wgo -wgo -wgo -jcG -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(139,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aen -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -utk -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -eBz -llv -hGA -hGA -hGA -llv -eBz -bQM -nFm -oBd -sNi -eWB -avR -gqa -loL -gqa -gqa -eBz -wzE -aCR -aCR -aCR -aCR -aCR -aCR -aCR -aCR -aCR -aCR -aCR -aCR -aCR -aCR -aCR -aCR -aCR -aCR -aCR -aCR -aCR -aCR -aCR -wzE -wzE -nfY -aKp -aKp -aKp -aKp -aKp -aKp -aKp -aKp -nfY -nfY -nfY -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -jcG -cor -cqS -cEO -cqS -cqS -bWj -eHN -eHN -eHN -eHN -bWj -idk -jEg -kNH -bWj -omT -orV -orV -szg -bWj -upy -wba -wGD -wGD -wGD -jcG -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(140,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aen -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -utk -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -eBz -eBz -eBz -eBz -bGo -eBz -eBz -eBz -eBz -eBz -eBz -eBz -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -jcG -coC -cor -cKI -cqS -cqS -bWj -eHN -fQC -eHN -eHN -gUK -ieM -qDS -kQj -bWj -orV -orV -rPS -rPS -bWj -uql -wba -wgo -wgo -xFV -bWj -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(141,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aen -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -utk -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -bWj -coK -crr -crr -dvq -dKC -bWj -eHN -eHN -eHN -eHN -gUK -ieM -qDS -kVX -bWj -jcG -rcJ -jcG -jcG -bWj -uqI -wba -qDS -qDS -qDS -jcG -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(142,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aen -aaB -aaB -aaB -aaB -ahf -aaB -aaB -aaB -aaB -utk -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -bWj -bWj -bWj -bWj -bWj -dKS -bWj -eHN -eHN -eHN -eHN -gYs -igQ -qDS -kYo -mzJ -jEg -qDS -jEg -jEg -tfe -utl -wba -wgo -wgo -wgo -jcG -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(143,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aen -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -utk -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -jcG -iAR -izI -jcG -mLp -qDS -eei -eKl -eKl -eKl -eKl -bWj -ihj -qDS -ldi -mFI -ozQ -qDS -ozQ -ozQ -tho -utl -wba -wGD -wGD -wGD -jcG -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(144,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aen -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -utk -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -jcG -kaz -orV -cLT -mLp -qDS -bWj -eLv -eLv -eLv -eLv -bWj -igQ -qDS -kVX -bWj -bWj -rdA -bWj -bWj -bWj -uOM -wdJ -wgo -wgo -wgo -jcG -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(145,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -bWj -bWj -bWj -bWj -mLp -qDS -bWj -pGT -fRx -gdM -grY -gYQ -ieM -qDS -kVX -bWj -owo -orV -rQb -sBC -bWj -uPw -qDS -qDS -qDS -dML -bWj -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(146,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -jcG -hkT -izI -jcG -mLp -qDS -bWj -eLv -fSY -gkg -grY -gYV -ieM -qDS -kVX -bWj -oyW -rmH -bWj -sBK -bWj -uRY -wgo -wIL -wgo -qDS -jcG -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(147,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -jcG -kaz -orV -cMK -mLp -dML -bWj -eLv -eLv -eLv -eLv -gYs -mLp -qDS -kQj -bWj -bWj -bWj -bWj -bWj -bWj -uSA -wgo -wKo -wgo -xEw -jcG -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(148,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -bWj -bWj -bWj -bWj -mLp -qDS -bWj -bWj -bWj -bWj -bWj -bWj -ihz -qDS -kVX -mGe -tYm -rFl -rQs -sDs -bWj -uSG -wha -wKL -wgo -xGF -bWj -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(149,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -jcG -iAR -izI -jcG -mLp -qDS -efQ -eLM -bWj -glx -izx -bWj -ijz -qDS -kVX -bWj -ozg -tYm -tYm -sEk -bWj -bWj -bWj -bWj -bWj -bWj -rQH -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(150,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -jcG -kaz -orV -mny -dyS -ozQ -ozQ -ozQ -fTk -qDS -qDS -haW -ijL -ozQ -loa -bWj -oGs -tYm -tYm -sFL -bWj -uTK -whZ -wMn -xmy -bWj -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(151,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -bWj -bWj -bWj -bWj -bWj -dOm -bWj -eTj -fTp -qDS -qDS -bWj -bWj -bWj -bWj -bWj -oNv -tYm -tYm -sMK -bWj -uWV -vgD -vgD -vgD -jcG -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(152,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -lLs -aaB -aaB -aaB -aaB -aaB -aaB -aaB -pKM -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -jcG -coX -qDS -cNL -bWj -dPP -eit -eTq -fTE -qDS -qDS -bWj -iqs -jGr -luW -mIy -tYm -tYm -tYm -tYm -tFz -vgD -vgD -wOb -xrF -jcG -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(153,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -gyi -gyi -gyi -gyi -gyi -gyi -gyi -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -jcG -cpE -qDS -qDS -mOD -dVj -oEI -pIK -fTS -qDS -dML -bWj -rUE -jJe -lvf -tYm -tYm -rGE -rGE -rGE -bWj -vgE -vgD -vgD -xsL -jcG -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(154,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -wmL -wmL -jcG -cpV -qDS -mpt -bWj -dVZ -oEL -eTq -fVC -qDS -qDS -bWj -rUR -jMp -lvf -tYm -tYm -rGE -rRg -rGE -bWj -vih -wmg -vgD -xsV -bWj -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(155,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -akF -pUN -bWj -bWj -bWj -bWj -bWj -dOm -bWj -eVj -fTp -qhw -qhw -bWj -bWj -sNV -lEX -lEX -lEX -sNV -bWj -bWj -bWj -bWj -bWj -bWj -bWj -bWj -xkw -xkw -vwU -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(156,1,1) = {" -aab -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aab -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -pUN -ala -lgu -lgu -vwg -pUN -mVx -dWj -pUN -eZg -pWv -tYp -tYp -reg -iqu -tYp -tYp -tYp -tYp -tYp -rTZ -eZg -tFU -vjJ -wpg -wOo -xuH -lgu -lgu -vwg -xkw -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(157,1,1) = {" -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -xkw -aED -bMc -lgu -crN -xkw -naC -pUU -cce -pUU -qav -vcK -vcK -vcK -vcK -vcK -vcK -vcK -vcK -vcK -von -pUU -tGD -vkb -wpw -lgu -lgu -lgu -lgu -nGk -xkw -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(158,1,1) = {" -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -xkw -aRT -bOg -keE -lgu -xkw -nco -nAY -mqD -pUU -qav -vcK -vcK -vcK -vcK -vcK -vcK -vcK -vcK -vcK -von -pUU -tIa -cvf -lgu -lgu -xuV -xIi -xUV -wrQ -xkw -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(159,1,1) = {" -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -xkw -aZA -bRm -lgu -lgu -pUN -nek -pUN -pUN -faD -qav -vcK -qEL -hcI -iuk -jOt -lYJ -mKc -pqq -vcK -von -sRY -pUN -pUN -wpI -wVd -pUN -wpI -wVd -pUN -pUN -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(160,1,1) = {" -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -pUN -bcv -lgu -lgu -cvf -cNN -lgu -lgu -nek -pUU -qav -vcK -gsr -rhg -saF -jRj -mas -mNk -psm -vcK -von -tcy -pUN -vlD -wsd -wWK -xvs -xIw -eGe -sBD -pUN -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(161,1,1) = {" -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -pUN -pUN -jeJ -pUN -pUN -pUN -pUN -pUN -pUN -pMW -qav -vcK -gsJ -rhL -iVf -kaw -mbj -mNx -pxn -vcK -von -pUU -tJm -pUU -pUU -pUU -pUU -pUU -pDO -uFz -xkw -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(162,1,1) = {" -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -pUN -iPs -bSI -khe -pUN -cPn -dCx -dXz -pUN -pNC -qav -vcK -gwC -riT -sfb -sOx -mbZ -mPM -pxq -vcK -von -pUU -tJm -pUU -pUU -pUU -pUU -pUU -bTm -eTK -xkw -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(163,1,1) = {" -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -pUN -bfv -bfv -bfv -pUN -cRg -nDf -dXB -emM -von -qav -vcK -gwQ -rkf -iZP -sPr -mcM -mSH -pBg -rHF -von -pUU -tJm -pUU -pUU -pUU -pUU -pUU -pUU -rhe -xkw -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(164,1,1) = {" -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -xkw -nDf -nDf -nDf -lsb -cSw -nDf -nDf -emM -von -qav -vcK -gxW -rkk -tqh -toZ -tqh -ubk -pCB -rKA -von -pUU -tJm -pUU -pUU -pUU -pUU -pUU -pUU -wXM -xkw -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(165,1,1) = {" -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -xkw -iPK -nDf -nDf -lsb -nDf -dDk -nDf -oPw -von -qav -vcK -gEL -hfT -jzD -toZ -mgN -mSN -uxh -rLu -von -pUU -pUN -vnq -wsA -wWZ -xvM -xMn -gkV -uvI -pUN -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(166,1,1) = {" -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -xkw -nDf -nDf -nDf -lsb -cSw -nDf -nDf -oPw -von -qav -vcK -gFo -rlP -tnJ -toZ -tnJ -nql -pDD -vcK -von -tdp -pUN -pUN -wtq -wZy -pUN -wtq -wZy -pUN -pUN -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(167,1,1) = {" -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -pUN -bhl -cel -bSI -pUN -cVj -vcK -nDf -oPA -von -qav -vcK -gHw -rmM -jBl -toZ -jBl -ntX -pOh -vcK -von -pUU -pUN -vrY -wuB -wZJ -xws -xRH -lAw -hCU -pUN -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(168,1,1) = {" -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -pUN -bid -clg -clg -pUN -mrR -ngc -nEE -pUN -fbu -qav -vcK -qFT -toZ -toZ -sQX -toZ -toZ -pWS -vcK -von -pUU -tMD -pUU -pUU -pUU -pUU -pUU -pUU -wrp -xkw -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(169,1,1) = {" -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -pUN -pUN -pUN -pUN -pUN -pUN -pUN -pUN -pUN -pSH -qav -vcK -gIf -toZ -toZ -toZ -toZ -toZ -qbz -vcK -von -pUU -tMD -pUU -pUU -pUU -pUU -pUU -pUU -fcm -xkw -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(170,1,1) = {" -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -pUN -bir -cjb -cqP -lzh -msz -dDI -dYB -pUN -feA -qav -vcK -gLr -rtG -tqh -toZ -tqh -nvr -qry -vcK -von -pUU -tMD -pUU -pUU -pUU -pUU -pUU -pUU -nSQ -xkw -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(171,1,1) = {" -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -xkw -iSi -cjF -clg -jpq -clg -jpq -jpq -epk -pUU -qav -vcK -gLQ -hhX -tqh -toZ -tqh -nwL -rxN -vcK -von -pUU -tMD -pUU -pUU -pUU -pUU -pUU -pUU -pUU -xkw -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(172,1,1) = {" -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -xkw -iVa -clg -clg -lAD -cWU -clg -jpq -epk -pUU -qav -vcK -qKT -rwj -smT -toZ -tqn -nzu -qFt -vcK -von -pUU -pUN -vyc -wwD -xbU -xwM -xVd -ivy -lAI -pUN -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(173,1,1) = {" -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -xkw -xFQ -jpq -jpq -lAD -cXi -dGq -clg -epk -pUU -qav -vcK -qMu -rwl -som -kbz -mkQ -nAh -qWa -vcK -von -tdp -pUN -pUN -wyM -xcr -pUN -wyM -xcr -pUN -pUN -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(174,1,1) = {" -aaO -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aeO -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aeO -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -xkw -bjR -jpq -jpq -clg -jpq -clg -jpq -epk -pUU -qav -vcK -qMN -dzj -cdq -kFK -tqV -udF -uze -vcK -von -pUU -pUN -vDl -wyR -xgQ -xxo -xZo -crY -udV -pUN -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(175,1,1) = {" -aaO -abn -abn -abn -abn -abn -abn -abn -abn -abn -abn -aeO -abn -abn -abn -abn -abn -abn -abn -abn -abn -abn -aeO -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -pUN -bkm -jpq -khS -lBN -mvu -nkw -nJM -pUN -feN -qav -vcK -xDI -his -srF -sVK -moM -nAD -rbI -vcK -von -pUU -tNa -vEy -vEy -vEy -vEy -vEy -mRm -pTs -xkw -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(176,1,1) = {" -aaO -abn -abn -abn -abn -abn -abn -abn -abn -abn -abn -aeO -abn -abn -abn -abn -abn -abn -abn -abn -abn -abn -aeO -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -xkw -bkr -jpq -pUN -pUN -pUN -pUN -pUN -pUN -ffm -qav -vcK -gLR -vcK -stW -sWw -tDB -vcK -uBL -vcK -von -pUU -ujo -vFT -vEy -vEy -vEy -ygK -ygK -mRm -xkw -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(177,1,1) = {" -aaO -abn -abn -abn -abn -abn -abn -abn -abn -abn -abn -aeO -abn -abn -abn -abn -abn -abn -abn -abn -abn -abn -aeO -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -xkw -blQ -jpq -pUN -lIO -mym -nuL -jpq -oUZ -fpt -qav -vcK -vcK -vcK -vcK -vcK -vcK -vcK -vcK -vcK -von -pUU -ujo -vEy -vEy -vEy -xxz -yhm -bMw -xgg -xkw -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(178,1,1) = {" -aaO -abn -abn -abn -abn -abn -abn -abn -abn -abn -abn -aeO -abn -abn -abn -abn -abn -abn -abn -abn -abn -abn -aeO -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -xkw -bpY -jpq -pUN -pUN -pUN -jpq -jpq -oUZ -von -qav -vcK -vcK -vcK -vcK -vcK -vcK -vcK -vcK -vcK -von -pUU -pUN -vKl -vEy -vEy -vEy -yjn -sxi -nWF -xkw -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(179,1,1) = {" -aaO -abn -abn -abn -abn -abn -abn -abn -abn -abn -abn -aeO -abn -abn -abn -abn -abn -abn -abn -abn -abn -abn -aeO -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -jVT -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -xkw -bsc -jpq -pUN -lMp -mAd -nuL -jpq -oWu -pTm -qav -vcK -vcK -vcK -vcK -vcK -vcK -vcK -vcK -vcK -rUc -eZg -pUN -vKC -vEy -xhF -vEy -xfS -xfS -rMF -xkw -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(180,1,1) = {" -aaO -abn -abn -abn -abn -abn -abn -abn -abn -abn -abn -aeO -abn -abn -abn -abn -abn -abn -abn -abn -abn -abn -aeO -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -pUN -bxL -jpq -pUN -pUN -pUN -jpq -jpq -pUN -pUN -pUN -vec -vec -vec -vec -vec -vec -vec -vec -vec -pUN -pUN -pUN -vKR -vEy -xia -xzd -qrX -mcR -vrw -pUN -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(181,1,1) = {" -aaO -abn -abn -abn -abn -abn -abn -abn -abn -abn -abn -aeO -abn -abn -abn -abn -abn -abn -abn -abn -abn -abn -aeO -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -kFd -bBd -jsg -pUN -lSP -cXK -nuL -nZO -pUN -pUU -qav -vcK -vcK -vcK -vcK -vcK -vcK -vcK -vcK -vcK -von -pUU -pUN -pUN -wAo -pUN -pUN -pUN -xkw -xkw -xmf -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(182,1,1) = {" -aaO -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aeO -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aeO -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -wmL -wmL -bGK -wmL -pUN -pUN -pUN -jpq -jpq -pUN -pUU -qav -vcK -vcK -vcK -vcK -vcK -vcK -vcK -vcK -vcK -von -pUU -pUN -vPG -clg -pUN -xCb -pUN -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(183,1,1) = {" -aaO -abo -abp -abU -ack -acN -acN -acN -acN -acN -aed -aeO -kTO -wSA -lWU -gLc -wSA -qsA -wSA -yhw -gXh -gLc -aeO -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pUN -lVP -dau -nuL -jpq -pkt -pUU -qav -vcK -vcK -vcK -vcK -vcK -vcK -vcK -vcK -vcK -von -pUU -pUN -vPK -jpq -xii -xEl -xkw -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(184,1,1) = {" -aaO -abo -abp -abU -acl -ack -acN -acN -acN -aed -aez -aeO -sZi -pOS -pOS -pOS -pOS -pOS -pOS -pOS -pOS -sZi -aeO -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -kFd -pUN -pUN -dIb -dIb -pUN -fpW -qav -vcK -vcK -vcK -vcK -vcK -vcK -vcK -vcK -vcK -von -pUU -pUN -vTP -wGA -pUN -pUN -xmf -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(185,1,1) = {" -aaO -abp -abp -abV -acm -acm -adi -adB -adI -aee -aee -aeO -sZi -kEF -kEs -kEF -kEs -kEF -kEs -kEF -kEF -sZi -aeO -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -xSh -xSh -xSh -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -kFd -xkw -xkw -pUN -frw -qav -vcK -vcK -vcK -vcK -vcK -vcK -vcK -vcK -vcK -von -pUU -pUN -xkw -xkw -xmf -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(186,1,1) = {" -aaO -abp -abp -abV -acm -acm -adj -adC -adJ -aee -aee -aeO -sZi -kEF -whV -kEF -whV -kEF -whV -kEF -kEF -sZi -aeO -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -xSh -dnS -dnS -pux -xSh -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -pUN -pUN -pUN -vec -vec -vec -vec -vec -vec -vec -vec -vec -pUN -pUN -pUN -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(187,1,1) = {" -aaO -abp -abp -abV -acm -acm -adk -adD -adK -aee -aee -aeO -sZi -kEF -kEF -nan -kEF -nan -kEF -nan -kEF -sZi -aeO -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -xSh -dnS -xLv -ccz -xSh -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ait -fvK -ait -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ait -fvK -ait -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(188,1,1) = {" -aaO -abo -abp -abW -acl -acn -acO -acO -acO -aef -aez -aeO -sZi -pOS -pOS -pOS -pOS -pOS -pOS -pOS -pOS -sZi -aeO -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -xSh -xSh -dnS -ofD -dnS -xSh -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ait -aaM -ait -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ait -aaM -ait -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(189,1,1) = {" -aaO -abo -abp -abW -acn -acO -acO -acO -acO -acO -aef -aeO -oyh -fid -fri -xwr -ufi -oNX -xwr -jCJ -xwr -irn -aeO -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -woD -woD -woD -woD -xSh -xSh -xSh -xSh -xSh -xSh -dnS -dnS -xSh -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ait -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ait -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(190,1,1) = {" -aaO -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aeO -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aeO -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -woD -woD -woD -xSh -ofD -xLv -xLv -dnS -xSh -xSh -xSh -xSh -woD -woD -woD -xSh -iAP -iAP -iAP -woD -woD -woD -woD -woD -woD -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ait -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ait -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(191,1,1) = {" -aaO -abq -abs -abX -aco -acP -adl -acP -adl -acP -adl -aaO -aMa -aBS -aDf -aDf -aDf -aDf -aDf -aDf -aBS -aMa -aeO -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -woD -woD -xSh -ofD -xLv -xLv -xLv -xLv -dnS -xSh -woD -woD -woD -xSh -xSh -iAP -iAP -ykk -iAP -iAP -iAP -woD -woD -woD -woD -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(192,1,1) = {" -aaO -abr -abs -abY -acp -acQ -adm -acQ -adm -acQ -acP -aaO -aBS -aBS -aDg -aDg -aDg -aDg -aDg -aDg -aBS -aBS -aeO -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -xSh -brN -vjV -wlj -xLv -xLv -xLv -xLv -xLv -xLv -fqz -dnS -xSh -woD -woD -xSh -ykk -iAP -iAP -iAP -iAP -iAP -ykk -iAP -woD -woD -woD -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(193,1,1) = {" -aaO -abs -abs -abZ -acq -acR -acQ -adm -acQ -adm -adl -aaO -aBS -aHL -aDh -aDL -aER -aFm -aDL -aXn -aXu -aGa -aeO -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -xSh -xLv -brN -wlj -wlj -xLv -xLv -xLv -xLv -xLv -ofD -vze -dnS -xSh -woD -woD -xSh -iAP -iAP -ykk -iAP -iAP -iAP -iAP -iAP -iAP -woD -woD -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(194,1,1) = {" -aaO -abt -abs -aca -acr -acS -adn -adn -adn -adn -aeA -aaO -aBS -aXs -aDr -aXm -aET -aWE -aXm -aXo -aXv -aBS -aeO -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -brN -wlj -wlj -wlj -xLv -xLv -xLv -xLv -xLv -ofD -fqz -dnS -dnS -xSh -woD -woD -iAP -ykk -iAP -iAP -dus -iAP -iAP -ykk -iAP -woD -woD -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(195,1,1) = {" -aaO -abs -abs -abZ -acs -acT -acU -ado -acU -ado -adp -aaO -aBS -aXt -aDA -aEr -aFl -aXl -aEr -aXr -aXw -aBS -aeO -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -brN -wlj -wlj -wlj -xLv -xLv -xLv -xLv -ofD -pUe -dnS -dnS -dnS -xSh -woD -iAP -iAP -iAP -iAP -dus -hZW -iAP -iAP -iAP -iAP -woD -woD -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(196,1,1) = {" -aaO -abr -abs -abY -act -acU -ado -acU -ado -acU -acV -aaO -aBS -aBS -aDJ -aDJ -aDJ -aDJ -aDJ -aDJ -aBS -aBS -aeO -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -brN -wlj -brN -brN -xLv -xLv -xLv -ofD -ofD -qGj -dnS -dnS -dnS -xSh -woD -iAP -iAP -iAP -iAP -kpA -dus -iAP -iAP -iAP -iAP -woD -woD -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(197,1,1) = {" -aaO -abq -abs -abX -aco -acV -adp -acV -adp -acV -adp -aaO -aMa -aBS -aDf -aDf -aDf -aDf -aDf -aDf -aBS -aMa -aeO -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -vjV -xLv -xSh -dnS -xLv -xLv -ofD -dnS -dnS -dnS -dnS -dnS -xSh -woD -iAP -ykk -iAP -iAP -kpA -iAP -iAP -ykk -iAP -iAP -woD -woD -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(198,1,1) = {" -aaO -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaO -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aeO -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -brN -dnS -xSh -xSh -dnS -xLv -xLv -nYi -dnS -dnS -dnS -dnS -xSh -woD -iAP -iAP -iAP -iAP -iAP -ykk -iAP -iAP -iAP -iAP -woD -woD -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(199,1,1) = {" -aaO -abu -abu -abu -abu -abu -abu -abu -abu -abu -abv -aeP -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -xSh -woD -woD -xSh -dnS -xLv -xLv -dib -dnS -dnS -xSh -xSh -xSh -iAP -iAP -iAP -ykk -iAP -iAP -iAP -iAP -iAP -woD -woD -woD -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(200,1,1) = {" -aaO -abu -abu -acb -abu -abu -abu -abu -abu -abu -abu -aeP -aeU -aeU -aeU -afr -aeU -aeU -aeU -aeU -afr -aeU -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -woD -woD -woD -woD -xSh -xSh -xLv -xLv -dnS -dnS -icZ -waR -hML -fQM -iAP -iAP -iAP -iAP -iAP -iAP -iAP -woD -woD -woD -woD -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(201,1,1) = {" -aaO -abu -abu -abu -abu -abv -abu -abu -acb -abu -abu -aeP -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -woD -woD -woD -woD -woD -woD -xSh -xSh -xSh -xSh -gON -uqU -lEa -hMK -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(202,1,1) = {" -aaO -abv -abu -abu -abu -abu -abu -abu -abu -abu -abu -aeP -aeU -afr -aeU -aeU -aeU -aeU -afr -aeU -aeU -aeU -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -xSh -gVo -kll -cRL -hMK -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(203,1,1) = {" -aaO -abu -abu -abu -abu -abu -abu -abu -abu -abu -acb -aeP -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -xSh -gON -svr -lEa -hMK -woD -xSh -xSh -xSh -xSh -woD -woD -woD -woD -woD -woD -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(204,1,1) = {" -aaO -abu -abu -abu -abv -abu -abu -acb -abu -abu -abu -aeP -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -woD -woD -xSh -xSh -xSh -mWz -plz -plz -plz -plz -hoa -gmG -wJK -ccP -hAC -hAC -mTg -gjN -rSX -vxP -vxP -vxP -vxP -vxP -vxP -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(205,1,1) = {" -aaO -abu -abu -abu -abu -abv -abu -abu -abu -abu -abu -aeP -aeU -aeU -aeU -afr -aeU -aeU -aeU -aeU -afr -aeU -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -woD -xSh -xSh -plz -plz -qBY -wrY -plz -kme -plz -cAr -woD -woD -hAC -hAC -kiw -hAC -hAC -hgT -vxP -vxP -vxP -vxP -vxP -vxP -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(206,1,1) = {" -aaO -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aeP -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -woD -xSh -xSh -plz -eUi -uCS -plz -plz -plz -plz -woD -woD -woD -hAC -hAC -hAC -nCw -oEM -hqg -vxP -vxP -vxP -vxP -vxP -vxP -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(207,1,1) = {" -aaO -abw -abN -acc -tVT -abN -qlC -abN -adL -nrk -rYS -aeP -aeV -aeV -aeV -aeV -aeV -aeV -aeV -agG -aeV -aeV -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -xSh -xSh -xSh -szR -jSp -evt -evt -plz -plz -kme -woD -woD -woD -hAC -snR -hAC -hAC -rys -jYZ -vxP -vxP -vxP -vxP -vxP -vxP -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(208,1,1) = {" -aaO -abx -mKw -mKw -mKw -mKw -mKw -mKw -mKw -mKw -aeB -aeP -aeV -afs -aeV -aeV -aeV -aeV -aeV -aeV -afT -aeV -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -xSh -xSh -xSh -uSm -jAP -tXP -tXP -plz -plz -jSp -woD -woD -woD -hAC -qRm -hAC -bye -rys -jYZ -vxP -vxP -vxP -vxP -vxP -vxP -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(209,1,1) = {" -aaO -mKw -mKw -acd -acu -acW -acW -acu -adM -mKw -mKw -aeP -aeV -aeV -aeV -aVf -aeV -aeV -aeV -aeV -aeV -aeV -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -xSh -xSh -xSh -szR -plz -tbN -yeB -plz -plz -woD -woD -woD -xSh -phH -snR -hAC -qnP -rys -jYZ -vxP -vxP -vxP -vxP -vxP -vxP -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(210,1,1) = {" -aaO -abz -abO -ace -acu -acW -acW -acu -adN -abO -abz -aaO -aeV -aeV -aeV -aeV -afT -aeV -aeV -aeV -aVf -aeV -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -xSh -xSh -xSh -xSh -ury -plz -plz -plz -plz -oRK -woD -woD -woD -xSh -nhS -hAC -hAC -nCw -rys -jYZ -vxP -vxP -vxP -vxP -vxP -vxP -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(211,1,1) = {" -aaO -mKw -mKw -acf -acu -acW -acW -acu -adO -mKw -mKw -aeP -aeV -aeV -aeV -aVg -aeV -aeV -afs -aeV -aeV -agG -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -xSh -xSh -xSh -plz -plz -plz -plz -ieC -kme -woD -woD -woD -woD -xSh -pDA -teG -mcI -rys -jYZ -vxP -vxP -vxP -vxP -vxP -vxP -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(212,1,1) = {" -aaO -abA -mKw -mKw -mKw -mKw -mKw -mKw -mKw -mKw -aeC -aeP -aeV -aeV -aeV -aeV -aeV -aeV -aeV -agG -aeV -aeV -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -woD -xSh -xSh -plz -nQe -kme -plz -cAr -xSh -woD -woD -woD -woD -woD -woD -hAC -hAC -lpa -bjr -vxP -vxP -vxP -vxP -vxP -vxP -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(213,1,1) = {" -aaO -abB -tIZ -acg -tIZ -oYx -vxd -ePR -adP -eyb -uuM -aeP -aeV -afs -aeV -aeV -aeV -aeV -aVf -aeV -afT -aeV -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -woD -xSh -xSh -xSh -xSh -xSh -xSh -xSh -xSh -woD -woD -woD -woD -woD -woD -woD -woD -xSh -xSh -woD -woD -woD -woD -woD -woD -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(214,1,1) = {" -aaO -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aeP -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -woD -xSh -xSh -xSh -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(215,1,1) = {" -aaO -abC -abC -abC -acv -acY -acY -acY -acY -acY -acY -aeP -aeW -aeW -afF -afM -afM -afM -afM -afM -afM -afM -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(216,1,1) = {" -aaO -abD -abD -abD -acw -acZ -adq -adq -adq -aeg -acY -aeP -aeW -aft -afG -afN -afU -agj -agj -agj -agK -afM -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -woD -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(217,1,1) = {" -aaO -abD -abD -abD -acv -ada -adr -adr -adr -aeh -acY -aeP -aeW -afu -afG -afN -afV -agk -agk -agk -agL -afM -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(218,1,1) = {" -aaO -abD -abD -abD -acv -ada -adr -adr -adr -aeh -acY -aeP -aeW -afu -afG -afN -afV -agk -agk -agk -agL -afM -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(219,1,1) = {" -aaO -abD -abD -abD -acv -ada -adr -adr -adr -aeh -acY -aeP -aeW -afu -afG -afN -afV -agk -agk -agk -agL -afM -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(220,1,1) = {" -aaO -abD -abD -abD -acw -adb -ads -ads -ads -aei -acY -aeP -aeW -afv -afG -afN -afW -agl -agl -agl -agM -afM -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(221,1,1) = {" -aaO -abC -abC -abC -acv -acY -acY -acY -acY -acY -acY -aeP -aeW -aeW -afF -afM -afM -afM -afM -afM -afM -afM -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(222,1,1) = {" -aaO -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aeP -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(223,1,1) = {" -aaO -abE -abF -abF -acx -adc -adt -adE -adQ -adE -aeD -aeO -aeX -afw -afw -afw -afX -agm -agx -agx -agx -agO -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(224,1,1) = {" -aaO -abE -abF -abE -acy -add -adu -adF -adv -adF -aeE -aeO -aeY -afx -afx -afx -afY -agn -afx -afx -afx -agH -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(225,1,1) = {" -aaO -abF -abF -ach -acz -add -adv -adv -adv -adv -aeF -aeO -aeX -afw -aeY -afx -afY -agn -afx -agH -agx -agO -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(226,1,1) = {" -aaO -abG -abF -abE -acA -add -adu -adF -adv -adv -aeG -aeO -aeZ -afx -aeY -afx -afZ -agn -afx -agH -afx -agP -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(227,1,1) = {" -aaO -abF -abF -abF -acB -ade -adw -adG -adR -adR -aeH -aeO -afa -afy -aeY -afx -afY -agn -afx -agH -agy -agQ -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(228,1,1) = {" -aaO -abE -abF -aci -acC -adf -adf -adf -adf -aej -aeI -aeO -aeY -afx -afx -afx -afY -agn -afx -afx -afx -agH -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(229,1,1) = {" -aaO -abE -abF -acj -acD -adg -adg -adg -adg -aek -abE -aeO -afa -afy -afy -afy -aga -ago -agy -agy -agy -agQ -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(230,1,1) = {" -aaO -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aeO -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(231,1,1) = {" -aaO -abH -abH -abH -abH -abH -abH -abH -abH -abH -abH -aeO -afb -afz -afe -afd -afc -agp -agz -agA -agA -agA -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(232,1,1) = {" -aaO -abH -abQ -abH -abH -abH -abH -abH -abH -abQ -abH -aeO -afc -afA -afd -afe -afd -agq -agA -agA -agA -agA -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(233,1,1) = {" -aaO -abH -abH -abH -abH -abH -abH -abH -abH -abH -abH -aeO -afd -afe -afb -afz -afb -agq -agA -agA -agA -agA -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(234,1,1) = {" -aaO -abH -abH -abH -abQ -abH -abH -abQ -abH -abH -abH -aeO -afe -afd -afd -afO -afc -agr -agB -agA -agA -agA -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(235,1,1) = {" -aaO -abH -abH -abH -abH -abH -abH -abH -abH -abH -abH -aeO -afd -afe -afd -afb -afd -afc -agq -agA -agA -agA -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(236,1,1) = {" -aaO -abH -abH -abH -abH -abH -abH -abH -abH -abH -abH -aeO -afb -afd -afH -afd -afc -agp -agz -agA -agA -agA -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(237,1,1) = {" -aaO -abH -abH -abH -abQ -abH -abH -abQ -abH -abH -abH -aeO -afc -afz -afI -afe -agb -agq -agA -agA -agA -agA -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(238,1,1) = {" -aaO -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aeO -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(239,1,1) = {" -aaO -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -aeO -aff -afB -afB -afB -agc -ags -agC -agC -agC -agR -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(240,1,1) = {" -aaO -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -aeO -afg -afC -afC -afC -agd -agt -afC -afC -afC -agS -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(241,1,1) = {" -aaO -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -aeO -afh -afC -afC -afC -agd -agt -afC -afC -afC -agT -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(242,1,1) = {" -aaO -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -aeO -afg -afC -afC -afC -agd -agt -afC -afC -afC -agS -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(243,1,1) = {" -aaO -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -aeO -afh -afC -afC -afC -agd -agt -afC -afC -afC -agT -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(244,1,1) = {" -aaO -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -aeO -afg -afC -afC -afC -agd -agt -afC -afC -afC -agS -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(245,1,1) = {" -aaO -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -aeO -afi -afD -afD -afD -age -agu -agD -agD -agD -agU -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(246,1,1) = {" -aaO -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aeO -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(247,1,1) = {" -aaO -abJ -abR -abR -abR -abR -adx -adx -adx -adx -aeJ -aeO -oFg -afk -afJ -afP -agf -agf -afR -agI -afk -agV -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(248,1,1) = {" -aaO -abK -abS -abS -abS -abS -abS -abS -abS -abS -aeK -aeO -afj -afk -afK -afQ -agg -agv -agE -agI -afk -agV -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(249,1,1) = {" -aaO -abK -abS -abS -abS -abS -abS -abS -abS -abS -aeK -aeO -afk -afk -afK -afQ -agh -agw -agE -agI -afk -afk -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(250,1,1) = {" -aaO -abK -abS -abS -abS -abS -abS -abS -abS -abS -aeK -aeO -afk -afk -afK -afR -agi -agi -agF -agJ -afk -afk -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(251,1,1) = {" -aaO -abK -abS -abS -abS -abS -abS -abS -abS -abS -aeK -aeO -afk -afk -afk -afS -afS -afS -afS -afk -afk -afk -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(252,1,1) = {" -aaO -abK -abS -abS -abS -abS -abS -abS -abS -abS -aeK -aeO -afl -afl -afl -afl -afl -afl -afl -afl -afl -afl -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(253,1,1) = {" -aaO -abL -abT -abT -abT -abT -ady -ady -ady -ady -aeL -aeO -afl -afl -afl -afl -afl -afl -afl -afl -afl -afl -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(254,1,1) = {" -aaO -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aeO -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -aaN -agW -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} -(255,1,1) = {" -aaP -abM -abM -abM -abM -abM -abM -abM -abM -abM -abM -aaP -abM -abM -abM -abM -abM -abM -abM -abM -abM -abM -aaP -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aQS -aaM -pBV -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -"} diff --git a/maps/aurora/aurora-2_under-station.dmm b/maps/aurora/aurora-2_under-station.dmm deleted file mode 100644 index 1e54fcacb4a..00000000000 --- a/maps/aurora/aurora-2_under-station.dmm +++ /dev/null @@ -1,66110 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aw" = ( -/obj/structure/lattice, -/obj/random/loot, -/turf/template_noop, -/area/template_noop) -"ca" = ( -/obj/effect/map_effect/window_spawner/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "radiatorshutters"; - name = "Radiator Shutters" - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/engineering/cooling) -"dJ" = ( -/obj/machinery/atmospherics/pipe/zpipe/up, -/turf/simulated/floor/plating, -/area/engineering/cooling) -"dR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light_switch{ - pixel_x = 6; - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/cooling) -"eu" = ( -/obj/structure/table/standard, -/obj/item/storage/bag/inflatable, -/turf/simulated/floor/carpet/rubber, -/area/engineering/cooling) -"gY" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9 - }, -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) -"he" = ( -/obj/effect/map_effect/window_spawner/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "radiatorshutters"; - name = "Radiator Shutters" - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/engineering/cooling) -"hv" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 10 - }, -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) -"ic" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/item/storage/box/snack{ - desc = "A box full of snack foods. A label is attached that reads, 'Sorry about the microwaves.'"; - name = "corporate care package" - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/structure/table/standard, -/turf/simulated/floor/carpet/rubber, -/area/engineering/cooling) -"jK" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/cooling) -"jT" = ( -/obj/structure/table/standard, -/obj/structure/closet/walllocker/medical{ - pixel_x = 32 - }, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/obj/item/reagent_containers/inhaler/dexalin, -/obj/item/reagent_containers/inhaler/dexalin, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/cooling) -"li" = ( -/obj/structure/lattice/catwalk, -/turf/template_noop, -/area/template_noop) -"lo" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Radiator Outpost"; - req_one_access = list(11,48,65); - dir = 4 - }, -/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/machinery/door/firedoor, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/engineering/cooling) -"mc" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/template_noop, -/area/template_noop) -"mA" = ( -/obj/structure/table/standard, -/obj/item/ladder_mobile, -/turf/simulated/floor/carpet/rubber, -/area/engineering/cooling) -"mE" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, -/obj/structure/lattice/catwalk/indoor, -/turf/template_noop, -/area/template_noop) -"nx" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 4 - }, -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) -"nO" = ( -/obj/structure/ladder/up, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/engineering/cooling) -"oa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/sign/flag/scc{ - pixel_y = 32 - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/carpet/rubber, -/area/engineering/cooling) -"pp" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "cooling_outer"; - locked = 1; - name = "Engineering External Access"; - req_access = list(11); - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "cooling_airlock"; - name = "exterior access button"; - pixel_x = -8; - pixel_y = 25; - req_one_access = list(11,48,65) - }, -/turf/simulated/floor/plating, -/area/engineering/cooling) -"pw" = ( -/obj/item/modular_computer/console/preset/engineering, -/turf/simulated/floor/carpet/rubber, -/area/engineering/cooling) -"pK" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/rubber, -/area/engineering/cooling) -"qj" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) -"rM" = ( -/obj/machinery/light/small/emergency, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/cooling) -"sg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "radiatorshutters"; - name = "Radiator Shutters" - }, -/turf/simulated/floor/plating, -/area/engineering/cooling) -"sQ" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/green, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/engineering/cooling) -"tc" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/obj/structure/lattice/catwalk/indoor, -/turf/template_noop, -/area/template_noop) -"tQ" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/cooling) -"yz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "radiatorshutters"; - name = "Radiator Shutters" - }, -/turf/simulated/floor/plating, -/area/engineering/cooling) -"yX" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/template_noop, -/area/engineering/cooling) -"Ao" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "radiatorshutters"; - name = "Radiator Shutters" - }, -/turf/simulated/floor/plating, -/area/engineering/cooling) -"Ar" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) -"CN" = ( -/turf/template_noop, -/area/template_noop) -"CZ" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/west, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/rubber, -/area/engineering/cooling) -"Dq" = ( -/turf/simulated/floor/carpet/rubber, -/area/engineering/cooling) -"DN" = ( -/obj/structure/table/standard, -/obj/item/modular_computer/laptop/preset/engineering, -/turf/simulated/floor/carpet/rubber, -/area/engineering/cooling) -"FK" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/structure/cable{ - icon_state = "12-0" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/landmark{ - name = "Revenant" - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/engineering/cooling) -"Hh" = ( -/obj/effect/shuttle_landmark/skipjack/under, -/turf/template_noop, -/area/template_noop) -"HK" = ( -/obj/effect/map_effect/window_spawner/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "radiatorshutters"; - name = "Radiator Shutters" - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/engineering/cooling) -"Js" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "cooling_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "cooling_airlock"; - pixel_y = -25; - req_access = list(11); - tag_airpump = "cooling_pump"; - tag_chamber_sensor = "cooling_sensor"; - tag_exterior_door = "cooling_outer"; - tag_interior_door = "cooling_inner" - }, -/obj/machinery/airlock_sensor{ - id_tag = "cooling_sensor"; - master_tag = "cooling airlock"; - pixel_x = 12; - pixel_y = -25 - }, -/obj/effect/decal/warning_stripes, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Engine Cooling EVA" - }, -/turf/simulated/floor/plating, -/area/engineering/cooling) -"Jz" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) -"Kj" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "cooling_inner"; - locked = 1; - name = "Engineering External Access"; - req_access = list(11); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/cooling) -"KF" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/cooling) -"LX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/chemical_dispenser/coffee/full, -/obj/structure/table/standard, -/turf/simulated/floor/carpet/rubber, -/area/engineering/cooling) -"NA" = ( -/obj/structure/lattice/catwalk/indoor, -/turf/template_noop, -/area/template_noop) -"NJ" = ( -/obj/structure/lattice/catwalk, -/obj/random/loot, -/turf/template_noop, -/area/template_noop) -"Og" = ( -/obj/structure/table/standard, -/obj/item/hoist_kit, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/cooling) -"Qj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Engine Cooling"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/cooling) -"QI" = ( -/obj/effect/shuttle_landmark/merc/under, -/turf/template_noop, -/area/template_noop) -"RV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/cooling) -"UG" = ( -/turf/simulated/wall/r_wall, -/area/engineering/cooling) -"UI" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/carpet/rubber, -/area/engineering/cooling) -"Vg" = ( -/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/structure/grille, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/engineering/cooling) -"Vv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/engineering/cooling) -"Wm" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) -"WA" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/cooling) -"WG" = ( -/obj/machinery/button/remote/blast_door{ - id = "radiatorshutters"; - name = "Radiator Shutters Control"; - pixel_x = 6; - req_access = null; - req_one_access = list(11,48,65) - }, -/obj/structure/table/standard, -/turf/simulated/floor/carpet/rubber, -/area/engineering/cooling) -"Xz" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/black, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/engineering/cooling) -"Ye" = ( -/obj/effect/shuttle_landmark/burglar/under, -/turf/template_noop, -/area/template_noop) -"Yo" = ( -/obj/structure/lattice/catwalk, -/turf/template_noop, -/area/engineering/cooling) -"Zi" = ( -/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/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/engineering/cooling) -"ZZ" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "cooling_airlock"; - name = "interior access button"; - pixel_x = -25; - pixel_y = -25; - req_access = null; - req_one_access = list(11,48,65) - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/alarm/north, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/cooling) - -(1,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(2,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(3,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(4,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(5,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(6,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(7,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(8,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(9,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(10,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(11,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(12,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(13,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(14,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(15,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(16,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(17,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(18,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(19,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(20,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(21,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(22,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(23,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(24,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -QI -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(25,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(26,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(27,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(28,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(29,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(30,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(31,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(32,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(33,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(34,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(35,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -Ye -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(36,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(37,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(38,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(39,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -mc -CN -CN -CN -Ar -CN -CN -CN -aw -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -Ar -CN -CN -mc -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(40,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -mc -CN -CN -CN -Ar -CN -CN -li -li -li -li -li -li -li -li -li -li -li -li -li -li -CN -mc -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(41,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -mc -CN -CN -yX -Yo -Yo -li -li -qj -Jz -qj -Jz -qj -Jz -qj -Jz -qj -Jz -qj -Jz -li -Ar -mc -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(42,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -mc -CN -CN -UG -pp -UG -CN -li -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx -li -CN -mc -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(43,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -mc -CN -CN -UG -Js -UG -CN -li -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx -li -CN -mc -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(44,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -mc -Ar -Ar -UG -Kj -UG -CN -li -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx -li -CN -mc -CN -CN -CN -CN -CN -CN -CN -CN -Hh -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(45,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -mc -CN -UG -UG -ZZ -UG -CN -li -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx -li -CN -mc -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(46,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -mc -CN -UG -dJ -Qj -UG -Ar -li -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx -li -CN -mc -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(47,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -mc -mc -mc -CN -UG -Xz -KF -sg -mE -tc -gY -hv -gY -hv -gY -hv -gY -hv -gY -hv -gY -nx -li -CN -mc -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(48,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -mc -CN -Ar -CN -UG -sQ -rM -yz -mE -tc -Wm -Wm -Wm -Wm -Wm -Wm -Wm -Wm -Wm -Wm -Jz -nx -li -CN -mc -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(49,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -mc -Ar -UG -UG -UG -nO -WA -Ao -NA -li -qj -Wm -Wm -Wm -Wm -Wm -Wm -Wm -Wm -Wm -gY -nx -li -CN -mc -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(50,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -mc -CN -UG -FK -Vg -Zi -Vv -UG -Ar -li -hv -Wm -Wm -Wm -Wm -Wm -Wm -Wm -Wm -Wm -Jz -nx -li -CN -mc -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(51,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -mc -CN -UG -UG -UG -UG -lo -UG -CN -li -qj -Wm -Wm -Wm -Wm -Wm -Wm -Wm -Wm -Wm -gY -nx -li -CN -mc -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(52,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -mc -CN -UG -oa -pK -CZ -dR -UG -Ar -li -hv -Wm -Wm -Wm -Wm -Wm -Wm -Wm -Wm -Wm -Wm -gY -li -Ar -mc -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(53,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -mc -CN -ca -LX -jK -UI -eu -HK -CN -li -li -li -li -li -li -li -li -li -li -NJ -li -li -li -CN -mc -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(54,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -mc -Ar -ca -ic -RV -Dq -DN -HK -CN -CN -Ar -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -Ar -CN -CN -mc -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(55,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -mc -CN -ca -WG -tQ -tQ -mA -HK -CN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(56,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -mc -CN -UG -jT -pw -pw -Og -UG -CN -mc -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(57,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -mc -Ar -UG -UG -he -he -UG -UG -Ar -mc -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(58,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -mc -CN -Ar -CN -CN -CN -CN -Ar -CN -mc -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(59,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(60,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(61,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(62,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(63,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(64,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(65,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(66,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(67,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(68,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(69,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(70,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(71,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(72,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(73,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(74,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(75,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(76,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(77,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(78,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(79,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(80,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(81,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(82,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(83,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(84,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(85,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(86,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(87,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(88,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(89,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(90,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(91,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(92,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(93,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(94,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(95,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(96,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(97,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(98,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(99,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(100,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(101,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(102,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(103,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(104,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(105,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(106,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(107,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(108,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(109,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(110,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(111,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(112,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(113,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(114,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(115,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(116,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(117,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(118,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(119,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(120,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(121,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(122,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(123,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(124,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(125,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(126,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(127,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(128,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(129,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(130,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(131,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(132,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(133,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(134,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(135,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(136,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(137,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(138,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(139,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(140,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(141,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(142,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(143,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(144,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(145,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(146,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(147,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(148,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(149,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(150,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(151,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(152,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(153,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(154,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(155,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(156,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(157,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(158,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(159,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(160,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(161,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(162,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(163,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(164,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(165,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(166,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(167,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(168,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(169,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(170,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(171,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(172,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(173,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(174,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(175,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(176,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(177,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(178,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(179,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(180,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(181,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(182,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(183,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(184,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(185,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(186,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(187,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(188,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(189,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(190,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(191,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(192,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(193,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(194,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(195,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(196,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(197,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(198,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(199,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(200,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(201,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(202,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(203,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(204,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(205,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(206,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(207,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(208,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(209,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(210,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(211,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(212,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(213,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(214,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(215,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(216,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(217,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(218,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(219,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(220,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(221,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(222,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(223,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(224,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(225,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(226,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(227,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(228,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(229,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(230,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(231,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(232,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(233,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(234,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(235,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(236,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(237,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(238,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(239,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(240,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(241,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(242,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(243,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(244,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(245,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(246,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(247,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(248,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(249,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(250,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(251,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(252,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(253,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(254,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} -(255,1,1) = {" -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -CN -"} diff --git a/maps/aurora/aurora-3_sublevel.dmm b/maps/aurora/aurora-3_sublevel.dmm deleted file mode 100644 index 5505348f58d..00000000000 --- a/maps/aurora/aurora-3_sublevel.dmm +++ /dev/null @@ -1,101807 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/unsimulated/chasm_mask, -/area/mine/unexplored) -"aab" = ( -/turf/unsimulated/chasm_mask, -/area/mine/unexplored) -"aad" = ( -/obj/structure/grille, -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"aae" = ( -/obj/machinery/door/airlock/medical{ - name = "Staff Showers"; - req_access = list(66); - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/sleep/medical) -"aaf" = ( -/turf/simulated/floor/reinforced/phoron/scarce, -/area/engineering/atmos) -"aag" = ( -/turf/simulated/floor/reinforced/nitrogen, -/area/engineering/atmos) -"aah" = ( -/turf/simulated/floor/reinforced/airmix, -/area/engineering/atmos) -"aai" = ( -/turf/simulated/floor/reinforced/oxygen, -/area/engineering/atmos) -"aaj" = ( -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/engineering/atmos) -"aak" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "ph_sensor" - }, -/turf/simulated/floor/reinforced/phoron/scarce, -/area/engineering/atmos) -"aal" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "n2_sensor" - }, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/reinforced/nitrogen, -/area/engineering/atmos) -"aam" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "air_sensor"; - output = 7 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/reinforced/airmix, -/area/engineering/atmos) -"aan" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "o2_sensor" - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/reinforced/oxygen, -/area/engineering/atmos) -"aao" = ( -/obj/machinery/artifact_harvester, -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/outpost/research/anomaly_harvest) -"aap" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "co2_sensor" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/engineering/atmos) -"aaq" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - frequency = 1441; - id = "tox_in"; - use_power = 1 - }, -/turf/simulated/floor/reinforced/phoron/scarce, -/area/engineering/atmos) -"aar" = ( -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - frequency = 1441; - id_tag = "tox_out" - }, -/turf/simulated/floor/reinforced/phoron/scarce, -/area/engineering/atmos) -"aas" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - frequency = 1441; - id = "n2_in"; - use_power = 1 - }, -/turf/simulated/floor/reinforced/nitrogen, -/area/engineering/atmos) -"aat" = ( -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - frequency = 1441; - id_tag = "n2_out" - }, -/turf/simulated/floor/reinforced/nitrogen, -/area/engineering/atmos) -"aau" = ( -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - frequency = 1441; - id_tag = "air_out" - }, -/turf/simulated/floor/reinforced/airmix, -/area/engineering/atmos) -"aav" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - frequency = 1441; - id = "air_in"; - use_power = 1 - }, -/turf/simulated/floor/reinforced/airmix, -/area/engineering/atmos) -"aaw" = ( -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - frequency = 1441; - id_tag = "o2_out" - }, -/turf/simulated/floor/reinforced/oxygen, -/area/engineering/atmos) -"aax" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - frequency = 1441; - id = "o2_in"; - use_power = 1 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/engineering/atmos) -"aay" = ( -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - frequency = 1441; - id_tag = "co2_out" - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/engineering/atmos) -"aaz" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - frequency = 1441; - id = "co2_in"; - use_power = 1 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/engineering/atmos) -"aaA" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"aaB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aaC" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"aaD" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"aaE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aaF" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"aaG" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"aaH" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aaI" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"aaJ" = ( -/obj/machinery/light/small/emergency, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"aaK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"aaL" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"aaM" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"aaN" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"aaO" = ( -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"aaP" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aaQ" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aaR" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aaS" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aaT" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aaU" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/meter{ - frequency = 1441; - id = "mair_out_meter" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aaV" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/meter{ - frequency = 1441; - id = "mair_in_meter" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aaW" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aaX" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aaY" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aaZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aba" = ( -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"abb" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"abc" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/computer/general_air_control/large_tank_control{ - input_tag = "tox_in"; - name = "Phoron Supply Control"; - output_tag = "tox_out"; - sensors = list("ph_sensor"="Tank") - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"abd" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"abe" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Phoron to Connector" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abf" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abg" = ( -/obj/structure/sign/atmosplaque{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abh" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"abi" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "toxins_external_pump" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "toxins_external_airlock"; - name = "exterior access button"; - pixel_x = 25; - pixel_y = 25; - req_one_access = list(8) - }, -/obj/machinery/airlock_sensor{ - id_tag = "toxins_external_sensor"; - master_tag = "toxins_external_airlock"; - pixel_y = 25 - }, -/turf/simulated/floor/plating, -/area/rnd/mixing) -"abj" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"abk" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abl" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"abm" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/computer/general_air_control/large_tank_control{ - input_tag = "air_in"; - name = "Mixed Air Supply Control"; - output_tag = "air_out"; - sensors = list("air_sensor"="Tank") - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"abn" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"abo" = ( -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abp" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"abq" = ( -/obj/structure/morgue/crematorium{ - _wifi_id = "xenobio_crema" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"abr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"abs" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abt" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "CO2 to Connector" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abu" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"abv" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/computer/general_air_control/large_tank_control{ - input_tag = "co2_in"; - name = "Carbon Dioxide Supply Control"; - output_tag = "co2_out"; - sensors = list("co2_sensor"="Tank") - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"abw" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"abx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly_storage) -"aby" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"abz" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Phoron to Mix" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abB" = ( -/obj/machinery/atmospherics/binary/pump{ - name = "N2 to Connector" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"abD" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abE" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"abF" = ( -/obj/machinery/atmospherics/binary/pump{ - name = "O2 to Connector" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abH" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "CO2 to Mix" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abI" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"abJ" = ( -/turf/simulated/wall/r_wall, -/area/outpost/engineering/power) -"abK" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"abL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = null; - req_one_access = list(55); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"abM" = ( -/obj/machinery/atmospherics/omni/filter{ - name = "Phoron Filter"; - tag_east = 2; - tag_south = 1; - tag_west = 6 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abN" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/chem_master{ - dir = 8; - pixel_x = -4; - pixel_y = 4 - }, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"abO" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abP" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abQ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abR" = ( -/obj/machinery/atmospherics/omni/filter{ - name = "N2 Filter"; - tag_north = 4; - tag_south = 2; - tag_west = 1 - }, -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abS" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abT" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 8 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/effect/floor_decal/corner/white/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abW" = ( -/obj/machinery/atmospherics/omni/mixer{ - active_power_usage = 7500; - name = "Mixed Air Ratio"; - tag_east = 1; - tag_east_con = 0.21; - tag_north = 2; - tag_west = 1; - tag_west_con = 0.79 - }, -/obj/effect/floor_decal/corner/white{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump{ - name = "Air to Bypass" - }, -/obj/effect/floor_decal/corner/white/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abY" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"abZ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aca" = ( -/obj/machinery/atmospherics/omni/filter{ - name = "O2 Filter"; - tag_east = 2; - tag_north = 3; - tag_south = 1 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"acb" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"acc" = ( -/obj/item/toy/plushie/farwa, -/turf/simulated/floor/plating, -/area/mine/unexplored) -"acd" = ( -/obj/effect/floor_decal/corner/black{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/omni/filter{ - name = "CO2 Filter"; - tag_east = 5; - tag_south = 2; - tag_west = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ace" = ( -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"acf" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"acg" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/item/anobattery{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/anobattery{ - pixel_x = -5; - pixel_y = -5 - }, -/obj/item/anobattery{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/anobattery{ - pixel_x = -5; - pixel_y = 5 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/anomaly_harvest) -"ach" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"aci" = ( -/obj/machinery/artifact_harvester, -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/outpost/research/anomaly_harvest) -"acj" = ( -/obj/machinery/ringer/south{ - department = "Engineering"; - id = "engie_ringer"; - req_access = list(10) - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"ack" = ( -/obj/machinery/alarm/west{ - pixel_x = -28 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"acl" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) -"acm" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/table/standard, -/obj/machinery/firealarm/south, -/obj/item/storage/box/fancy/tray/autopsy, -/turf/simulated/floor/tiled/white, -/area/medical/morgue) -"acn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"aco" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) -"acp" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"acq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"acr" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"acs" = ( -/obj/machinery/atmospherics/valve/digital{ - name = "Phoron to Mix valve" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"act" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"acu" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"acv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"acw" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"acx" = ( -/obj/machinery/atmospherics/valve/digital{ - name = "CO2 to Mix valve" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"acy" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"acz" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"acA" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/machinery/power/emitter, -/turf/simulated/floor/plating, -/area/engineering/storage_tesla) -"acB" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"acC" = ( -/obj/structure/table/standard, -/obj/item/surgery/scalpel, -/obj/item/surgery/surgicaldrill, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/maintenance/medsublevel_port) -"acD" = ( -/obj/machinery/alarm/east{ - pixel_x = 28 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"acE" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"acF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/storage_tesla) -"acG" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) -"acH" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/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, -/area/outpost/engineering/hallway) -"acI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"acJ" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/storage_sublevel) -"acK" = ( -/obj/structure/table/rack, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/engineering, -/obj/item/clothing/head/helmet/space/void/engineering, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"acL" = ( -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"acM" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"acN" = ( -/obj/machinery/artifact_scanpad, -/obj/effect/floor_decal/spline/plain/black{ - dir = 6 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/outpost/research/anomaly_harvest) -"acP" = ( -/turf/simulated/floor/reinforced, -/area/outpost/research/anomaly_harvest) -"acQ" = ( -/obj/structure/table/rack, -/obj/item/hoist_kit, -/obj/item/ladder_mobile, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"acR" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "Tank to Connector" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"acS" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "Tank to Filter" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"acT" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"acU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"acV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"acW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"acX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"acY" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "N2O to Connector" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"adc" = ( -/obj/machinery/artifact_scanpad, -/obj/effect/floor_decal/spline/plain/black{ - dir = 10 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 5 - }, -/turf/simulated/floor/bluegrid, -/area/outpost/research/anomaly_harvest) -"add" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/analysis) -"ade" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"adg" = ( -/obj/structure/reagent_dispensers/coolanttank, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Spectrometry" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/analysis) -"adh" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/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, -/area/outpost/engineering/hallway) -"adi" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"adj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/analysis) -"adk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"adl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/table/standard, -/obj/item/stack/nanopaste{ - pixel_y = 9 - }, -/obj/item/stack/nanopaste, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/analysis) -"adm" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"adn" = ( -/obj/machinery/alarm/north, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"ado" = ( -/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/visible/yellow, -/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{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"adp" = ( -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos) -"adq" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - frequency = 1441; - icon_state = "map_vent_in"; - id_tag = "waste_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/airless, -/area/engineering/atmos) -"adr" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"adt" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"adu" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"adv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"adw" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"adx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ady" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible/cyan, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"adz" = ( -/obj/machinery/atmospherics/valve/digital{ - dir = 4; - name = "Air Bypass valve" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"adA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 9 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"adB" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"adC" = ( -/obj/machinery/atmospherics/valve/digital{ - dir = 4; - name = "N2O to Mix valve" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"adD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"adE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "N2O to Mix" - }, -/obj/effect/floor_decal/corner/white, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"adF" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"adG" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - frequency = 1441; - icon_state = "map_vent_in"; - id_tag = "n2o_out"; - initialize_directions = 8; - 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) -"adH" = ( -/turf/simulated/floor/reinforced/n20, -/area/engineering/atmos) -"adI" = ( -/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/plating, -/area/outpost/engineering/power) -"adJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/door/airlock/external{ - id_tag = "harvd"; - name = "Exotic Energies Harvesting"; - req_access = list(65); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly_harvest) -"adK" = ( -/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/research{ - name = "Long-Term Artifact Storage"; - req_access = list(65); - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly_storage) -"adL" = ( -/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/research{ - name = "Spectrometry"; - req_access = list(65); - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/analysis) -"adM" = ( -/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/rnd/xenoarch_atrium) -"adN" = ( -/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/valve/digital/open{ - dir = 1; - name = "Anomalous Storage" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"adO" = ( -/obj/item/clothing/under/medical_gown/white, -/obj/item/clothing/under/medical_gown/white, -/obj/item/clothing/shoes/sneakers, -/obj/item/clothing/shoes/sneakers, -/obj/structure/closet/crate/bin{ - name = "Subject wear" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"adP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE DURING OPERATION"; - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"adQ" = ( -/obj/structure/disposalpipe/segment, -/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/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"adR" = ( -/obj/structure/table/rack, -/obj/item/storage/bag/inflatable, -/obj/item/storage/bag/inflatable, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"adS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "iso_c"; - name = "Isolation C Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/isolation_c) -"adT" = ( -/obj/structure/table/steel, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/reinforced, -/area/rnd/isolation_c) -"adU" = ( -/turf/simulated/floor/reinforced, -/area/rnd/isolation_c) -"adV" = ( -/obj/structure/bed, -/turf/simulated/floor/reinforced, -/area/rnd/isolation_c) -"adW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"adX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"adY" = ( -/obj/structure/table/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/box/samplebags, -/obj/item/storage/box/gloves, -/obj/item/storage/box/lights/mixed{ - pixel_x = 5; - pixel_y = -2 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_storage) -"aea" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/secure_closet/xenoarchaeologist{ - req_access = null; - req_one_access = list(7,47) - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_storage) -"aeb" = ( -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"aec" = ( -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"aed" = ( -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Storage" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/crate{ - name = "Maglock Storage" - }, -/obj/item/device/magnetic_lock/engineering, -/obj/item/device/magnetic_lock/engineering, -/obj/item/device/magnetic_lock/engineering, -/obj/item/device/magnetic_lock/engineering, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"aee" = ( -/obj/machinery/pipedispenser/disposal, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"aef" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "waste_sensor"; - output = 63 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos) -"aeg" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aeh" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"aei" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aej" = ( -/obj/machinery/computer/general_air_control/large_tank_control{ - input_tag = "waste_in"; - name = "Gas Mix Tank Control"; - output_tag = "waste_out"; - sensors = list("waste_sensor"="Tank") - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aek" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ael" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aem" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aen" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aeo" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aep" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aeq" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aer" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/effect/floor_decal/corner/white, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aes" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/computer/general_air_control/large_tank_control{ - input_tag = "n2o_in"; - name = "Nitrous Oxide Supply Control"; - output_tag = "n2o_out"; - sensors = list("n2o_sensor"="Tank") - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aet" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"aeu" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "n2o_sensor" - }, -/obj/effect/floor_decal/corner/white, -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/reinforced/n20, -/area/engineering/atmos) -"aev" = ( -/obj/structure/closet/secure_closet/xenoarchaeologist{ - req_access = null; - req_one_access = list(7,47) - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_storage) -"aex" = ( -/obj/machinery/suspension_gen, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_storage) -"aez" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/obj/machinery/power/grounding_rod, -/turf/simulated/floor/plating, -/area/engineering/storage_tesla) -"aeA" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"aeB" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"aeD" = ( -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"aeE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "iso_c"; - name = "Isolation C Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/isolation_c) -"aeF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/reinforced, -/area/rnd/isolation_c) -"aeH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"aeI" = ( -/obj/item/stack/material/plasteel{ - amount = 50 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"aeJ" = ( -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"aeK" = ( -/obj/machinery/pipedispenser, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"aeL" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/structure/curtain/open/shower/engineering, -/turf/simulated/floor/tiled/freezer, -/area/engineering/bathroom) -"aeM" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/freezer, -/area/engineering/bathroom) -"aeN" = ( -/obj/machinery/door/airlock/engineering{ - id_tag = "eng_unit_1"; - name = "Restrooms"; - req_access = list(10); - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/engineering/bathroom) -"aeO" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "eng_unit_1"; - name = "Door Bolt Control"; - pixel_x = 22; - pixel_y = 8; - specialfunctions = 4 - }, -/obj/effect/landmark{ - name = "Revenant" - }, -/turf/simulated/floor/tiled/freezer, -/area/engineering/bathroom) -"aeP" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 4; - frequency = 1441; - id = "waste_in"; - pixel_y = 1; - use_power = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos) -"aeQ" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aeR" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 10 - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aeS" = ( -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aeT" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/effect/floor_decal/corner/dark_green{ - icon_state = "preview_threethirds" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aeU" = ( -/turf/simulated/mineral, -/area/rnd/test_area) -"aeV" = ( -/turf/simulated/wall, -/area/engineering/atmos) -"aeW" = ( -/obj/structure/window/borosilicate/reinforced, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) -"aeX" = ( -/obj/machinery/atmospherics/binary/pump{ - name = "Mix to Connectors" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aeY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aeZ" = ( -/obj/effect/floor_decal/corner/white, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/omni/filter{ - name = "Nitrous Oxide Filter"; - tag_east = 7; - tag_north = 1; - tag_south = 2 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"afa" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 8; - frequency = 1441; - id = "n2o_in"; - initialize_directions = 8; - use_power = 1 - }, -/turf/simulated/floor/reinforced/n20, -/area/engineering/atmos) -"afd" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"afe" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/reinforced, -/area/rnd/isolation_c) -"aff" = ( -/obj/structure/table/rack, -/obj/item/clothing/glasses/safety/goggles/science, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/gloves/latex/nitrile, -/obj/item/clothing/suit/hazmat/anomaly, -/obj/item/clothing/head/hazmat/anomaly, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_storage) -"afg" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_storage) -"afh" = ( -/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, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_storage) -"afj" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"afk" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_storage) -"afl" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/omni/filter{ - tag_east = 3; - tag_north = 2; - tag_south = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"afm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/firealarm/west, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"afn" = ( -/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/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"afo" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"afp" = ( -/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/glass_engineering{ - name = "Storage"; - req_access = list(10); - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"afq" = ( -/obj/item/stack/material/plastic{ - amount = 50 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"afr" = ( -/obj/item/stack/material/wood{ - amount = 50 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"afs" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/item/clothing/glasses/welding, -/obj/item/clothing/glasses/welding, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"aft" = ( -/obj/structure/table/standard, -/obj/item/stack/medical/bruise_pack{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/bodybag/cryobag{ - pixel_x = 6 - }, -/obj/item/stack/medical/ointment{ - pixel_y = 10 - }, -/obj/item/stack/medical/bruise_pack{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled/freezer, -/area/engineering/bathroom) -"afu" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm/east{ - pixel_x = 28 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/freezer, -/area/engineering/bathroom) -"afv" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "Mix to Tank" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"afw" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"afy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"afz" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"afB" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Connectors to Filter" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"afC" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"afD" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"afE" = ( -/obj/machinery/atmospherics/unary/freezer{ - icon_state = "freezer" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"afF" = ( -/obj/machinery/atmospherics/unary/heater, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"afG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"afJ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"afK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - id_tag = "riso3"; - name = "Isolation C"; - req_access = list(65); - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/isolation_c) -"afL" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Tesla - Containment"; - charge = 2000000; - input_attempt = 1; - input_level_max = 350000; - is_critical = 1; - output_attempt = 1; - output_level_max = 350000 - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"afM" = ( -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"afQ" = ( -/obj/machinery/power/emitter, -/obj/machinery/light_switch{ - pixel_x = 12; - pixel_y = -24 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_storage) -"afR" = ( -/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/plating, -/area/rnd/xenoarch_storage) -"afS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm/west{ - pixel_x = -28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"afU" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Supply Closet"; - dir = 1 - }, -/obj/machinery/washing_machine, -/obj/machinery/firealarm/south, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_storage) -"afV" = ( -/obj/machinery/firealarm/west, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"afW" = ( -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"afX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "iso_b"; - name = "Isolation B Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/isolation_b) -"afY" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"afZ" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"aga" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/item/device/debugger, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"agb" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - dir = 4; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/freezer, -/area/engineering/bathroom) -"agc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/freezer, -/area/engineering/bathroom) -"agd" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/engineering/bathroom) -"age" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/simulated/floor/tiled/freezer, -/area/engineering/bathroom) -"agf" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"agg" = ( -/obj/machinery/atmospherics/binary/pump{ - name = "N2 to Mix" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"agh" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"agi" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"agj" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"agk" = ( -/obj/machinery/atmospherics/valve{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"agl" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"agm" = ( -/obj/structure/table/steel, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/reinforced, -/area/rnd/isolation_b) -"agn" = ( -/obj/machinery/artifact_scanpad, -/obj/effect/floor_decal/spline/plain/black{ - dir = 6 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 9 - }, -/turf/simulated/floor/bluegrid, -/area/rnd/isolation_b) -"ago" = ( -/obj/machinery/artifact_analyser, -/obj/effect/floor_decal/spline/plain/black{ - dir = 6 - }, -/turf/simulated/floor/bluegrid, -/area/rnd/isolation_b) -"agq" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - id = "iso_b_purge"; - name = "Exterior Blast Door" - }, -/turf/simulated/floor/plating, -/area/rnd/isolation_b) -"agr" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"ags" = ( -/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/rnd/xenoarch_atrium) -"agt" = ( -/obj/structure/table/rack, -/obj/item/stack/cable_coil/yellow, -/obj/item/stack/cable_coil/yellow, -/obj/item/ladder_mobile, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"agu" = ( -/obj/structure/table/rack, -/obj/item/storage/bag/inflatable, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"agv" = ( -/obj/structure/table/rack, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"agy" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"agz" = ( -/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" - }, -/turf/simulated/floor/tiled/freezer, -/area/engineering/bathroom) -"agA" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "Scrubbers to Filtering" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"agB" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "Waste to Filtering"; - use_power = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"agC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"agD" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"agE" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/north, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"agF" = ( -/obj/machinery/computer/security/telescreen{ - name = "Anomaly Observation Screen"; - network = list("Anomaly Isolation"); - pixel_y = 26 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"agG" = ( -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 1 - }, -/obj/effect/floor_decal/sign/b, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"agH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/engineering/storage_tesla) -"agI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "iso_b"; - name = "Isolation B Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/isolation_b) -"agJ" = ( -/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/glass_engineering{ - name = "Tesla Parts Storage"; - req_one_access = list(11,24); - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/engineering/storage_tesla) -"agK" = ( -/turf/simulated/wall, -/area/outpost/engineering/hallway) -"agL" = ( -/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/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"agM" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor, -/area/engineering/storage_sublevel) -"agN" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/reinforced, -/area/rnd/isolation_b) -"agO" = ( -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"agP" = ( -/obj/machinery/door/airlock/engineering{ - name = "Restrooms"; - req_one_access = list(11,24); - dir = 1 - }, -/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" - }, -/turf/simulated/floor/tiled/freezer, -/area/engineering/bathroom) -"agQ" = ( -/turf/simulated/wall/r_wall, -/area/outpost/engineering/hallway) -"agR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"agS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"agT" = ( -/obj/structure/window/borosilicate/reinforced, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) -"agU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"agV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"agW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"agX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"agY" = ( -/obj/structure/window/borosilicate/reinforced, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Bomb Range North" - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) -"agZ" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"aha" = ( -/turf/simulated/floor/reinforced, -/area/rnd/isolation_b) -"ahc" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/reinforced, -/area/rnd/isolation_b) -"ahe" = ( -/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{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/mauve, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"ahf" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"ahg" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"ahi" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"ahj" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"ahk" = ( -/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/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"ahl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/valve/digital/open{ - dir = 4; - name = "Isolation B" - }, -/obj/machinery/button/remote/airlock{ - id = "riso2"; - name = "Door Bolt Control"; - pixel_x = 25; - pixel_y = -22; - specialfunctions = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "iso_b"; - name = "Blast Door Control"; - pixel_x = 25; - pixel_y = -30; - req_access = list(7) - }, -/obj/machinery/button/remote/blast_door{ - id = "iso_b_purge"; - name = "PURGE Atmosphere"; - pixel_x = 25; - pixel_y = -38; - req_access = list(7) - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"ahm" = ( -/obj/machinery/atmospherics/valve/digital{ - name = "H2 to Mix valve" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ahn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - id_tag = "riso2"; - name = "Isolation B"; - req_access = list(65); - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/isolation_b) -"aho" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"ahp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"ahr" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/structure/sign/vacuum{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"ahs" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"aht" = ( -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) -"ahu" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/modular_computer/console/preset/engineering, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ahv" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/computer/atmos_alert, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ahw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ahx" = ( -/obj/machinery/atmospherics/binary/pump{ - name = "Mix to Main" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ahy" = ( -/obj/machinery/atmospherics/binary/pump{ - name = "O2 to Mix" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ahz" = ( -/obj/machinery/atmospherics/binary/pump{ - name = "Mix to Filtering" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ahA" = ( -/obj/machinery/atmospherics/binary/pump{ - name = "Mix to Vent" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ahB" = ( -/obj/machinery/atmospherics/binary/pump{ - name = "Filtering to Vent" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ahC" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ahG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/isolation_b) -"ahH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"ahI" = ( -/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/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"ahJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/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/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"ahK" = ( -/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/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"ahL" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"ahM" = ( -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"ahN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/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/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"ahO" = ( -/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/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/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"ahP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/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" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"ahQ" = ( -/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/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"ahR" = ( -/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/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"ahU" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "eng_sl_eva_inner"; - locked = 1; - luminosity = 1; - name = "Engineering Sub-Level EVA"; - req_access = list(10,13); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"ahV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/north{ - is_critical = 1 - }, -/turf/simulated/floor, -/area/maintenance/substation/engineering_sublevel) -"ahW" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Engineering Sublevel Subgrid"; - name_tag = "Engineering Sublevel Subgrid" - }, -/turf/simulated/floor, -/area/maintenance/substation/engineering_sublevel) -"ahX" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/bookcase/manuals/xenoarchaeology, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"ahY" = ( -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ahZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aia" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aib" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aic" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aid" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aie" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aif" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aig" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aih" = ( -/obj/machinery/alarm/west{ - pixel_x = -28 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"aik" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Isolation B"; - dir = 1; - network = list("Research Outpost","Anomaly Isolation") - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/power/apc/south, -/turf/simulated/floor/tiled/white, -/area/rnd/isolation_b) -"aim" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner_wide/yellow/full, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"ain" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"aio" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"aiq" = ( -/obj/machinery/firealarm/south, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"air" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Corridor Camera 2"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"ais" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"ait" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"aiv" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"aiw" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Engineering Sublevel" - }, -/turf/simulated/floor, -/area/maintenance/substation/engineering_sublevel) -"aix" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/cyan{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aiy" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aiz" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aiA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aiB" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - icon_state = "map_on"; - name = "Air to Pumps"; - target_pressure = 15000; - use_power = 1 - }, -/obj/machinery/firealarm/south, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/dark_blue, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aiC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aiD" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aiE" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aiF" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aiG" = ( -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) -"aiH" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aiI" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aiJ" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"aiL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 5 - }, -/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/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"aiM" = ( -/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/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"aiN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "iso_a"; - name = "Isolation A Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/isolation_a) -"aiO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_engineering{ - name = "Break Room"; - req_one_access = null; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"aiP" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced/steel, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"aiQ" = ( -/turf/simulated/wall/r_wall, -/area/engineering/gravity_gen) -"aiR" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = -32 - }, -/obj/machinery/door/airlock/engineering{ - name = "Gravity Room"; - req_access = list(11); - req_one_access = null; - dir = 1 - }, -/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, -/area/engineering/gravity_gen) -"aiS" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = -32 - }, -/turf/simulated/wall/r_wall, -/area/engineering/gravity_gen) -"aiT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"aiU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"aiV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "iso_a"; - name = "Isolation A Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/isolation_a) -"aiW" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/yellow{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aiX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aiY" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aiZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aja" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_atmos{ - name = "Distribution and Waste"; - req_access = list(24); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ajb" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/meter{ - id = "dloop_atm_meter" - }, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ajc" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ajd" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/meter{ - id = "dloop_atm_meter" - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aje" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ajf" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/phoron_scarce, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ajg" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/hydrogen, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ajh" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/sleeping_agent, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aji" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ajj" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ajk" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ajl" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ajm" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ajn" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/pipedispenser, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ajo" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"ajp" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/red{ - dir = 4 - }, -/obj/machinery/alarm/west{ - pixel_x = -28 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ajq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - id_tag = "riso1"; - name = "Isolation A"; - req_access = list(65); - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/isolation_a) -"ajr" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"ajt" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"aju" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/disposalpipe/junction{ - dir = 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, -/area/engineering/break_room) -"ajv" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"ajw" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/alarm/east{ - pixel_x = 28; - req_one_access = list(24,11,55) - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"ajx" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"ajy" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/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/engineering/break_room) -"ajz" = ( -/obj/structure/table/standard, -/obj/item/stack/material/plasteel{ - amount = 10 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Gravity Room"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"ajA" = ( -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"ajB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"ajC" = ( -/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 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"ajD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"ajE" = ( -/obj/machinery/power/apc/critical/north, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"ajF" = ( -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ajG" = ( -/obj/structure/closet/radiation, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"ajH" = ( -/obj/machinery/alarm/west{ - pixel_x = -28 - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"ajI" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ajJ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ajK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ajL" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "Waste to Filtering"; - use_power = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ajM" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/empty, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Atmospherics Distro" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ajN" = ( -/obj/machinery/atmospherics/binary/pump{ - name = "Air to Distro"; - target_pressure = 200; - use_power = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ajO" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - external_pressure_bound = 140; - external_pressure_bound_default = 140; - icon_state = "map_vent_out"; - name = "Atmospherics Vent"; - use_power = 1 - }, -/turf/simulated/open/airless, -/area/engineering/atmos) -"ajP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"ajQ" = ( -/obj/random/pottedplant, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"ajR" = ( -/obj/structure/window/reinforced, -/obj/machinery/chem_master, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"ajT" = ( -/obj/structure/bed/stool/chair, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/engineering/break_room) -"ajU" = ( -/obj/structure/bed/stool/chair, -/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/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/engineering/break_room) -"ajV" = ( -/turf/simulated/floor/carpet, -/area/engineering/break_room) -"ajW" = ( -/obj/structure/table/standard, -/obj/item/book/manual/gravitygenerator, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"ajX" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"ajY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"ajZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"aka" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"akc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_atmos{ - name = "Atmosphere Control"; - req_access = list(24); - dir = 1 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"akd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_atmos{ - name = "Atmosphere Control"; - req_access = list(24); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ake" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - name = "Universal pipe adapter (Waste Line)" - }, -/obj/machinery/meter{ - frequency = 1441; - id = "wloop_atm_meter" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"akf" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - name = "Universal pipe adapter (Waste Sampling)" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"akg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - name = "Universal pipe adapter (Distrib. Line)" - }, -/obj/machinery/meter{ - frequency = 1441; - id = "dloop_atm_meter" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aki" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"akj" = ( -/obj/structure/table/glass, -/obj/item/material/ashtray/bronze, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"akk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"akl" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"akm" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/standard, -/obj/machinery/chemical_dispenser/coffee/full, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"akn" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/engineering/break_room) -"ako" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"akp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/engineering/break_room) -"akq" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = -32 - }, -/obj/structure/grille, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/gravity_gen) -"akr" = ( -/obj/structure/grille, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/gravity_gen) -"akt" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Generator Chamber"; - req_access = list(11); - req_one_access = null; - dir = 1 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"aku" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"akv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"akw" = ( -/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/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"akx" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/engsublevel) -"aky" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"akz" = ( -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/engineering/atmos) -"akA" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"akB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/sign/securearea{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"akC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"akD" = ( -/obj/effect/landmark{ - name = "cavernspawn" - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) -"akE" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"akF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"akG" = ( -/turf/simulated/wall/r_wall, -/area/mine/unexplored) -"akH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/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 = 1 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"akI" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"akJ" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"akK" = ( -/obj/machinery/door/window{ - dir = 8; - icon_state = "right"; - name = "Canister Storage"; - req_access = list(7) - }, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/simulated/floor/reinforced, -/area/rnd/xenoarch_atrium) -"akL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"akM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"akN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"akO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"akP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"akQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"akR" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/simulated/floor/reinforced, -/area/rnd/xenoarch_atrium) -"akS" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/reinforced, -/area/rnd/xenoarch_atrium) -"akT" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"akU" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Canister Storage"; - req_access = list(7) - }, -/obj/machinery/portable_atmospherics/canister/phoron_scarce, -/turf/simulated/floor/reinforced, -/area/rnd/xenoarch_atrium) -"akV" = ( -/obj/machinery/portable_atmospherics/canister/sleeping_agent, -/turf/simulated/floor/reinforced, -/area/rnd/xenoarch_atrium) -"akW" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"akX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"akY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/blue{ - dir = 6 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"akZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_atmos{ - name = "Atmospherics"; - req_access = list(24); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ala" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"alb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"alc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Atmospherics Access"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ald" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance_hatch{ - req_access = list(24); - req_one_access = null; - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ale" = ( -/turf/simulated/mineral, -/area/mine/unexplored) -"alf" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"alg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"alh" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"ali" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"alj" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"alk" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"all" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenoarch_atrium) -"alm" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Xenobiology Cell Alpha"; - dir = 8; - network = list("Research Outpost","Xenobiology"); - pixel_y = -8 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"aln" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"alo" = ( -/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/structure/table/reinforced/wood, -/obj/random/pottedplant, -/turf/simulated/floor/carpet, -/area/engineering/break_room) -"alp" = ( -/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/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"alq" = ( -/obj/machinery/artifact_analyser, -/obj/effect/floor_decal/spline/plain/black{ - dir = 6 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/greengrid, -/area/rnd/xenoarch_atrium) -"alr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"als" = ( -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"alt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"alu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"alv" = ( -/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/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"alw" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"alx" = ( -/obj/machinery/firealarm/south, -/obj/effect/floor_decal/corner/yellow/full, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aly" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"alz" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"alA" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"alB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"alD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"alE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/storage_tesla) -"alF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"alG" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"alH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"alI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"alJ" = ( -/turf/simulated/floor, -/area/turbolift/engineering_maintenance) -"alK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"alM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"alN" = ( -/obj/machinery/alarm/west{ - pixel_x = -28 - }, -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"alO" = ( -/obj/machinery/gravity_generator/main/station, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"alP" = ( -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/rnd/eva) -"alQ" = ( -/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/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"alR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/engineering/backup_SMES) -"alS" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window{ - dir = 1; - name = "Suit Storage"; - req_access = list(7) - }, -/obj/structure/table/rack, -/obj/item/clothing/glasses/safety/goggles/science, -/obj/item/clothing/mask/gas/half{ - pixel_x = -6; - pixel_y = -4 - }, -/obj/item/clothing/gloves/latex/nitrile, -/obj/item/clothing/suit/hazmat/anomaly, -/obj/item/clothing/head/hazmat/anomaly, -/obj/machinery/door/window{ - base_state = "right"; - name = "Suit Storage"; - req_access = list(7) - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"alT" = ( -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"alU" = ( -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Gravity Chamber"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"alV" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor, -/area/turbolift/engineering_maintenance) -"alW" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor, -/area/turbolift/engineering_maintenance) -"alX" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window{ - base_state = "right"; - name = "Suit Storage"; - req_access = list(7) - }, -/obj/structure/table/rack, -/obj/item/clothing/glasses/safety/goggles/science, -/obj/item/clothing/mask/gas/half{ - pixel_x = -6; - pixel_y = -4 - }, -/obj/item/clothing/gloves/latex/nitrile, -/obj/item/clothing/suit/hazmat/anomaly, -/obj/item/clothing/head/hazmat/anomaly, -/obj/machinery/door/window{ - dir = 1; - name = "Suit Storage"; - req_access = list(7) - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"alY" = ( -/turf/simulated/wall/r_wall, -/area/turret_protected/ai) -"alZ" = ( -/obj/turbolift_map_holder/aurora/engineering, -/turf/simulated/floor, -/area/turbolift/engineering_maintenance) -"ama" = ( -/obj/structure/sign/drop, -/turf/simulated/wall/r_wall, -/area/mine/unexplored) -"amb" = ( -/obj/structure/sign/securearea{ - name = "\improper DANGER: REACTOR VENT SHAFT" - }, -/turf/simulated/wall/r_wall, -/area/mine/unexplored) -"amc" = ( -/turf/simulated/open/airless, -/area/mine/unexplored) -"amd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - id = "ccell_alpha"; - name = "Containment Cell Alpha" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/cells/alpha) -"ame" = ( -/obj/machinery/button/switch/crematorium{ - _wifi_id = "xenobio_crema"; - pixel_x = -32; - pixel_y = 25; - req_access = null - }, -/obj/effect/landmark{ - name = "borerstart" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"amf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Containment Pen"; - req_access = list(55) - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - id = "ccell_alpha"; - name = "Containment Cell Alpha" - }, -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/alpha) -"amg" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"amh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - id = "ccell_alpha"; - name = "Containment Cell Alpha" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/cells/alpha) -"ami" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"amj" = ( -/obj/machinery/door/window{ - base_state = "right"; - name = "Core Modules"; - req_access = list(20) - }, -/obj/structure/table/standard, -/obj/item/aiModule/robocop, -/obj/item/aiModule/paladin, -/obj/item/aiModule/corp, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"amk" = ( -/obj/machinery/door/window{ - base_state = "right"; - icon_state = "right"; - name = "Core Modules"; - req_access = list(20) - }, -/obj/structure/table/standard, -/obj/item/aiModule/freeformcore, -/obj/item/aiModule/asimov, -/obj/item/aiModule/nanotrasen, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"aml" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/open/airless, -/area/mine/unexplored) -"amm" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"amn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"amo" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"amp" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"amq" = ( -/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/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"amr" = ( -/obj/structure/cable{ - d1 = 1; - 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/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"ams" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"amt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"amu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"amv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - id = "ccell_bravo"; - name = "Containment Cell Bravo" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/cells/bravo) -"amw" = ( -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for shutters."; - id = "xenobio"; - name = "Xenobiology Emergency Lockdown Control"; - pixel_x = 25; - pixel_y = -5; - req_access = list(47); - req_one_access = null - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"amx" = ( -/obj/machinery/computer/aiupload, -/obj/item/device/radio/intercom/locked/west{ - frequency = 1343; - locked_frequency = 1343; - name = "Private AI Channel"; - pixel_y = 22 - }, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "cobweb1" - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"amy" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"amz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"amA" = ( -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"amB" = ( -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"amC" = ( -/obj/effect/decal/warning_stripes, -/obj/machinery/porta_turret{ - dir = 4 - }, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"amD" = ( -/obj/item/modular_computer/console/preset/ai, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"amE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"amF" = ( -/obj/machinery/door/window/southleft, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"amG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Containment Pen"; - req_access = list(55) - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - id = "ccell_bravo"; - name = "Containment Cell Bravo" - }, -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/bravo) -"amH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - id = "ccell_bravo"; - name = "Containment Cell Bravo" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/cells/bravo) -"amI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology) -"amJ" = ( -/obj/machinery/artifact_analyser, -/obj/effect/floor_decal/spline/plain/black{ - dir = 6 - }, -/turf/simulated/floor/bluegrid, -/area/rnd/isolation_a) -"amK" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - id = "iso_a_purge"; - name = "Exterior Blast Door" - }, -/turf/simulated/floor/plating, -/area/rnd/isolation_a) -"amL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/turret_protected/ai_cyborg_station) -"amM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/turret_protected/ai_cyborg_station) -"amN" = ( -/turf/simulated/wall/r_wall, -/area/turret_protected/ai_cyborg_station) -"amO" = ( -/turf/simulated/wall/r_wall, -/area/turret_protected/ai_upload_foyer) -"amP" = ( -/obj/structure/table/standard, -/obj/item/aiModule/nanotrasen, -/obj/item/aiModule/reset, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"amQ" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"amR" = ( -/obj/machinery/porta_turret{ - dir = 4 - }, -/obj/effect/decal/warning_stripes, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"amS" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "AICore"; - name = "AI core maintenance hatch"; - opacity = 0 - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating/cooled, -/area/turret_protected/ai) -"amT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"amV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"amW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"amX" = ( -/obj/machinery/camera/network/command{ - c_tag = "AI Core - Beta Core 2"; - dir = 1 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"amY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"amZ" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"ana" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "AI SMES"; - req_access = list(16); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "AICore"; - name = "AI core maintenance hatch"; - opacity = 0 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"anb" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"anc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"and" = ( -/obj/structure/sign/vacuum, -/turf/simulated/wall/r_wall, -/area/mine/unexplored) -"ane" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"anf" = ( -/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/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"ang" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - id = "ccell_charlie"; - name = "Containment Cell Charlie" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/cells/charlie) -"anh" = ( -/obj/effect/landmark{ - name = "cavernspawn" - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"ani" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/turret_protected/ai_cyborg_station) -"anj" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai_cyborg_station) -"ank" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/turret_protected/ai_cyborg_station) -"anl" = ( -/obj/structure/closet/crate{ - name = "Camera Assembly Crate" - }, -/obj/item/camera_assembly, -/obj/item/camera_assembly, -/obj/item/camera_assembly, -/obj/item/camera_assembly, -/obj/machinery/power/apc/north, -/obj/machinery/camera/network/command{ - c_tag = "AI Core - Cyborg Storage" - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = 12; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_cyborg_station) -"anm" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/turret_protected/ai_cyborg_station) -"ann" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/turret_protected/ai_cyborg_station) -"ano" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/north, -/obj/machinery/camera/network/command{ - c_tag = "AI Core - Upload Access" - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"anp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"anq" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"anr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"ans" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "AICore"; - name = "AI core maintenance hatch"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/cyan, -/turf/simulated/floor/plating/cooled, -/area/turret_protected/ai) -"ant" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/porta_turret{ - dir = 4 - }, -/obj/effect/decal/warning_stripes, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"anu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"anv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"anw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"anx" = ( -/obj/item/device/radio/intercom/east{ - frequency = 1343; - name = "Private Channel" - }, -/obj/item/device/radio/intercom/west{ - name = "Common Channel" - }, -/obj/item/device/radio/intercom/south{ - listening = 0; - name = "Custom Channel" - }, -/obj/effect/decal/warning_stripes, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/landmark{ - name = "tripai" - }, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"any" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "AI SMES"; - req_access = list(16); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"anz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/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/door/firedoor, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/turret_protected/ai_cyborg_station) -"anA" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Cyborg" - }, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/turret_protected/ai_cyborg_station) -"anB" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 8 - }, -/area/turret_protected/ai_cyborg_station) -"anC" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_cyborg_station) -"anD" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/turret_protected/ai_cyborg_station) -"anE" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Cyborg" - }, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/turret_protected/ai_cyborg_station) -"anF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/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/door/firedoor, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/turret_protected/ai_cyborg_station) -"anG" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"anH" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/porta_turret, -/obj/effect/decal/warning_stripes, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"anI" = ( -/obj/structure/cable/cyan{ - 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 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"anJ" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload"; - req_access = list(16); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/plasticflaps/airtight, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"anK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"anL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"anM" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating/cooled, -/area/turret_protected/ai) -"anN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating/cooled, -/area/turret_protected/ai) -"anO" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "AICore"; - name = "AI core maintenance hatch"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating/cooled, -/area/turret_protected/ai) -"anP" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"anQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"anR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"anS" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"anT" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/wall/r_wall, -/area/turret_protected/ai) -"anU" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/power/sensor{ - long_range = 1; - name = "Powernet Sensor - AI Subgrid"; - name_tag = "AI Subgrid" - }, -/turf/simulated/wall/r_wall, -/area/turret_protected/ai) -"anV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"anW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"anX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology) -"anY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Containment Pen"; - req_access = list(55) - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - id = "ccell_charlie"; - name = "Containment Cell Charlie" - }, -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/charlie) -"anZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aoa" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/cyan, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/turret_protected/ai_cyborg_station) -"aob" = ( -/obj/machinery/cryopod/robot, -/obj/item/toy/figure/borg, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai_cyborg_station) -"aoc" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/turret_protected/ai_cyborg_station) -"aod" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/blood/oil/streak{ - amount = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_cyborg_station) -"aoe" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/turret_protected/ai_cyborg_station) -"aof" = ( -/obj/machinery/cryopod/robot, -/obj/machinery/computer/cryopod/robot{ - pixel_y = -32 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai_cyborg_station) -"aog" = ( -/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 = 8 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"aoh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"aoi" = ( -/obj/item/device/radio/intercom/locked/east{ - frequency = 1343; - locked_frequency = 1343; - name = "Private AI Channel"; - pixel_y = -5 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"aoj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/motion{ - c_tag = "AI Core - Upload Room"; - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"aok" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"aol" = ( -/obj/machinery/hologram/holopad, -/obj/item/trash/cigbutt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"aom" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "ai_core_airlock"; - name = "exterior access button"; - pixel_x = 27; - pixel_y = -26; - req_one_access = list(13) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/airlock_sensor/airlock_exterior{ - frequency = 1380; - id_tag = "ai_core_sensor_exterior"; - master_tag = null; - pixel_x = 35; - pixel_y = 25 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"aon" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "ai_core_outer"; - locked = 1; - name = "Outer Core Airlock"; - req_access = list(13); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/cooled, -/area/turret_protected/ai) -"aoo" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "ai_core_airlock"; - name = "AI Core airlock controller"; - pixel_y = 30; - req_one_access = list(13); - tag_airpump = "ai_core_pump"; - tag_chamber_sensor = "ai_core_sensor"; - tag_exterior_door = "ai_core_outer"; - tag_exterior_sensor = "ai_core_sensor_exterior"; - tag_interior_door = "ai_core_inner"; - tag_interior_sensor = "ai_core_sensor_interior" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "ai_core_sensor"; - pixel_y = -25 - }, -/obj/machinery/light/small, -/obj/effect/decal/warning_stripes, -/obj/effect/decal/remains/rat, -/obj/machinery/camera/network/command{ - c_tag = "AI Core - Core Airlock" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "ai_core_pump" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/cooled, -/area/turret_protected/ai) -"aop" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "ai_core_inner"; - locked = 1; - name = "Inner Core Airlock"; - req_access = list(13); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/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/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "AICore"; - name = "AI core maintenance hatch"; - opacity = 0 - }, -/turf/simulated/floor/plating/cooled, -/area/turret_protected/ai) -"aoq" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "ai_core_airlock"; - name = "interior access button"; - pixel_x = -27; - pixel_y = 25; - req_access = list(13) - }, -/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/machinery/airlock_sensor/airlock_interior{ - frequency = 1380; - id_tag = "ai_core_sensor_interior"; - master_tag = null; - pixel_x = -35; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"aor" = ( -/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/machinery/ai_slipper, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"aos" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"aot" = ( -/obj/machinery/flasher{ - id = "AI"; - pixel_x = 22; - pixel_y = 36 - }, -/obj/machinery/turretid/stun{ - check_synth = 1; - name = "AI Chamber turret control"; - pixel_x = 36; - pixel_y = 36 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "AI Core Door"; - req_access = list(16) - }, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"aou" = ( -/obj/item/device/radio/intercom/north{ - listening = 0; - name = "Custom Channel" - }, -/obj/item/device/radio/intercom/south{ - frequency = 1343; - name = "Private Channel" - }, -/obj/item/device/radio/intercom/east{ - name = "Common Channel"; - pixel_y = -3 - }, -/obj/machinery/newscaster/security_unit/east{ - pixel_y = 32 - }, -/obj/machinery/requests_console/east{ - department = "AI"; - departmentType = 5; - pixel_y = -32 - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the AI core maintenance door."; - id = "AICore"; - name = "AI Maintenance Hatch"; - pixel_x = 17; - pixel_y = 25; - req_access = list(20) - }, -/obj/effect/decal/warning_stripes, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/landmark/start{ - name = "AI" - }, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"aov" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall, -/area/turret_protected/ai) -"aow" = ( -/obj/effect/decal/warning_stripes, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/cyan, -/obj/machinery/ai_slipper, -/obj/machinery/power/smes/buildable{ - charge = 5000000; - input_attempt = 1; - input_level = 200000; - output_attempt = 1; - output_level = 200000 - }, -/obj/machinery/camera/network/command{ - c_tag = "AI Core - SMES Room 2"; - dir = 4 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"aox" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "AI SMES"; - req_access = list(16); - dir = 4 - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "AICore"; - name = "AI core maintenance hatch"; - opacity = 0 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"aoy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"aoz" = ( -/obj/effect/decal/warning_stripes, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/porta_turret{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"aoA" = ( -/obj/machinery/camera/network/command{ - c_tag = "AI Core - SMES Room 1"; - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "spiderling"; - name = "dead greimorian" - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"aoB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/r_wall, -/area/turret_protected/ai) -"aoC" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/wall, -/area/turret_protected/ai) -"aoD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - id = "ccell_charlie"; - name = "Containment Cell Charlie" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/cells/charlie) -"aoE" = ( -/obj/machinery/anti_bluespace, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"aoF" = ( -/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/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aoG" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Cyborg Station"; - req_access = list(16); - dir = 1 - }, -/obj/effect/decal/cleanable/blood/oil/streak{ - amount = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"aoH" = ( -/obj/machinery/door/window/northleft{ - req_access = list(16) - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 1 - }, -/area/turret_protected/ai_upload_foyer) -"aoI" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"aoJ" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"aoK" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload"; - req_access = list(16); - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/structure/plasticflaps/airtight, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"aoL" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"aoM" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"aoN" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating/cooled, -/area/turret_protected/ai) -"aoO" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating/cooled, -/area/turret_protected/ai) -"aoP" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "AICore"; - name = "AI core maintenance hatch"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating/cooled, -/area/turret_protected/ai) -"aoQ" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"aoR" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"aoS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"aoT" = ( -/obj/machinery/power/apc/super/critical/east, -/obj/machinery/camera/network/command{ - c_tag = "AI Core - Alpha Core"; - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"aoU" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/wall/r_wall, -/area/turret_protected/ai) -"aoV" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/wall/r_wall, -/area/turret_protected/ai) -"aoW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/mob/living/silicon/robot/shell, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"aoX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"aoY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/alarm/east{ - pixel_x = 28 - }, -/obj/machinery/atmospherics/binary/pump{ - icon_state = "map_on"; - name = "Distro to Canisters"; - target_pressure = 150; - use_power = 1 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"aoZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall, -/area/turret_protected/ai) -"apa" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"apb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - id = "ccell_delta"; - name = "Containment Cell Delta" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/cells/delta) -"apc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance{ - req_access = null; - req_one_access = list(55); - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/rnd/xenobiology) -"apd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Containment Pen"; - req_access = list(55) - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - id = "ccell_delta"; - name = "Containment Cell Delta" - }, -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/delta) -"ape" = ( -/turf/simulated/wall/r_wall, -/area/turret_protected/ai_server_room) -"apf" = ( -/obj/machinery/shieldwallgen, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"apg" = ( -/obj/item/device/radio/intercom/locked/west{ - frequency = 1343; - locked_frequency = 1343; - name = "Private AI Channel"; - pixel_y = 22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"aph" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"api" = ( -/obj/machinery/alarm/north, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"apj" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/ramp{ - dir = 1 - }, -/area/turret_protected/ai_upload_foyer) -"apk" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"apl" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"apm" = ( -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/tank/emergency_oxygen, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"apn" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "AICore"; - name = "AI core maintenance hatch"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/cyan, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating/cooled, -/area/turret_protected/ai) -"apo" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/porta_turret{ - dir = 4 - }, -/obj/effect/decal/warning_stripes, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"app" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"apq" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"apr" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"aps" = ( -/obj/item/device/radio/intercom/east{ - frequency = 1343; - name = "Private Channel" - }, -/obj/item/device/radio/intercom/west{ - name = "Common Channel" - }, -/obj/item/device/radio/intercom/north{ - listening = 0; - name = "Custom Channel" - }, -/obj/effect/decal/warning_stripes, -/obj/structure/cable/cyan, -/obj/effect/landmark{ - name = "tripai" - }, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"apt" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "AI SMES"; - req_access = list(16); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/turret_protected/ai) -"apu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - id = "ccell_delta"; - name = "Containment Cell Delta" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/cells/delta) -"apv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "ccell_hotel"; - name = "Containment Cell Hotel" - }, -/obj/structure/cable/green, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/cells/hotel) -"apw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/door/window/brigdoor/southright{ - name = "Containment Pen"; - req_access = list(55) - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "ccell_hotel"; - name = "Containment Cell Hotel" - }, -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/hotel) -"apx" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "ccell_hotel"; - name = "Containment Cell Hotel" - }, -/obj/structure/cable/green, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/cells/hotel) -"apy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "ccell_golf"; - name = "Containment Cell Golf" - }, -/obj/structure/cable/green, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/cells/golf) -"apz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/door/window/brigdoor/southright{ - name = "Containment Pen"; - req_access = list(55) - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "ccell_golf"; - name = "Containment Cell Golf" - }, -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/golf) -"apA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "ccell_golf"; - name = "Containment Cell Golf" - }, -/obj/structure/cable/green, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/cells/golf) -"apB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "ccell_foxtrot"; - name = "Containment Cell Foxtrot" - }, -/obj/structure/cable/green, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/cells/foxtrot) -"apC" = ( -/obj/machinery/computer/message_monitor, -/obj/machinery/firealarm/west, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai_server_room) -"apD" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/hologram/holopad, -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/alarm/east{ - pixel_x = 28 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai_server_room) -"apE" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"apF" = ( -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"apG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"apH" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"apI" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "spiderling"; - name = "dead greimorian" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"apJ" = ( -/obj/machinery/hologram/holopad, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"apK" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/alarm/east{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"apL" = ( -/obj/structure/table/standard, -/obj/item/aiModule/freeform, -/obj/item/aiModule/protectStation, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/chips, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"apM" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"apN" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "AICore"; - name = "AI core maintenance hatch"; - opacity = 0 - }, -/obj/structure/cable/cyan, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating/cooled, -/area/turret_protected/ai) -"apO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"apP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"apQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/alarm/cold/south, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"apR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"apS" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"apT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"apU" = ( -/obj/machinery/camera/network/command{ - c_tag = "AI Core - Beta Core 1" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"apV" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "AI SMES"; - req_access = list(16); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "AICore"; - name = "AI core maintenance hatch"; - opacity = 0 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"apW" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"apX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"apY" = ( -/obj/structure/cable{ - d1 = 16; - d2 = 0; - icon_state = "12-0" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/engsublevel) -"apZ" = ( -/obj/effect/decal/warning_stripes, -/obj/structure/ladder/up{ - pixel_y = 16 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/engsublevel) -"aqa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/door/window/brigdoor/southright{ - name = "Containment Pen"; - req_access = list(55) - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "ccell_foxtrot"; - name = "Containment Cell Foxtrot" - }, -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/foxtrot) -"aqb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "ccell_foxtrot"; - name = "Containment Cell Foxtrot" - }, -/obj/structure/cable/green, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/cells/foxtrot) -"aqc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "ccell_echo"; - name = "Containment Cell Echo" - }, -/obj/structure/cable/green, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/cells/echo) -"aqd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/door/window/brigdoor/southright{ - name = "Containment Pen"; - req_access = list(55) - }, -/obj/machinery/door/firedoor, -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "ccell_echo"; - name = "Containment Cell Echo" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/echo) -"aqe" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable/green, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "ccell_echo"; - name = "Containment Cell Echo" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio"; - name = "Xenobiology Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/cells/echo) -"aqf" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/device/radio/intercom/west, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_server_room) -"aqg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_server_room) -"aqh" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Messaging Server"; - req_access = list(16); - 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/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"aqi" = ( -/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/structure/cable/cyan{ - 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, -/area/turret_protected/ai_upload_foyer) -"aqj" = ( -/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 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"aqk" = ( -/obj/machinery/porta_turret, -/obj/effect/decal/warning_stripes, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"aql" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload Access"; - req_access = list(16); - 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/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) -"aqm" = ( -/obj/item/device/radio/intercom/locked/west{ - frequency = 1343; - locked_frequency = 1343; - name = "Private AI Channel"; - pixel_y = -27 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"aqn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/cyan{ - 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 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"aqo" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"aqp" = ( -/obj/machinery/computer/borgupload, -/obj/item/device/radio/intercom/locked/west{ - frequency = 1343; - locked_frequency = 1343; - name = "Private AI Channel"; - pixel_y = -27 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"aqq" = ( -/obj/machinery/computer/robotics, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"aqr" = ( -/obj/machinery/alarm/cold/south, -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"aqs" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/modular_computer/console/preset/ai, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"aqt" = ( -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"aqu" = ( -/obj/machinery/door/window/northright, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"aqv" = ( -/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{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"aqw" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"aqx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "sl1"; - pixel_x = 26; - req_access = list(13) - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"aqy" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"aqz" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"aqA" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"aqB" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing_library) -"aqC" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Patient Wing Hallway" - }, -/obj/item/device/radio/intercom/north, -/obj/effect/floor_decal/corner_wide/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aqD" = ( -/obj/structure/sign/patients_only{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner_wide/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aqE" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/bed/stool/chair/padded/teal{ - dir = 4 - }, -/obj/machinery/power/apc/south, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aqF" = ( -/obj/structure/table/wood, -/obj/item/storage/pill_bottle/dice/gaming, -/obj/item/storage/pill_bottle/dice, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Patient Wing Library"; - dir = 1 - }, -/turf/simulated/floor/wood, -/area/medical/patient_wing_library) -"aqG" = ( -/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 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"aqH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"aqI" = ( -/obj/machinery/telecomms/message_server, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai_server_room) -"aqJ" = ( -/obj/machinery/camera/network/command{ - c_tag = "AI Core - Messaging Server"; - dir = 1 - }, -/obj/machinery/blackbox_recorder, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai_server_room) -"aqK" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"aqL" = ( -/turf/simulated/wall/r_wall, -/area/tcommsat/mainlvl_tcomms__relay) -"aqM" = ( -/obj/structure/plasticflaps/airtight, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "Telecommunications Relay"; - req_access = list(61); - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/mainlvl_tcomms__relay) -"aqN" = ( -/obj/machinery/door/window{ - dir = 1; - name = "High-Risk Modules"; - req_access = list(20) - }, -/obj/structure/table/standard, -/obj/item/aiModule/teleporterOffline, -/obj/item/aiModule/antimov, -/obj/item/aiModule/purge, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"aqO" = ( -/obj/machinery/door/window{ - dir = 1; - icon_state = "right"; - name = "High-Risk Modules"; - req_access = list(20) - }, -/obj/structure/table/standard, -/obj/item/aiModule/oneHuman, -/obj/item/aiModule/oxygen, -/obj/item/aiModule/freeformcore, -/turf/simulated/floor/bluegrid/cooled, -/area/turret_protected/ai) -"aqP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/engsublevel) -"aqQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/engsublevel) -"aqR" = ( -/obj/structure/window/reinforced, -/obj/machinery/chemical_dispenser/full, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"aqS" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Supermatter Cooling Access"; - req_access = list(11); - dir = 4 - }, -/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/plating{ - roof_type = null - }, -/area/maintenance/engsublevel) -"aqT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"aqU" = ( -/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 - }, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"aqV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - req_access = list(12); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"aqW" = ( -/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/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"aqX" = ( -/obj/structure/cable{ - 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 - }, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"aqY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/power/apc/south, -/obj/structure/cable{ - 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{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"aqZ" = ( -/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/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "sl1i"; - locked = 1; - req_access = list(13); - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"ara" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "sl1"; - pixel_y = 32; - req_access = list(13); - tag_airpump = "sl1p"; - tag_chamber_sensor = "sl1s"; - tag_exterior_door = "sl1o"; - tag_interior_door = "sl1i" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"arb" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/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/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"arc" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "sl1o"; - locked = 1; - req_access = list(13); - 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" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"ard" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"are" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"arf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"arg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"arh" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"ari" = ( -/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/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"arj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/reinforced, -/area/rnd/isolation_a) -"ark" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"arl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/valve/digital/open{ - dir = 4; - name = "Isolation A" - }, -/obj/machinery/button/remote/airlock{ - id = "riso1"; - name = "Door Bolt Control"; - pixel_x = 25; - pixel_y = -22; - specialfunctions = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "iso_a"; - name = "Blast Door Control"; - pixel_x = 25; - pixel_y = -30; - req_access = list(7) - }, -/obj/machinery/button/remote/blast_door{ - id = "iso_a_purge"; - name = "PURGE Atmosphere"; - pixel_x = 25; - pixel_y = -38; - req_access = list(7) - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"arm" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Isolation A"; - dir = 1; - network = list("Research Outpost","Anomaly Isolation") - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/power/apc/south, -/turf/simulated/floor/tiled/white, -/area/rnd/isolation_a) -"arn" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/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 = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"aro" = ( -/obj/machinery/atmospherics/pipe/simple/visible/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 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"arp" = ( -/obj/machinery/alarm/west{ - pixel_x = -28 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"arq" = ( -/obj/machinery/shieldwallgen, -/obj/structure/cable/cyan, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"arr" = ( -/obj/machinery/camera/network/command{ - c_tag = "AI Core - Lobby"; - dir = 1 - }, -/obj/structure/extinguisher_cabinet/south, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"ars" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"art" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"aru" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 - }, -/area/tcommsat/mainlvl_tcomms__relay) -"arv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/mainlvl_tcomms__relay) -"arw" = ( -/obj/machinery/alarm/cold/east, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 - }, -/area/tcommsat/mainlvl_tcomms__relay) -"arx" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/wall, -/area/mine/unexplored) -"ary" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/wall, -/area/mine/unexplored) -"arz" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/black, -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - icon_state = "map_on"; - name = "Distro to Canisters"; - target_pressure = 150; - use_power = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/engsublevel) -"arA" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/green, -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/engsublevel) -"arB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/engsublevel) -"arC" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"arD" = ( -/turf/simulated/wall, -/area/maintenance/engsublevel) -"arE" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1379; - id_tag = "sl1p" - }, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"arF" = ( -/obj/machinery/airlock_sensor{ - id_tag = "sl1s"; - master_tag = "sl1"; - pixel_y = -26 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1379; - id_tag = "sl1p" - }, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"arG" = ( -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Cavern Entrance"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "sl1"; - pixel_x = -26; - req_access = list(13) - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/maintenance/engsublevel) -"arH" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"arI" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"arJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"arK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"arL" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 4 - }, -/obj/effect/floor_decal/sign/a, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"arM" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/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/white, -/area/rnd/xenoarch_atrium) -"arN" = ( -/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/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"arO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"arP" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/meter, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"arQ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"arR" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/effect/floor_decal/corner_wide/mauve/full, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"arS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/rnd/eva) -"arT" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/eva) -"arU" = ( -/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/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"arV" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload Access"; - req_access = list(16); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"arW" = ( -/obj/machinery/camera/network/command{ - c_tag = "Command - Telecomms Main Level Relay"; - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/power/apc/south, -/obj/structure/cable/cyan, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 - }, -/area/tcommsat/mainlvl_tcomms__relay) -"arX" = ( -/obj/structure/sign/nosmoking_1{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/mainlvl_tcomms__relay) -"arY" = ( -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 - }, -/area/tcommsat/mainlvl_tcomms__relay) -"arZ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall, -/area/mine/unexplored) -"asa" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/engsublevel) -"asb" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/engsublevel) -"asc" = ( -/obj/structure/sign/drop{ - pixel_x = 32 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/engsublevel) -"asd" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"ase" = ( -/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/disposalpipe/segment, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"asf" = ( -/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/tiled/white, -/area/rnd/xenoarch_atrium) -"asg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"ash" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"asi" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"asj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"ask" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"asl" = ( -/obj/item/device/radio/intercom/locked/west{ - frequency = 1343; - locked_frequency = 1343; - name = "Private AI Channel"; - pixel_y = -5 - }, -/obj/machinery/turretid/stun{ - name = "AI Upload turret control"; - pixel_x = 24; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/turret_protected/ai_upload_foyer) -"asm" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/zpipe/down/black{ - dir = 1 - }, -/turf/simulated/open, -/area/maintenance/engsublevel) -"asn" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/zpipe/down/green{ - dir = 1 - }, -/turf/simulated/open, -/area/maintenance/engsublevel) -"aso" = ( -/obj/structure/ladder, -/turf/simulated/open, -/area/maintenance/engsublevel) -"asp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"asq" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/isolation_b) -"asr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"ass" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/sign/c, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"ast" = ( -/obj/machinery/power/emitter{ - anchored = 1; - dir = 4; - state = 2 - }, -/obj/structure/lattice/catwalk/indoor, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"asu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"asv" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"asw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/turret_protected/ai_upload_foyer) -"asx" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera/motion{ - c_tag = "AI Core - Entrance"; - pixel_x = 16 - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"asy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall, -/area/mine/unexplored) -"asz" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/isolation_a) -"asA" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/turret_protected/ai_upload_foyer) -"asB" = ( -/obj/structure/window/reinforced, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"asC" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"asD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/hologram/holopad{ - }, -/turf/simulated/floor, -/area/turret_protected/ai_upload_foyer) -"asE" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"asG" = ( -/turf/simulated/floor, -/area/turret_protected/ai_upload_foyer) -"asH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor, -/area/turret_protected/ai_upload_foyer) -"asI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor, -/area/turret_protected/ai_upload_foyer) -"asJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light/small/emergency, -/turf/simulated/floor, -/area/turret_protected/ai_upload_foyer) -"asK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor, -/area/bridge/aibunker) -"asL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor, -/area/bridge/aibunker) -"asM" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"asN" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"asO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/bridge/aibunker) -"asP" = ( -/turf/simulated/floor, -/area/turbolift/ai_sub) -"asQ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"asR" = ( -/turf/simulated/wall/r_wall, -/area/bridge/aibunker) -"asS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall, -/area/bridge/aibunker) -"asT" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/analysis) -"asU" = ( -/obj/structure/table/steel, -/obj/machinery/alarm/north{ - alarm_id = 1504; - breach_detection = 0; - name = "Harvesting Room"; - rcon_setting = 3; - report_danger_level = 0; - req_one_access = list(7,47,24,11) - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Exotic Energies Harvesting"; - network = list("Research Outpost","Anomaly Isolation") - }, -/obj/item/anodevice{ - pixel_x = -4 - }, -/obj/item/anodevice{ - pixel_x = 2; - pixel_y = 4 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/anomaly_harvest) -"asV" = ( -/obj/machinery/alarm/north, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly_storage) -"asW" = ( -/obj/machinery/power/portgen/basic, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/bridge/aibunker) -"asX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/closet/walllocker/firecloset{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/bridge/aibunker) -"asY" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/bridge/aibunker) -"asZ" = ( -/turf/simulated/wall, -/area/bridge/aibunker) -"ata" = ( -/obj/item/modular_computer/console/preset/security, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"atb" = ( -/obj/item/modular_computer/console/preset/engineering, -/obj/structure/sign/flag/scc{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"atc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"atd" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/remote/airlock{ - id = "bunker1"; - name = "Bunker Exterior Access Bolts"; - pixel_x = 26; - req_access = list(20); - specialfunctions = 4 - }, -/obj/item/storage/toolbox/emergency, -/obj/item/bodybag, -/obj/item/ladder_mobile, -/obj/machinery/computer/security/telescreen{ - name = "Access Monitor"; - network = list("Bunker"); - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"ate" = ( -/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/button/remote/airlock{ - id = "harvd"; - name = "Door Bolt Control"; - pixel_y = 25; - specialfunctions = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"atf" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/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/white, -/area/rnd/xenoarch_atrium) -"atg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"ath" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"ati" = ( -/obj/machinery/light/small, -/turf/simulated/floor, -/area/turbolift/ai_sub) -"atj" = ( -/obj/structure/closet/crate{ - name = "Emergency Fuel" - }, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/bridge/aibunker) -"atk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/bridge/aibunker) -"atl" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/super/east, -/turf/simulated/floor, -/area/bridge/aibunker) -"atm" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/item/device/radio/intercom/west, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"atn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"ato" = ( -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"atp" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "bunker2"; - name = "Bunker Outer Airlock Bolt Control"; - pixel_x = 26; - req_access = list(20); - specialfunctions = 4 - }, -/obj/item/device/radio, -/obj/machinery/button/remote/blast_door{ - id = "blast_bunker1"; - name = "Entrance Blast Door Control"; - pixel_x = 38; - req_access = list(20) - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"atq" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"atr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"ats" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Suit Storage"; - req_access = list(7) - }, -/obj/structure/table/rack, -/obj/item/clothing/glasses/safety/goggles/science, -/obj/item/clothing/mask/gas/half{ - pixel_x = -6; - pixel_y = -4 - }, -/obj/item/clothing/gloves/latex/nitrile, -/obj/item/clothing/suit/hazmat/anomaly, -/obj/item/clothing/head/hazmat/anomaly, -/obj/machinery/door/window{ - base_state = "right"; - name = "Suit Storage"; - req_access = list(7) - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"att" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"atu" = ( -/obj/turbolift_map_holder/aurora/aiaccess, -/turf/simulated/floor, -/area/turbolift/ai_sub) -"atv" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access = list(56); - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor, -/area/bridge/aibunker) -"atw" = ( -/obj/machinery/newscaster/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"atx" = ( -/obj/effect/decal/cleanable/ash, -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"aty" = ( -/obj/item/modular_computer/console/preset/medical, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"atz" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/reinforced/steel, -/obj/item/storage/box/beakers, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"atA" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced/steel, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"atB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"atC" = ( -/obj/structure/closet/walllocker/firecloset{ - pixel_x = -30 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"atD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"atF" = ( -/obj/structure/table/rack{ - dir = 1 - }, -/obj/item/clothing/suit/fire, -/obj/item/tank/oxygen, -/obj/item/clothing/mask/gas, -/obj/item/extinguisher, -/obj/item/clothing/head/hardhat/red, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"atG" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"atH" = ( -/obj/effect/decal/warning_stripes, -/obj/structure/ladder/up{ - pixel_y = 16 - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"atI" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/sign/securearea{ - name = "\improper ONLY COMMAND STAFF"; - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/bridge/aibunker) -"atJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "blast_bunker1"; - name = "Bunker Blast Door"; - opacity = 0 - }, -/obj/machinery/door/airlock/hatch{ - desc = "It opens and closes. It has a small sign engraved: Bunker capacity: 6. Only facility's Command Staff is permitted."; - icon_state = "door_locked"; - id_tag = "bunker3"; - locked = 1; - name = "Command Bunker"; - req_access = list(19); - secured_wires = 1; - dir = 4 - }, -/turf/simulated/floor, -/area/bridge/aibunker) -"atK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/item/device/radio/intercom/locked/north{ - frequency = 1347; - locked_frequency = 1347; - name = "Bunker Entrance Intercom" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"atL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"atM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan, -/obj/machinery/meter{ - name = "Air Reserve" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"atN" = ( -/obj/machinery/door/airlock/highsecurity{ - id_tag = null; - name = "Auxiliary Commanding Post"; - req_access = list(19); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"atO" = ( -/obj/machinery/alarm/north, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"atP" = ( -/obj/machinery/firealarm/south, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"atQ" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/machinery/case_button/shuttle{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"atR" = ( -/obj/item/modular_computer/console/preset/command, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"atS" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"atT" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"atU" = ( -/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/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"atV" = ( -/obj/machinery/artifact_scanpad, -/obj/effect/floor_decal/spline/plain/black{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 6 - }, -/turf/simulated/floor/greengrid, -/area/rnd/xenoarch_atrium) -"atW" = ( -/obj/structure/table/rack, -/obj/item/pickaxe/drill{ - pixel_y = -5 - }, -/obj/item/pickaxe/drill{ - pixel_y = 5 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"atX" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "research_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "research_airlock"; - pixel_x = -28; - tag_airpump = "research_pump"; - tag_chamber_sensor = "research_sensor"; - tag_exterior_door = "research_outer"; - tag_interior_door = "research_inner" - }, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"atY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/structure/table/steel, -/obj/item/stack/flag/purple, -/obj/item/stack/flag/purple, -/obj/item/storage/box/excavation, -/obj/item/wrench, -/obj/item/device/measuring_tape, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/pickaxe/drill, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"atZ" = ( -/obj/structure/table/steel, -/obj/item/stack/flag/green, -/obj/item/stack/flag/green, -/obj/item/storage/box/excavation, -/obj/item/wrench, -/obj/item/device/measuring_tape, -/obj/item/pickaxe/drill, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"aua" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/rnd/eva) -"aub" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/obj/structure/closet/crate, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"auc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/rnd/eva) -"aud" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"aue" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"auf" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly_harvest) -"aug" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"auh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/corner/dark_green{ - icon_state = "preview_threethirds" - }, -/obj/machinery/alarm/north, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = -4; - pixel_y = -5 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/analysis) -"aui" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "sl3"; - pixel_x = 26; - req_access = list(13) - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"auj" = ( -/obj/machinery/light/small/emergency, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/turret_protected/ai_upload_foyer) -"auk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor, -/area/bridge/aibunker) -"aul" = ( -/obj/machinery/light/small/emergency, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor, -/area/bridge/aibunker) -"aum" = ( -/obj/machinery/door/airlock/highsecurity{ - id_tag = "bunker1"; - name = "Command Bunker Access"; - req_access = list(19); - 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, -/area/bridge/aibunker) -"aun" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"auo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"aup" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/button/remote/airlock{ - id = "bunker3"; - name = "Bunker Inner Airlock Bolt Control"; - pixel_x = 26; - req_access = list(19); - specialfunctions = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/bridge/aibunker) -"auq" = ( -/obj/machinery/button/remote/airlock{ - id = "bunker3"; - name = "Bunker Inner Airlock Bolt Control"; - pixel_x = -26; - req_access = list(19); - specialfunctions = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"aur" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/vending/wallmed2{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"aus" = ( -/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/machinery/alarm/east{ - pixel_x = 28; - req_one_access = list(24,11,55) - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"aut" = ( -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"auu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/alarm/south{ - alarm_id = 1503; - breach_detection = 0; - name = "Isolation C"; - rcon_setting = 3; - report_danger_level = 0; - req_one_access = list(7,47,24,11) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/isolation_c) -"auv" = ( -/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/alarm/east{ - pixel_x = 28 - }, -/turf/simulated/floor, -/area/maintenance/medsublevel) -"auw" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/dispenser/oxygen, -/obj/machinery/alarm/east{ - pixel_x = 28; - req_one_access = list(24,11,55) - }, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"aux" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/alarm/south{ - alarm_id = 1502; - breach_detection = 0; - name = "Isolation B"; - rcon_setting = 3; - report_danger_level = 0; - req_one_access = list(7,47,24,11) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/isolation_b) -"auy" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 1 - }, -/obj/machinery/alarm/east{ - pixel_x = 28; - req_one_access = list(24,11,55) - }, -/obj/structure/table/standard, -/obj/random/loot, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"auz" = ( -/obj/machinery/alarm/east{ - pixel_x = 28; - req_one_access = list(24,11,55) - }, -/obj/effect/floor_decal/corner_wide/lime/full{ - dir = 1 - }, -/obj/structure/bed/stool/chair/plastic, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"auA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"auB" = ( -/obj/machinery/alarm/east{ - alarm_id = 1601; - name = "Hazardous Specimens"; - req_one_access = list(24,11,55) - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, -/obj/effect/floor_decal/corner_wide/red/full{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"auC" = ( -/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/alarm/east{ - pixel_x = 28; - req_one_access = list(24,11,55) - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"auD" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/structure/closet/crate, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"auE" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/alarm/south{ - alarm_id = 1501; - breach_detection = 0; - name = "Isolation A"; - rcon_setting = 3; - report_danger_level = 0; - req_one_access = list(7,47,24,11) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/isolation_a) -"auF" = ( -/obj/machinery/radiocarbon_spectrometer, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/analysis) -"auG" = ( -/obj/machinery/alarm/north{ - req_one_access = list(24,11,55) - }, -/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/atmospherics/binary/pump{ - dir = 4; - name = "Hazardous Specimens Outlet" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/light/small, -/obj/effect/floor_decal/corner_wide/red{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"auH" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - icon_state = "map_on"; - name = "Distro to Canisters"; - target_pressure = 150; - use_power = 1 - }, -/obj/machinery/alarm/west{ - pixel_x = -28 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"auI" = ( -/obj/machinery/alarm/west{ - pixel_x = -28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/table/standard, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/storage/box/fancy/vials{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/item/storage/box/syringes, -/obj/item/storage/box/beakers{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"auJ" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"auK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"auL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/alarm/north, -/obj/machinery/light_construct, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"auM" = ( -/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/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"auN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "sl3o"; - locked = 1; - req_access = list(13); - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"auO" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/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/machinery/camera/network/engineering{ - c_tag = "Engineering - AI Maint EVA" - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"auP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "sl3"; - pixel_y = 32; - req_access = list(13); - tag_airpump = "sl3p"; - tag_chamber_sensor = "sl3s"; - tag_exterior_door = "sl3o"; - tag_interior_door = "sl3i" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"auQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"auR" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"auS" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"auT" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"auU" = ( -/obj/structure/table/rack{ - dir = 1 - }, -/obj/item/tank/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"auV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Bunker Entrance"; - dir = 8; - network = list("Command","Bunker") - }, -/obj/item/device/radio/intercom/locked/east{ - frequency = 1347; - locked_frequency = 1347; - name = "Bunker Entrance Intercom" - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"auW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "bunker2"; - name = "Bunker Outer Airlock Bolt Control"; - pixel_x = -26; - req_access = list(20); - specialfunctions = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor, -/area/bridge/aibunker) -"auX" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = -26 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/structure/bed/stool, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"auY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"auZ" = ( -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"ava" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"avb" = ( -/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/machinery/alarm/north, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"avd" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "research_airlock"; - name = "Exterior access button"; - pixel_x = -27; - pixel_y = -25; - req_one_access = list(13,65) - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"ave" = ( -/obj/structure/closet/hazmat/research, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/alarm/north, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"avf" = ( -/obj/structure/table/standard, -/obj/machinery/recharger, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"avg" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1 - }, -/obj/structure/ore_box, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"avh" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/alarm/west{ - pixel_x = -28 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"avi" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/alarm/north, -/obj/structure/flora/ausbushes/genericbush, -/turf/simulated/floor/grass, -/area/medical/patient_wing_picnic) -"avj" = ( -/obj/machinery/alarm/east{ - pixel_x = 28 - }, -/obj/machinery/light{ - dir = 4; - name = "broken light fixture"; - status = 2 - }, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"avk" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/alarm/east{ - pixel_x = 28 - }, -/obj/structure/sink/kitchen{ - dir = 8; - name = "Autopsy sink"; - pixel_x = 20 - }, -/turf/simulated/floor/tiled/white, -/area/medical/morgue) -"avl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/alarm/east{ - pixel_x = 28; - req_one_access = list(24,11,55) - }, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"avn" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/disposal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/medical/patient_wing_post2) -"avo" = ( -/obj/machinery/button/switch/crematorium{ - _wifi_id = "sci_crema1"; - pixel_x = 28; - pixel_y = 28; - req_access = list(47) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/rnd/test_range) -"avp" = ( -/obj/machinery/alarm/east{ - pixel_x = 28 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"avq" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner/orange{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"avr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm/east{ - pixel_x = 28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"avs" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"avt" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "sl3o"; - locked = 1; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"avu" = ( -/obj/machinery/airlock_sensor{ - id_tag = "sl3s"; - pixel_y = -26 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1379; - id_tag = "sl3p" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"avv" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1379; - id_tag = "sl3p" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"avw" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - use_power = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"avx" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"avy" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/alarm/north, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Patient Wing Recreation Area"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"avz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"avA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "blast_bunker1"; - name = "Bunker Blast Door"; - opacity = 0 - }, -/obj/machinery/door/airlock/hatch{ - desc = "It opens and closes. It has a small sign engraved: Bunker capacity: 6. Only facility's Command Staff is permitted."; - id_tag = "bunker2"; - name = "Command Bunker"; - req_access = list(19); - secured_wires = 1; - dir = 4 - }, -/turf/simulated/floor, -/area/bridge/aibunker) -"avB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Bunker Airlock"; - dir = 1; - network = list("Command","Bunker") - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/bridge/aibunker) -"avC" = ( -/obj/item/device/radio/intercom/west, -/obj/structure/bed/stool, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"avD" = ( -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "spiderling"; - name = "dead greimorian" - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"avE" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"avF" = ( -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm/north, -/obj/effect/landmark{ - name = "Revenant" - }, -/turf/simulated/floor/wood, -/area/medical/patient_wing_gym) -"avG" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/structure/closet/bombcloset, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm/west{ - pixel_x = -28 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/storage) -"avH" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/eva) -"avI" = ( -/obj/machinery/cell_charger, -/obj/structure/table/steel, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/eva) -"avJ" = ( -/turf/simulated/wall/r_wall, -/area/rnd/eva) -"avK" = ( -/obj/machinery/alarm/east{ - pixel_x = 28 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/closet/wardrobe/white, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"avL" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "research_outer"; - locked = 1; - name = "Xenoarchaeology External Airlock"; - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/rnd/eva) -"avM" = ( -/obj/machinery/alarm/east{ - pixel_x = 28 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain/black, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"avN" = ( -/obj/machinery/photocopier, -/obj/machinery/alarm/west{ - pixel_x = -28 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"avO" = ( -/obj/structure/ore_box, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"avP" = ( -/obj/machinery/alarm/west{ - pixel_x = -28 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/medical) -"avQ" = ( -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"avR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/alarm/west{ - pixel_x = -28 - }, -/obj/structure/cable/green, -/obj/machinery/power/apc/east, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"avS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/power/apc/south, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light_switch{ - pixel_x = 12; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/analysis) -"avT" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/standard, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/gps{ - gpstag = "MED2" - }, -/obj/item/device/gps{ - gpstag = "MED3" - }, -/obj/item/device/gps{ - gpstag = "MED4" - }, -/obj/item/device/gps{ - gpstag = "MED5" - }, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"avU" = ( -/obj/machinery/vending/phoronresearch, -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"avV" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 5 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"avW" = ( -/obj/machinery/alarm/west{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/sleep/medical) -"avX" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenoarch_atrium) -"avY" = ( -/turf/simulated/wall/r_wall, -/area/rnd/isolation_c) -"avZ" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/alarm/west{ - pixel_x = -28 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"awa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"awb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"awc" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"awd" = ( -/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 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"awe" = ( -/obj/structure/cable{ - 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 = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"awf" = ( -/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/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"awg" = ( -/obj/structure/cable{ - 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 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"awh" = ( -/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/door/airlock/highsecurity{ - id_tag = "bunker1"; - name = "Command Bunker Access"; - req_access = list(19); - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"awi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/sign/emergency/exit/ladder{ - dir = 1; - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"awj" = ( -/obj/machinery/computer/cryopod{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"awk" = ( -/obj/machinery/alarm/west{ - pixel_x = -28 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"awl" = ( -/obj/machinery/suspension_gen{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"awm" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/alarm/east{ - pixel_x = 28 - }, -/obj/structure/dispenser/oxygen, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"awn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"awo" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "research_pump" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - EVA Airlock"; - dir = 8 - }, -/obj/structure/closet/walllocker/emerglocker/east, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"awp" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenoarch_storage) -"awq" = ( -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"aww" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"awA" = ( -/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/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "sl3i"; - locked = 1; - req_access = list(13); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"awB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"awC" = ( -/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/plating, -/area/maintenance/medsublevel) -"awD" = ( -/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, -/area/maintenance/medsublevel) -"awE" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/cell_charger, -/obj/structure/extinguisher_cabinet/south, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"awF" = ( -/obj/structure/table/reinforced/steel, -/obj/item/storage/firstaid/regular, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"awG" = ( -/obj/machinery/cryopod, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"awH" = ( -/obj/structure/cryofeed, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"awI" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"awM" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"awN" = ( -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"awO" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/anomaly_storage) -"awP" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/medsublevel_port) -"awQ" = ( -/obj/machinery/door/airlock/engineering{ - name = "Medbay Substation"; - req_one_access = list(11,24); - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/substation/medical_sublevel) -"awR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"awV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/rnd/eva) -"awW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "research_inner"; - locked = 1; - name = "Xenoarchaeology Internal Airlock"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/rnd/eva) -"awY" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"axc" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"axd" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - 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" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"axe" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/isolation_c) -"axg" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Isolation C"; - dir = 1; - network = list("Research Outpost","Anomaly Isolation") - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/power/apc/south, -/turf/simulated/floor/tiled/white, -/area/rnd/isolation_c) -"axi" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, -/obj/structure/sign/deathsposal{ - pixel_y = 32 - }, -/obj/effect/decal/warning_stripes, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/maintenance/medsublevel_port) -"axk" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Medical Sublevel Substation Bypass" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/medical_sublevel) -"axl" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Medical Sublevel" - }, -/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/substation/medical_sublevel) -"axm" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/sensor{ - long_range = 1; - name = "Powernet Sensor - Medical (Sub-level)"; - name_tag = "Medical (Sub-level)" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/medical_sublevel) -"axs" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/structure/window/reinforced, -/obj/machinery/door/window{ - dir = 4; - name = "Canister Ports" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/eva) -"axu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "research_airlock"; - name = "Interior access button"; - pixel_x = 25; - pixel_y = 25; - req_one_access = list(13,65) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"axv" = ( -/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 - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"axG" = ( -/turf/simulated/wall, -/area/maintenance/medsublevel_port) -"axH" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"axI" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"axJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"axK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/substation/medical_sublevel) -"axL" = ( -/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/substation/medical_sublevel) -"axM" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/light/small/emergency, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/medical_sublevel) -"axN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical Sublevel - Substation"; - dir = 8 - }, -/obj/machinery/power/apc/east, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/maintenance/substation/medical_sublevel) -"axP" = ( -/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/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"axQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"axR" = ( -/turf/simulated/floor/tiled, -/area/rnd/eva) -"axS" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/item/device/radio/intercom/east, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"axX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"ayb" = ( -/turf/simulated/wall/r_wall, -/area/rnd/isolation_b) -"ayd" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"ayf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/maintenance/medsublevel_port) -"ayg" = ( -/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" - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/maintenance/medsublevel_port) -"ayh" = ( -/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{ - name = "cooled floor"; - temperature = 278 - }, -/area/maintenance/medsublevel_port) -"ayi" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"ayj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Medbay Substation"; - req_one_access = list(11,24); - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/medical_sublevel) -"ayk" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(19); - dir = 1 - }, -/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/door/firedoor, -/turf/simulated/floor, -/area/maintenance/medsublevel) -"aym" = ( -/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/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"ayo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"ayp" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"ayq" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window{ - dir = 8; - icon_state = "right"; - name = "Suit Storage"; - req_access = list(7) - }, -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/storage/belt/archaeology, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/gloves/latex/nitrile, -/obj/item/clothing/suit/space/void/sci, -/obj/item/clothing/head/helmet/space/void/sci, -/turf/simulated/floor/tiled/dark, -/area/rnd/eva) -"ayy" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"ayA" = ( -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/maintenance/medsublevel_port) -"ayB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/maintenance/medsublevel_port) -"ayE" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"ayF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"ayG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"ayH" = ( -/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/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"ayI" = ( -/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/alarm/east{ - pixel_x = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"ayP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"ayQ" = ( -/obj/machinery/door/window{ - dir = 8; - icon_state = "right"; - name = "Suit Storage"; - req_access = list(7) - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/clothing/mask/breath, -/obj/item/storage/belt/archaeology, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/gloves/latex/nitrile, -/obj/item/clothing/suit/space/void/sci, -/obj/item/clothing/head/helmet/space/void/sci, -/turf/simulated/floor/tiled/dark, -/area/rnd/eva) -"ayS" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/requests_console/west{ - department = "Xenoarchaeology"; - departmentType = 2; - name = "Xenoarchaeology Requests Console" - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"ayW" = ( -/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/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"ayZ" = ( -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) -"azb" = ( -/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/supply{ - dir = 6 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/maintenance/medsublevel_port) -"azc" = ( -/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 - }, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/maintenance/medsublevel_port) -"aze" = ( -/turf/simulated/wall, -/area/medical/patient_wing) -"azf" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing) -"azg" = ( -/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/plating, -/area/maintenance/medsublevel) -"azh" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"azi" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora) -"azj" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"azm" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/hallway) -"azn" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"azo" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/cee, -/turf/simulated/floor/plating, -/area/rnd/eva) -"azq" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window{ - dir = 8; - icon_state = "right"; - name = "Suit Storage"; - req_access = list(7) - }, -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/storage/belt/archaeology, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/gloves/latex/nitrile, -/obj/item/clothing/suit/space/void/sci, -/obj/item/clothing/head/helmet/space/void/sci, -/turf/simulated/floor/tiled/dark, -/area/rnd/eva) -"azs" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Atrium 2"; - dir = 4 - }, -/obj/item/device/radio/intercom/west, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"azu" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/reinforced/steel, -/obj/item/clothing/head/welding, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"azv" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/reinforced/steel, -/obj/machinery/recharger, -/obj/item/melee/baton/loaded, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"azx" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"azy" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 1 - }, -/area/maintenance/medsublevel_port) -"azB" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing) -"azC" = ( -/obj/random/pottedplant, -/obj/effect/floor_decal/corner_wide/lime/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"azD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"azF" = ( -/turf/simulated/floor/tiled, -/area/turbolift/medical_sub) -"azJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"azK" = ( -/obj/machinery/power/apc/south, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"azL" = ( -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 8 - }, -/area/rnd/eva) -"azM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "EVA Preparation"; - req_access = list(7); - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"azN" = ( -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"azO" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/obj/effect/floor_decal/corner_wide/paleblue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"azP" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced/steel, -/obj/item/folder/purple, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"azQ" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"azR" = ( -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"azS" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/reinforced/steel, -/obj/item/flame/lighter/random{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/reagent_containers/dropper{ - pixel_y = -4 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"azW" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"azX" = ( -/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/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lime{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"azY" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/item/storage/box/masks, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"azZ" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/lime/full{ - dir = 1 - }, -/obj/item/storage/box/syringes{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/folder/white, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aAb" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/medical{ - name = "Abandoned Morgue"; - req_access = list(66); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aAg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table/standard, -/obj/effect/floor_decal/industrial/warning/cee, -/obj/machinery/door/window{ - name = "MediExpress Receival"; - req_access = null - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/medsublevel_port) -"aAi" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aAj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aAk" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/turbolift/medical_sub) -"aAl" = ( -/obj/structure/cable{ - 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/plating, -/area/maintenance/medsublevel) -"aAm" = ( -/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/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"aAn" = ( -/obj/structure/cable{ - 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/plating, -/area/maintenance/medsublevel) -"aAo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/storage/box/spraybottles{ - pixel_x = 2; - pixel_y = 9 - }, -/obj/item/storage/box/pillbottles{ - pixel_x = 2 - }, -/obj/item/device/radio/intercom/north, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"aAp" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aAq" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aAr" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aAw" = ( -/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/glass_research{ - name = "EVA Preparation"; - req_access = list(7); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"aAA" = ( -/obj/machinery/firealarm/west, -/obj/structure/coatrack{ - pixel_x = -4 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"aAB" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced/steel, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"aAH" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aAI" = ( -/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/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aAJ" = ( -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -4; - pixel_y = -3 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aAK" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aAL" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/regular/open{ - id = "virology_testing_lockdown"; - name = "Virology Testing Blast Doors" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"aAM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aAN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/button/remote/blast_door{ - id = "virology_testing_lockdown"; - name = "Virology Testing Lockdown"; - pixel_x = 12; - pixel_y = 29; - req_access = list(33) - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aAO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/alarm/north, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aAP" = ( -/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/medical{ - name = "Dusty Door"; - req_access = list(66); - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aAQ" = ( -/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/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/item/pen, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aAR" = ( -/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 = 10 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aAS" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lime/full{ - dir = 1 - }, -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aAT" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "quarantine_processing_shutters"; - name = "Quarantine Processing Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"aAW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aAX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aAY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"aAZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aBc" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/recharge_station, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aBd" = ( -/turf/simulated/mineral, -/area/rnd/xenoarch_atrium) -"aBe" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"aBf" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window{ - dir = 4; - name = "Artifact Display Case"; - req_access = list(7) - }, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"aBh" = ( -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/rnd/xenoarch_atrium) -"aBi" = ( -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 8 - }, -/area/rnd/xenoarch_atrium) -"aBk" = ( -/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/window/westright{ - name = "Testing Cell B"; - req_access = null - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aBl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aBm" = ( -/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/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/item/storage/box/monkeycubes, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"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/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aBo" = ( -/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/machinery/firealarm/south, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aBp" = ( -/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_medical{ - name = "Dusty Door"; - req_access = list(33); - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id = "virology_testing_lockdown"; - name = "Virology Testing Blast Doors" - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aBq" = ( -/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/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aBr" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aBs" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/east, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light_construct{ - dir = 4 - }, -/obj/item/roller{ - pixel_x = -5; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aBt" = ( -/obj/machinery/button/remote/blast_door{ - id = "quarantine_entrance_lockdown"; - name = "Entrance Lockdown"; - pixel_x = -26; - pixel_y = -18; - req_access = list(66) - }, -/obj/item/device/radio/intercom/west{ - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"aBu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"aBv" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "quarantine_processing_shutters"; - name = "Desk Lockdown"; - pixel_x = 25; - pixel_y = -25; - req_access = list(66) - }, -/obj/structure/closet/hazmat/general, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aBx" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing) -"aBz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aBA" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled, -/area/turbolift/medical_sub) -"aBB" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aBD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aBG" = ( -/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/extinguisher_cabinet/east, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Camera Corridor 4"; - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aBI" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window{ - dir = 4; - icon_state = "right"; - name = "Artifact Display Case"; - req_access = list(7) - }, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"aBM" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/obj/item/storage/box/fancy/vials, -/obj/item/reagent_containers/dropper{ - pixel_y = 9 - }, -/obj/item/storage/box/sharps, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aBN" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/corner/lime/full, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aBO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aBP" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/glass_medical{ - name = "Dusty Airlock"; - req_access = list(66); - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aBQ" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/test_area) -"aBR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Sublevel Elevator Entrance"; - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aBS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aBT" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aBU" = ( -/obj/turbolift_map_holder/aurora/medical, -/turf/simulated/floor/tiled, -/area/turbolift/medical_sub) -"aBV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aBX" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aBY" = ( -/obj/machinery/biogenerator, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aBZ" = ( -/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/dark, -/area/rnd/xenobiology/xenoflora) -"aCa" = ( -/obj/machinery/seed_extractor, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aCb" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aCd" = ( -/obj/machinery/seed_storage/xenobotany{ - pixel_x = 3 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aCe" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenoflora"; - name = "Xenoflora Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora) -"aCf" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aCg" = ( -/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/effect/floor_decal/corner_wide/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aCh" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"aCi" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"aCl" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced/steel, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"aCn" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"aCq" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/sensor{ - long_range = 1; - name = "Powernet Sensor - Research (Sub-level)"; - name_tag = "Research (Sub-level)" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Substation" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/research_sublevel) -"aCr" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Research Sublevel" - }, -/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/substation/research_sublevel) -"aCs" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Research Sublevel Substation Bypass" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/research_sublevel) -"aCv" = ( -/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/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"aCw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/window/southleft{ - name = "Testing Pen C"; - req_access = null - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aCz" = ( -/obj/machinery/floodlight{ - name = "Construction Floodlight" - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"aCA" = ( -/obj/machinery/floodlight{ - name = "Construction Floodlight" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"aCB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/firealarm/east, -/obj/item/frame/air_alarm, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"aCC" = ( -/obj/structure/closet/emcloset, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/medical/patient_wing) -"aCD" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aCE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - 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" - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aCG" = ( -/turf/simulated/wall/r_wall, -/area/medical/patient_wing) -"aCH" = ( -/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/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aCI" = ( -/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/manifold/visible{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aCJ" = ( -/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/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - 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/rnd/xenobiology/xenoflora) -"aCK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aCL" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aCN" = ( -/obj/machinery/atmospherics/unary/heater{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aCO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenoflora Lab"; - req_access = list(55); - dir = 1 - }, -/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/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenoflora"; - name = "Xenoflora Blast Door"; - opacity = 0 - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"aCP" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/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/plating, -/area/outpost/research/hallway) -"aCQ" = ( -/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/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"aCR" = ( -/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/research{ - name = "Xenoarchaeology Atrium"; - req_access = list(7); - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"aCU" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced/steel, -/obj/item/device/camera, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"aCW" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/reinforced/steel, -/obj/item/device/hand_labeler{ - pixel_y = 4 - }, -/obj/item/storage/box/samplebags{ - pixel_x = 2; - pixel_y = -4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"aCX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"aCZ" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/substation/research_sublevel) -"aDa" = ( -/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/substation/research_sublevel) -"aDb" = ( -/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/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "sl2i"; - locked = 1; - req_access = null; - req_one_access = list(7,13); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"aDd" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aDe" = ( -/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/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"aDf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"aDh" = ( -/obj/structure/table/steel, -/obj/item/storage/bag/inflatable, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"aDi" = ( -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"aDk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aDl" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aDn" = ( -/obj/machinery/door/firedoor, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aDo" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aDp" = ( -/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/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aDq" = ( -/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/ringer/north{ - department = "Medbay"; - id = "medbay_ringer"; - req_access = list(5) - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/lime/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aDr" = ( -/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/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(66); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"aDs" = ( -/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 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"aDt" = ( -/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 = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"aDu" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aDv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aDw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green, -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - icon_state = "map_on"; - name = "Distro to Trays"; - use_power = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aDx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/disposalpipe/junction, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aDy" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/camera{ - c_tag = "Research Sublevel - Xenobotany"; - dir = 1; - network = list("Research Outpost") - }, -/obj/structure/closet/crate/hydroponics/prespawned, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aDz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aDA" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Trays to Scrubbers" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aDB" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aDC" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 8; - icon_state = "freezer" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aDD" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenoflora"; - name = "Xenoflora Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora) -"aDE" = ( -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"aDG" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/machinery/light_switch{ - pixel_x = -11; - pixel_y = -22 - }, -/obj/effect/floor_decal/corner_wide/mauve/full, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"aDI" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced/steel, -/obj/item/storage/firstaid/regular, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"aDJ" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced/steel, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"aDL" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"aDM" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/sign/nosmoking_1{ - pixel_x = 32 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"aDN" = ( -/obj/machinery/door/airlock/engineering{ - name = "Science Substation"; - req_one_access = list(11,24); - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/substation/research_sublevel) -"aDO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering{ - name = "Science Substation"; - req_one_access = list(11,24); - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/substation/research_sublevel) -"aDR" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"aDS" = ( -/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/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "sl2"; - pixel_x = 24; - pixel_y = 8; - req_access = null; - req_one_access = list(7,13) - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"aDZ" = ( -/obj/structure/bed, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"aEc" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"aEe" = ( -/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/segment, -/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/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"aEf" = ( -/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_switch{ - pixel_x = 24; - pixel_y = -24 - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"aEg" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aEi" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aEj" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aEk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aEl" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Patient Ward Entrance"; - dir = 8 - }, -/obj/structure/extinguisher_cabinet/east, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aEr" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aEs" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aEt" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aEu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 1 - }, -/area/rnd/xenobiology/xenoflora) -"aEw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 1 - }, -/area/rnd/xenobiology/xenoflora) -"aEB" = ( -/obj/item/device/radio/intercom/west, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aEC" = ( -/obj/structure/disposalpipe/segment, -/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/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aEI" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"aEJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"aEK" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"aEL" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/east, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"aEM" = ( -/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" - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"aEN" = ( -/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/maintenance/scisublevel) -"aEO" = ( -/obj/structure/cable/green{ - 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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"aEP" = ( -/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/scisublevel) -"aEQ" = ( -/obj/structure/cable{ - 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/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"aER" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/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/plating, -/area/maintenance/medsublevel) -"aES" = ( -/obj/structure/cable{ - 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/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/obj/machinery/alarm/north, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"aET" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"aEU" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"aEV" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"aEX" = ( -/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/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"aFc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"aFg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"aFh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - id = "quarantine_ward_lockdown"; - name = "Quarantine Ward Lockdown"; - pixel_x = 26; - pixel_y = -8; - req_access = list(66) - }, -/obj/machinery/light_construct{ - dir = 4 - }, -/obj/item/frame/fire_alarm, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"aFj" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aFl" = ( -/obj/machinery/newscaster/south, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aFm" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aFn" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aFo" = ( -/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/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "processing_airlock_control"; - name = "Exterior access button"; - pixel_x = 25; - pixel_y = 25; - req_access = list(66) - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aFp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/door/airlock/medical{ - name = "Supervised Living Center - Processing"; - req_access = list(66); - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"aFq" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/firealarm/north, -/turf/simulated/floor/wood, -/area/medical/patient_a) -"aFr" = ( -/obj/machinery/alarm/east{ - pixel_x = 28 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/bed/padded, -/obj/item/bedsheet/medical, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/medical/patient_a) -"aFt" = ( -/turf/simulated/wall, -/area/medical/patient_a) -"aFx" = ( -/obj/machinery/newscaster/north, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/iv_drip, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/wood, -/area/medical/patient_c) -"aFy" = ( -/obj/machinery/alarm/east{ - pixel_x = 28 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/bed/padded, -/obj/item/bedsheet/medical, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/medical/patient_c) -"aFA" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/firealarm/north, -/turf/simulated/floor/wood, -/area/medical/patient_d) -"aFB" = ( -/obj/machinery/newscaster/north, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/iv_drip, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/wood, -/area/medical/patient_d) -"aFC" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green/full, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aFD" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/firealarm/south, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/corner_wide/mauve/full, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"aFE" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"aFF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"aFI" = ( -/obj/machinery/newscaster/west, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aFJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aFK" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aFQ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"aFR" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"aFS" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"aFT" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"aFU" = ( -/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/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"aFV" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology) -"aFW" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/research_xenobiology) -"aGf" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Abandoned Ward"; - req_access = list(66) - }, -/obj/machinery/door/firedoor/multi_tile, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aGg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aGi" = ( -/turf/simulated/wall, -/area/medical/morgue) -"aGj" = ( -/obj/machinery/door/firedoor, -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/airlock/medical{ - name = "Morgue"; - req_access = list(6); - dir = 1 - }, -/obj/effect/map_effect/door_helper/unres, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/medical/morgue) -"aGk" = ( -/obj/machinery/alarm/west{ - pixel_x = -28 - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aGl" = ( -/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/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aGm" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aGo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/medical/patient_a) -"aGp" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Perma, Patient One Dorm"; - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = 24; - pixel_y = -6 - }, -/turf/simulated/floor/wood, -/area/medical/patient_a) -"aGs" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Perma, Patient Two Dorm"; - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = 24; - pixel_y = -6 - }, -/turf/simulated/floor/wood, -/area/medical/patient_b) -"aGu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/medical/patient_c) -"aGy" = ( -/turf/simulated/wall/r_wall, -/area/rnd/test_range) -"aGz" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenoflora"; - name = "Xenoflora Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora) -"aGA" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenoflora"; - name = "Xenoflora Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora) -"aGC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/research/hallway) -"aGD" = ( -/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/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aGG" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 1; - icon_state = "freezer" - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"aGH" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/vials, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aGI" = ( -/obj/machinery/computer/operating{ - name = "Xenobiology Operating Computer" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aGJ" = ( -/obj/machinery/optable{ - name = "Xenobiology Operating Table" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aGK" = ( -/obj/structure/table/standard, -/obj/item/surgery/circular_saw, -/obj/item/surgery/scalpel{ - pixel_y = 8 - }, -/obj/machinery/alarm/north, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Xenobiology Operation Room" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aGL" = ( -/obj/machinery/firealarm/north, -/obj/structure/closet/hazmat/research, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aGM" = ( -/obj/structure/extinguisher_cabinet/north, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aGN" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/machinery/button/remote/blast_door{ - id = "ccell_alpha"; - name = "Blast Doors Alpha"; - pixel_y = 4; - req_access = null - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/isolation/north, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/cells/alpha) -"aGP" = ( -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/alpha) -"aGQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/alpha) -"aGR" = ( -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "xenobio_alpha" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/alpha) -"aGS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/cells/alpha) -"aGT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"aGV" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular/open{ - id = "quarantine_ward_lockdown"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"aGW" = ( -/obj/structure/bed/stool/padded/red, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aGX" = ( -/obj/structure/table/reinforced, -/obj/machinery/firealarm/north, -/obj/random/loot, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aGZ" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aHa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lime/full{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aHb" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/paleblue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aHc" = ( -/obj/structure/morgue, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/medical/morgue) -"aHd" = ( -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/medical/morgue) -"aHe" = ( -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/medical/morgue) -"aHf" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/medical/morgue) -"aHg" = ( -/obj/machinery/light_switch{ - pixel_y = 27 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/medical/morgue) -"aHh" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/table/standard, -/obj/item/storage/box/bodybags{ - pixel_y = 8 - }, -/obj/item/storage/box/bodybags{ - pixel_y = 8 - }, -/obj/item/pen, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/medical/morgue) -"aHi" = ( -/obj/item/device/radio/intercom/west, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/obj/structure/bed/stool/chair/plastic{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aHj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aHk" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aHm" = ( -/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{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/medical/patient_a) -"aHr" = ( -/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{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/medical/patient_c) -"aHs" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/machinery/button/remote/airlock{ - id = "patient_4"; - name = "Patient Room D Bolt Control"; - pixel_x = -5; - pixel_y = -3; - req_access = null; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/medical/patient_d) -"aHu" = ( -/obj/structure/table/reinforced, -/obj/item/device/flashlight/lamp, -/obj/machinery/alarm/west{ - pixel_x = -28 - }, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"aHv" = ( -/obj/structure/table/reinforced, -/obj/machinery/requests_console/north{ - department = "Test Range"; - departmentType = 2; - name = "Test Range Requests Console" - }, -/obj/item/storage/box/testpins, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"aHw" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/light_switch{ - pixel_x = 10; - pixel_y = 28 - }, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 1 - }, -/obj/item/taperoll/science, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"aHx" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/rnd/test_range) -"aHz" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway) -"aHA" = ( -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for shutters."; - id = "xenoflora"; - name = "Xenoflora Emergency Lockdown Control"; - pixel_y = 26; - req_access = list(55) - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aHD" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/north, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Camera Corridor 3" - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aHF" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway) -"aHG" = ( -/obj/structure/reagent_dispensers/extinguisher, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"aHH" = ( -/obj/structure/closet/firecloset, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"aHI" = ( -/obj/structure/table/rack, -/obj/item/storage/toolbox/emergency, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"aHJ" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"aHK" = ( -/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/alarm/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"aHL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"aHM" = ( -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aHN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aHO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/item/storage/slimes, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aHP" = ( -/obj/machinery/alarm/west{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aHQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 6 - }, -/obj/machinery/meter, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aHR" = ( -/obj/machinery/door/window/brigdoor/westright{ - name = "Containment Pen"; - req_access = list(55) - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/cells/alpha) -"aHT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/alpha) -"aHU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/mob/living/carbon/slime, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/alpha) -"aHV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/alpha) -"aHW" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/alpha) -"aHX" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/cells/alpha) -"aHY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"aHZ" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aIb" = ( -/obj/structure/table/reinforced, -/obj/item/deck/cards, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aIc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aIe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aIf" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aIg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/mucus, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aIh" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aIi" = ( -/obj/structure/morgue, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/medical/morgue) -"aIj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/medical/morgue) -"aIk" = ( -/obj/machinery/firealarm/west, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/obj/structure/bed/stool/chair/plastic{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aIl" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aIp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - id = "isoA_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "isoA_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "isoA_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "isoA_window_tint" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/patient_a) -"aIq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - id_tag = "patient_1"; - name = "Sub-Acute A"; - req_access = null; - dir = 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/white, -/area/medical/patient_a) -"aIr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "isoA_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - id = "isoA_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "isoA_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "isoA_window_tint" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/patient_a) -"aIt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - id_tag = "patient_2"; - name = "Sub-Acute B"; - req_access = null; - dir = 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/white, -/area/medical/patient_b) -"aIu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - id_tag = "patient_3"; - name = "Sub-Acute C"; - req_access = null; - dir = 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/white, -/area/medical/patient_c) -"aIv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "isoA_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - id = "isoA_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "isoA_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "isoA_window_tint" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/patient_c) -"aIx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - id_tag = "patient_4"; - name = "Sub-Acute D"; - req_access = null; - dir = 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/white, -/area/medical/patient_d) -"aIy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "isoA_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - id = "isoA_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "isoA_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "isoA_window_tint" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/patient_d) -"aIz" = ( -/obj/structure/table/reinforced, -/obj/item/device/healthanalyzer, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"aIA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"aIB" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/rnd/test_range) -"aID" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway) -"aIE" = ( -/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/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aIF" = ( -/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/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aIG" = ( -/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/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aIH" = ( -/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 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aII" = ( -/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/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aIJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aIK" = ( -/obj/structure/window/reinforced, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/reagent_dispensers/extinguisher, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway) -"aIM" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"aIO" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aIP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aIQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aIR" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 8; - pixel_x = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/westleft{ - name = "Containment Chute"; - req_access = list(55) - }, -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/cells/alpha) -"aIT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/alpha) -"aIU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/alpha) -"aIV" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Xenobiology Cell Alpha 2"; - dir = 8; - network = list("Research Outpost","Xenobiology") - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/alpha) -"aIY" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/regular/open{ - id = "quarantine_ward_lockdown"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"aIZ" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aJb" = ( -/obj/effect/floor_decal/corner_wide/paleblue/full, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aJd" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aJe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aJf" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/extinguisher_cabinet/east, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/obj/machinery/light_construct{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aJg" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/medical/morgue) -"aJi" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm/cold/east, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/medical/morgue) -"aJj" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aJk" = ( -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aJl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner_wide/lime/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"aJn" = ( -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aJq" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner_wide/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aJr" = ( -/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/effect/floor_decal/sign/a, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aJs" = ( -/obj/effect/floor_decal/corner_wide/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aJw" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner_wide/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aJy" = ( -/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/effect/floor_decal/sign/c, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aJA" = ( -/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/effect/floor_decal/sign/d, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aJC" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aJD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"aJE" = ( -/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{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"aJF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_research{ - name = "Test Range"; - 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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"aJG" = ( -/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/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aJH" = ( -/obj/effect/floor_decal/corner_wide/mauve, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aJI" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aJJ" = ( -/obj/machinery/firealarm/south, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aJK" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aJL" = ( -/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/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aJM" = ( -/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/effect/floor_decal/corner_wide/mauve/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aJN" = ( -/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{ - name = "Fire Closet"; - req_access = "list(47)"; - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"aJO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/alarm/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"aJP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small/emergency, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/machinery/meter{ - name = "Air supply" - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"aJR" = ( -/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/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance{ - req_access = null; - req_one_access = list(47,12); - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"aJU" = ( -/obj/machinery/smartfridge/secure/extract, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aJV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aJW" = ( -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"aJX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"aJZ" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aKa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aKb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aKc" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aKd" = ( -/obj/machinery/alarm/east{ - pixel_x = 28 - }, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner_wide/paleblue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aKe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/medical/morgue) -"aKf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/medical/morgue) -"aKg" = ( -/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{ - name = "cooled floor"; - temperature = 278 - }, -/area/medical/morgue) -"aKh" = ( -/obj/machinery/door/airlock/medical{ - name = "Morgue"; - req_access = list(6); - dir = 4 - }, -/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/plasticflaps/airtight, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/medical/morgue) -"aKi" = ( -/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/extinguisher_cabinet/south, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aKj" = ( -/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/disposalpipe/junction{ - dir = 1 - }, -/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, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aKk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aKm" = ( -/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/manifold/hidden/scrubbers, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "processing_airlock_control"; - name = "Exterior access button"; - pixel_x = -27; - pixel_y = 25; - req_access = list(66) - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"aKn" = ( -/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 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"aKo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"aKp" = ( -/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 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "processing_airlock_control"; - name = "Interior access button"; - pixel_x = 25; - pixel_y = 25; - req_access = list(66) - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"aKq" = ( -/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/tiled/white, -/area/medical/patient_wing_hallway) -"aKr" = ( -/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/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "processing_airlock_control"; - name = "Interior access button"; - pixel_x = -27; - pixel_y = 25; - req_access = list(66) - }, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aKs" = ( -/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 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aKu" = ( -/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 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aKv" = ( -/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/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/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, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aKw" = ( -/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/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aKx" = ( -/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/white, -/area/medical/patient_wing_hallway) -"aKy" = ( -/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/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light, -/obj/machinery/firealarm/north{ - dir = 2; - pixel_y = -28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/lime, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aKz" = ( -/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/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aKB" = ( -/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/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aKC" = ( -/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/white, -/area/medical/patient_wing_hallway) -"aKD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"aKE" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4; - name = "broken light fixture"; - status = 2 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"aKF" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/rnd/test_range) -"aKG" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner_wide/mauve/full, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aKH" = ( -/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/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aKJ" = ( -/obj/structure/table/standard, -/obj/machinery/door/window/brigdoor/southleft{ - name = "Emergency Containment Grenades"; - req_access = list(55) - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/item/grenade/chem_grenade/metalfoam, -/obj/item/grenade/chem_grenade/metalfoam, -/obj/item/grenade/chem_grenade/metalfoam, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aKK" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/sleeping_agent, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aKL" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/door/window/brigdoor/southleft{ - name = "Slime Batons"; - req_access = list(55) - }, -/obj/item/melee/baton/slime, -/obj/item/melee/baton/slime, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aKM" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/west, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aKN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aKO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aKP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aKQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aKR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/vending/wallmed1{ - pixel_y = 32; - req_access = null - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aKS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 9 - }, -/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/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aKT" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/machinery/button/remote/blast_door{ - id = "ccell_bravo"; - name = "Blast Doors Bravo"; - pixel_y = 4; - req_access = null - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/isolation/north, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/cells/bravo) -"aKV" = ( -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/bravo) -"aKW" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/bravo) -"aKX" = ( -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "xenobio_bravo" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/bravo) -"aKY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/cells/bravo) -"aKZ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"aLd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aLe" = ( -/obj/structure/curtain/medical, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aLh" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/morgue) -"aLi" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/door/airlock/medical{ - name = "Autopsy Laboratory"; - req_access = list(6); - dir = 1 - }, -/obj/structure/plasticflaps/airtight, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/medical/morgue) -"aLj" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/morgue) -"aLk" = ( -/turf/simulated/wall, -/area/medical/medbay4) -"aLl" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/medical{ - name = "Staff Wing"; - req_access = list(66); - dir = 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, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aLm" = ( -/turf/simulated/wall, -/area/medical/patient_wing_picnic) -"aLo" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing_picnic) -"aLq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/grass, -/area/medical/patient_wing_hallway) -"aLr" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass, -/area/medical/patient_wing_hallway) -"aLs" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aLu" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/flora/ausbushes/sunnybush, -/turf/simulated/floor/grass, -/area/medical/patient_wing_hallway) -"aLv" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/grass, -/area/medical/patient_wing_hallway) -"aLy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 8; - name = "Gym" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/multi_tile, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_gym) -"aLz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"aLC" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/rnd/test_range) -"aLD" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway) -"aLE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aLF" = ( -/obj/structure/disposalpipe/segment, -/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/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aLG" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Camera Corridor 2"; - dir = 8 - }, -/obj/machinery/firealarm/east, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aLH" = ( -/turf/simulated/floor, -/area/turbolift/research_maintenance) -"aLI" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Camera Corridor 1"; - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aLJ" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aLL" = ( -/obj/structure/closet/hazmat/research, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel -Xenobiology Entrance" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aLM" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/extinguisher_cabinet/north, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aLO" = ( -/obj/machinery/vending/wallmed1{ - pixel_y = 32; - req_access = null - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aLP" = ( -/obj/machinery/door/airlock/research{ - name = "Xenobiology Storage"; - req_access = list(55); - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aLQ" = ( -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aLS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aLT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aLU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/meter, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aLV" = ( -/obj/machinery/door/window/brigdoor/westright{ - name = "Containment Pen"; - req_access = list(55) - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/cells/bravo) -"aLX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/bravo) -"aLY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/bravo) -"aLZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/bravo) -"aMa" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/bravo) -"aMb" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/cells/bravo) -"aMe" = ( -/obj/effect/floor_decal/corner_wide/pink/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aMf" = ( -/obj/effect/floor_decal/corner_wide/pink{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aMi" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/medical/morgue) -"aMj" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/optable, -/turf/simulated/floor/tiled/white, -/area/medical/morgue) -"aMk" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/morgue) -"aMl" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/morgue{ - dir = 2 - }, -/turf/simulated/floor/tiled/white, -/area/medical/morgue) -"aMm" = ( -/obj/random/pottedplant, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aMn" = ( -/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/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aMo" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner, -/turf/simulated/floor/grass, -/area/medical/patient_wing_picnic) -"aMq" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass, -/area/medical/patient_wing_picnic) -"aMs" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass, -/area/medical/patient_wing_picnic) -"aMt" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/medical/patient_wing_picnic) -"aMu" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/reagent_dispensers/water_cooler, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aMv" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/glass, -/obj/item/storage/box/cups, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aMw" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/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/white, -/area/medical/patient_wing_hallway) -"aMy" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/bed/stool/chair/padded/teal, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aMz" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aMA" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/particle_accelerator/end_cap{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"aMB" = ( -/turf/simulated/floor/reinforced, -/area/rnd/test_range) -"aMC" = ( -/obj/machinery/bodyscanner{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"aMD" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway) -"aME" = ( -/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/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aMG" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aMH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aMI" = ( -/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/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aMJ" = ( -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "xeno_airlock_exterior"; - locked = 1; - name = "Xenobiology External Airlock"; - req_access = list(55); - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "xeno_airlock_control"; - name = "Xenobiology Access Button"; - pixel_y = -24; - req_access = list(55) - }, -/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, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aMK" = ( -/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/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aML" = ( -/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/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aMM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aMN" = ( -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "xeno_airlock_interior"; - locked = 1; - name = "Xenobiology Department"; - req_access = list(55); - 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, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aMO" = ( -/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/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aMP" = ( -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Bomb Range West"; - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) -"aMQ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Entrance"; - dir = 8; - network = list("Research Outpost","Xenobiology") - }, -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aMR" = ( -/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aMS" = ( -/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Xenobiology Secure Storage"; - dir = 1; - network = list("Research Outpost","Xenobiology") - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aMT" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aMU" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aMV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aMW" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 8; - pixel_x = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/westleft{ - name = "Containment Chute"; - req_access = list(55) - }, -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/cells/bravo) -"aMY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/bravo) -"aMZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/bravo) -"aNa" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Xenobiology Cell Bravo"; - dir = 8; - network = list("Research Outpost","Xenobiology") - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/bravo) -"aNi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/pink{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aNj" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/bedsheet/medical, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aNk" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/morgue) -"aNm" = ( -/obj/structure/bed/stool/chair/office/wheelchair{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aNn" = ( -/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/medical/medbay4) -"aNo" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/grass, -/area/medical/patient_wing_picnic) -"aNq" = ( -/turf/simulated/floor/beach/sand, -/area/medical/patient_wing_picnic) -"aNt" = ( -/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/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_picnic) -"aNu" = ( -/obj/effect/floor_decal/corner/grey/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 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aNv" = ( -/obj/effect/floor_decal/corner/grey/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/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aNw" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/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 - }, -/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/white, -/area/medical/patient_wing_hallway) -"aNx" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aNz" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/bed/stool/chair/padded/teal{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aND" = ( -/obj/machinery/door/airlock/research{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "toxins_airlock_exterior"; - locked = 1; - name = "Phoron Explosives Research Department"; - req_access = list(8); - dir = 1 - }, -/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/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "toxins_airlock_control"; - name = "Phoron Research Access Button"; - pixel_x = 24; - req_access = list(7) - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/rnd/storage) -"aNE" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor, -/area/turbolift/research_maintenance) -"aNF" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor, -/area/turbolift/research_maintenance) -"aNG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aNH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aNI" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/shower{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aNJ" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/south, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aNK" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/shower{ - dir = 1 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "xeno_airlock_control"; - name = "Xenobiology Access Button"; - pixel_x = 28; - pixel_y = 8; - req_access = list(55) - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aNL" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "xeno_airlock_control"; - name = "Xenobiology Access Console"; - pixel_x = -22; - pixel_y = 8; - tag_exterior_door = "xeno_airlock_exterior"; - tag_interior_door = "xeno_airlock_interior" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aNM" = ( -/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/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aNN" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc/east, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aNO" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aNP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aNQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Xenobiology East Cells"; - dir = 8 - }, -/obj/machinery/shower{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aNT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - id_tag = "medsubcubicle3"; - name = "Abandoned Bathroom"; - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/maintenance/medsublevel_port) -"aNX" = ( -/obj/structure/bed, -/obj/effect/floor_decal/corner_wide/pink/full, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aNY" = ( -/obj/effect/floor_decal/corner_wide/pink{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aNZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/medical/morgue) -"aOb" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/table/standard, -/obj/item/device/camera{ - name = "Autopsy Camera"; - pixel_x = -2; - pixel_y = 7 - }, -/turf/simulated/floor/tiled/white, -/area/medical/morgue) -"aOc" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/requests_console/south{ - department = "Autopsy Laboratory"; - departmentType = 1 - }, -/obj/structure/table/standard, -/obj/item/folder/white, -/obj/item/pen, -/turf/simulated/floor/tiled/white, -/area/medical/morgue) -"aOd" = ( -/obj/structure/bed/stool/chair/office/wheelchair{ - dir = 4 - }, -/obj/item/device/radio/intercom/west, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aOe" = ( -/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/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Staff Wing Hallway North"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aOf" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass, -/area/medical/patient_wing_picnic) -"aOi" = ( -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Picnic Area" - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_picnic) -"aOk" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aOl" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/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/white, -/area/medical/patient_wing_hallway) -"aOm" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aOn" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/random/pottedplant, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aOo" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/structure/closet/firecloset, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/sign/fire{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/storage) -"aOp" = ( -/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/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/rnd/storage) -"aOq" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet/east, -/turf/simulated/floor/tiled/dark, -/area/rnd/storage) -"aOr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aOu" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/structure/extinguisher_cabinet/north, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aOw" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aOx" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aOy" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/white{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aOz" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aOA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aOB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aOC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aOD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aOE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/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/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aOF" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/machinery/button/remote/blast_door{ - id = "ccell_charlie"; - name = "Blast Doors Charlie"; - pixel_y = 4; - req_access = null - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/isolation/north, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/cells/charlie) -"aOH" = ( -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/charlie) -"aOI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/charlie) -"aOJ" = ( -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "xenobio_charlie" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/charlie) -"aOK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/cells/charlie) -"aON" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"aOO" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"aOP" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/button/remote/airlock{ - id = "medsubcubicle3"; - name = "Privacy Bolts"; - pixel_x = -4; - pixel_y = -26; - specialfunctions = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2, -/obj/random/loot, -/turf/simulated/floor/tiled/freezer, -/area/maintenance/medsublevel_port) -"aOR" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass, -/area/medical/patient_wing_picnic) -"aOV" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aOW" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/vending/coffee, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aOY" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/glass, -/obj/machinery/light, -/obj/machinery/firealarm/north{ - dir = 2; - pixel_y = -28 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aOZ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/bed/stool/chair/padded/teal{ - dir = 8 - }, -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"aPd" = ( -/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/rnd/storage) -"aPe" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "toxins_airlock_control"; - name = "Phoron Research Access Console"; - pixel_x = 22; - req_access = list(7); - tag_exterior_door = "toxins_airlock_exterior"; - tag_interior_door = "toxins_airlock_interior" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/storage) -"aPf" = ( -/obj/turbolift_map_holder/aurora/research, -/turf/simulated/floor, -/area/turbolift/research_maintenance) -"aPg" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/stack/packageWrap, -/obj/item/device/hand_labeler, -/obj/effect/floor_decal/corner_wide/mauve/full, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aPh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aPi" = ( -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aPj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/item/trap/animal/medium, -/turf/simulated/floor/plating, -/area/rnd/xenobiology) -"aPk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/warning, -/obj/item/trap/animal/medium, -/turf/simulated/floor/plating, -/area/rnd/xenobiology) -"aPl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/item/trap/animal/large, -/turf/simulated/floor/plating, -/area/rnd/xenobiology) -"aPm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aPn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/meter, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aPo" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aPp" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aPq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aPr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 5 - }, -/obj/machinery/meter, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aPs" = ( -/obj/machinery/door/window/brigdoor/westright{ - name = "Containment Pen"; - req_access = list(55) - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/cells/charlie) -"aPt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"aPu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/charlie) -"aPv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/charlie) -"aPw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/charlie) -"aPx" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/charlie) -"aPy" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/cells/charlie) -"aPz" = ( -/obj/machinery/firealarm/north, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/medical) -"aPA" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/medical) -"aPC" = ( -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/machinery/light/spot, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) -"aPE" = ( -/obj/structure/table/standard, -/obj/item/cane/crutch, -/obj/item/cane/crutch, -/obj/item/storage/box/rxglasses, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aPJ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Patient Wing Picnic Area"; - dir = 8 - }, -/obj/structure/flora/ausbushes/stalkybush, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/grass, -/area/medical/patient_wing_picnic) -"aPL" = ( -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) -"aPN" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/structure/closet/bombcloset, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/sign/securearea{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/storage) -"aPO" = ( -/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/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/rnd/storage) -"aPP" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Emergency Shower" - }, -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/freezer, -/area/rnd/storage) -"aPQ" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Data Compilation Office"; - req_access = list(47); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aPR" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "Containment Waste to Waste" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aPS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - 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) -"aPT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aPV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aPW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aPX" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aPY" = ( -/obj/structure/table/standard, -/obj/machinery/reagentgrinder, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aPZ" = ( -/obj/structure/table/standard, -/obj/item/storage/slimes, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aQa" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aQb" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aQc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aQd" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 8; - pixel_x = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/westleft{ - name = "Containment Chute"; - req_access = list(55) - }, -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/cells/charlie) -"aQf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/charlie) -"aQg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/charlie) -"aQh" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Xenobiology Cell Charlie"; - dir = 8; - network = list("Research Outpost","Xenobiology") - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/charlie) -"aQi" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/medical) -"aQj" = ( -/obj/structure/bed, -/obj/item/bedsheet/green, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/medical) -"aQk" = ( -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) -"aQl" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/item/device/radio/intercom/north, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/medical) -"aQm" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aQn" = ( -/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/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aQq" = ( -/turf/simulated/wall/r_wall, -/area/rnd/mixing) -"aQr" = ( -/turf/simulated/wall/r_wall, -/area/rnd/storage) -"aQs" = ( -/obj/machinery/door/airlock/research{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "toxins_airlock_interior"; - locked = 1; - name = "Phoron Explosives Research Department"; - req_access = list(8); - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "toxins_airlock_control"; - name = "Phoron Research Access Button"; - pixel_x = 24; - req_access = list(7) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/rnd/storage) -"aQt" = ( -/obj/structure/table/standard, -/obj/item/clipboard, -/obj/item/clipboard, -/obj/item/device/camera, -/obj/structure/extinguisher_cabinet/west, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aQu" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aQv" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/mauve{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/hallway) -"aQw" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/item/folder/purple, -/obj/item/taperoll/science, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/hallway) -"aQx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Xenobiology Waste Management"; - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aQy" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aQz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/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/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aQA" = ( -/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/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aQC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/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/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aQD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/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" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aQE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/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) -"aQF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aQG" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aQH" = ( -/obj/structure/table/standard, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aQI" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aQJ" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/glass/beaker/jar, -/obj/item/reagent_containers/glass/beaker/jar, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aQK" = ( -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Bomb Range South"; - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) -"aQL" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/medical) -"aQN" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/medical) -"aQO" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/medical) -"aQP" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/medical) -"aQQ" = ( -/obj/machinery/newscaster/north, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/medical) -"aQR" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/medical) -"aQS" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aQT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aQU" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass, -/area/medical/patient_wing_picnic) -"aQX" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/grass, -/area/medical/patient_wing_picnic) -"aQZ" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) -"aRa" = ( -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) -"aRb" = ( -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) -"aRc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/vending/wallmed1{ - pixel_x = -32; - req_access = null - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aRm" = ( -/obj/structure/table/standard, -/obj/machinery/newscaster/west, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Data Office"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aRn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aRo" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aRp" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/hallway) -"aRq" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/hallway) -"aRr" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ - dir = 8 - }, -/obj/machinery/meter, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aRs" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Containment Waste to Connector" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aRt" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aRv" = ( -/obj/structure/table/standard, -/obj/item/device/analyzer, -/obj/item/wrench, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aRw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aRx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aRy" = ( -/obj/structure/table/standard, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aRz" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/spray/chemsprayer/xenobiology, -/obj/item/reagent_containers/spray/chemsprayer/xenobiology, -/obj/item/taperoll/science, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aRA" = ( -/obj/structure/table/standard, -/obj/item/device/slime_scanner, -/obj/item/device/slime_scanner, -/obj/item/storage/box/syringes, -/obj/item/storage/box/syringes, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aRB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/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/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aRC" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/machinery/button/remote/blast_door{ - id = "ccell_delta"; - name = "Blast Doors Delta"; - pixel_y = 4; - req_access = null - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/isolation/north, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/cells/delta) -"aRE" = ( -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/delta) -"aRF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/delta) -"aRG" = ( -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "xenobio_delta" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/delta) -"aRH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/cells/delta) -"aRM" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/medical) -"aRN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/medical) -"aRO" = ( -/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/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/medical) -"aRP" = ( -/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/machinery/door/airlock/medical{ - name = "Staff Facilities"; - req_access = list(66); - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/medical) -"aRQ" = ( -/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/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aRR" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/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 - }, -/obj/structure/sign/nosmoking_1{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aSf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aSg" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/hallway) -"aSh" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/folder/purple, -/obj/item/taperoll/science, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/hallway) -"aSk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aSl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aSm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 5 - }, -/obj/machinery/meter, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aSn" = ( -/obj/machinery/door/window/brigdoor/westright{ - name = "Containment Pen"; - req_access = list(55) - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/cells/delta) -"aSp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/delta) -"aSq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/delta) -"aSr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/delta) -"aSs" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/delta) -"aSt" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/cells/delta) -"aSx" = ( -/obj/item/device/radio/intercom/east, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/medical) -"aSy" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/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/sleep/medical) -"aSA" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/medical) -"aSB" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/medical) -"aSC" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/medical) -"aSD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aSE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aSF" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/medical/medbay4) -"aSG" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/standard, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/device/flashlight/pen, -/obj/item/device/flashlight/pen, -/obj/item/device/flashlight/pen, -/obj/item/device/flashlight/pen, -/obj/item/device/radio/intercom/north, -/obj/item/taperoll/medical{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/taperoll/medical{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/taperoll/medical{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/taperoll/medical{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aSH" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/item/reagent_containers/hypospray{ - pixel_y = 8 - }, -/obj/item/reagent_containers/hypospray{ - pixel_y = 8 - }, -/obj/item/reagent_containers/hypospray{ - pixel_y = 8 - }, -/obj/item/reagent_containers/hypospray{ - pixel_y = 8 - }, -/obj/item/reagent_containers/hypospray{ - pixel_y = -2 - }, -/obj/item/reagent_containers/hypospray{ - pixel_y = -2 - }, -/obj/item/reagent_containers/hypospray{ - pixel_y = -2 - }, -/obj/item/reagent_containers/hypospray{ - pixel_y = -2 - }, -/obj/structure/table/standard, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aSI" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/standard, -/obj/item/storage/box/syringegun{ - pixel_y = 8 - }, -/obj/item/gun/launcher/syringe, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aSJ" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/item/storage/belt/medical{ - pixel_y = -4 - }, -/obj/item/storage/belt/medical{ - pixel_y = -4 - }, -/obj/item/storage/belt/medical{ - pixel_y = -4 - }, -/obj/item/storage/belt/medical{ - pixel_y = -4 - }, -/obj/item/storage/belt/medical{ - pixel_y = -4 - }, -/obj/item/storage/belt/medical{ - pixel_y = -4 - }, -/obj/item/storage/belt/medical/paramedic{ - pixel_y = 4 - }, -/obj/item/storage/belt/medical/paramedic{ - pixel_y = 4 - }, -/obj/item/storage/belt/medical/paramedic{ - pixel_y = 4 - }, -/obj/item/storage/belt/medical/paramedic{ - pixel_y = 4 - }, -/obj/item/storage/belt/medical/paramedic{ - pixel_y = 4 - }, -/obj/item/storage/belt/medical/paramedic{ - pixel_y = 4 - }, -/obj/item/clothing/accessory/stethoscope, -/obj/item/clothing/accessory/stethoscope, -/obj/item/clothing/accessory/stethoscope, -/obj/item/clothing/accessory/stethoscope, -/obj/item/clothing/accessory/stethoscope, -/obj/item/clothing/accessory/stethoscope, -/obj/item/clothing/accessory/stethoscope, -/obj/item/clothing/accessory/stethoscope, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aSK" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/closet/secure_closet/medical3, -/obj/item/clothing/gloves/latex/nitrile/unathi, -/obj/item/clothing/gloves/latex/nitrile/tajara, -/obj/item/clothing/gloves/latex/unathi, -/obj/item/clothing/gloves/latex/tajara, -/obj/item/clothing/gloves/latex/vaurca, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aSL" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/closet/secure_closet/medical3, -/obj/item/clothing/gloves/latex/nitrile/unathi, -/obj/item/clothing/gloves/latex/nitrile/tajara, -/obj/item/clothing/gloves/latex/unathi, -/obj/item/clothing/gloves/latex/tajara, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/item/clothing/gloves/latex/vaurca, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aSM" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/medbay4) -"aSO" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"aSY" = ( -/obj/machinery/papershredder, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aSZ" = ( -/obj/machinery/firealarm/south, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aTa" = ( -/obj/machinery/requests_console/south{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"aTb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"aTc" = ( -/obj/machinery/firealarm/west, -/obj/structure/closet/hazmat/research, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aTe" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aTf" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 8; - pixel_x = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/westleft{ - name = "Containment Chute"; - req_access = list(55) - }, -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/cells/delta) -"aTh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/delta) -"aTi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/delta) -"aTj" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Xenobiology Cell Delta"; - dir = 8; - network = list("Research Outpost","Xenobiology") - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/delta) -"aTn" = ( -/obj/structure/table/standard, -/obj/structure/bedsheetbin, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/medical) -"aTo" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/medical) -"aTp" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/medical) -"aTq" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/medical) -"aTr" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/medical) -"aTs" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aTu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aTv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aTw" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aTx" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aTB" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"aTK" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/extinguisher_cabinet/west, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aTL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 6 - }, -/obj/machinery/meter, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aTM" = ( -/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 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aTN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/shower{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aTO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning, -/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/white, -/area/rnd/xenobiology) -"aTP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/meter, -/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/effect/floor_decal/corner/orange{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aTQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - 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" - }, -/obj/effect/floor_decal/corner/orange{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aTR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/shower{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Xenobiology South Cells"; - dir = 1; - network = list("Research Outpost","Xenobiology") - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aTS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/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/tiled/white, -/area/rnd/xenobiology) -"aTT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/obj/machinery/meter, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aTU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - 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" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aTV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/obj/machinery/meter, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aTW" = ( -/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/effect/floor_decal/corner/pink{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"aTX" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aUb" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/medical) -"aUc" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/reinforced/airless, -/area/security/penal_colony/prison) -"aUg" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/medical) -"aUh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"aUi" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/medical) -"aUj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aUl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aUm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aUn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aUo" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/bed/stool/chair/plastic{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aUE" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/deliveryChute{ - dir = 1; - pixel_x = -2 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor/northleft{ - name = "Containment Chute"; - req_access = list(55) - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/cells/hotel) -"aUF" = ( -/obj/machinery/door/window/brigdoor/northright{ - name = "Containment Pen"; - req_access = list(55) - }, -/obj/machinery/atmospherics/binary/pump, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/cells/hotel) -"aUG" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - id = "ccell_hotel"; - name = "Blast Doors Hotel"; - pixel_y = 4; - req_access = null - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green, -/obj/machinery/power/apc/isolation/east, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/cells/hotel) -"aUH" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/deliveryChute{ - dir = 1; - pixel_x = -2 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor/northleft{ - name = "Containment Chute"; - req_access = list(55) - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/cells/golf) -"aUI" = ( -/obj/machinery/door/window/brigdoor/northright{ - name = "Containment Pen"; - req_access = list(55) - }, -/obj/machinery/atmospherics/binary/pump, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/cells/golf) -"aUJ" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - id = "ccell_golf"; - name = "Blast Doors Golf"; - pixel_y = 4; - req_access = null - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green, -/obj/machinery/power/apc/isolation/east, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/cells/golf) -"aUK" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/deliveryChute{ - dir = 1; - pixel_x = -2 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor/northleft{ - name = "Containment Chute"; - req_access = list(55) - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/cells/foxtrot) -"aUL" = ( -/obj/machinery/door/window/brigdoor/northright{ - name = "Containment Pen"; - req_access = list(55) - }, -/obj/machinery/atmospherics/binary/pump, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/cells/foxtrot) -"aUM" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - id = "ccell_foxtrot"; - name = "Blast Doors Foxtrot"; - pixel_y = 4; - req_access = null - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green, -/obj/machinery/power/apc/isolation/east, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/cells/foxtrot) -"aUN" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/deliveryChute{ - dir = 1; - pixel_x = -2 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor/northleft{ - name = "Containment Chute"; - req_access = list(55) - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/cells/echo) -"aUO" = ( -/obj/machinery/door/window/brigdoor/northright{ - name = "Containment Pen"; - req_access = list(55) - }, -/obj/machinery/atmospherics/binary/pump, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/cells/echo) -"aUP" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - id = "ccell_echo"; - name = "Blast Doors Echo"; - pixel_y = 4; - req_access = null - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green, -/obj/machinery/power/apc/isolation/east, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/cells/echo) -"aUQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"aUR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"aUS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"aUT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"aUU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"aUZ" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/medical) -"aVa" = ( -/obj/machinery/door/airlock/medical{ - name = "Staff Showers"; - req_access = list(66); - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/sleep/medical) -"aVb" = ( -/obj/machinery/door/airlock/medical{ - name = "Staff Hygiene Facilities"; - req_access = list(66); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/sleep/medical) -"aVc" = ( -/obj/structure/extinguisher_cabinet/west, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aVd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Staff Wing Hallway South"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aVg" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/item/clothing/shoes/sneakers/medsci{ - pixel_x = 4; - pixel_y = -8 - }, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aVi" = ( -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"aVm" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"aVp" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain/black, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"aVt" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/portable_atmospherics/canister/empty/phoron, -/turf/simulated/floor/reinforced, -/area/rnd/storage) -"aVG" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - icon_state = "map_on"; - name = "Hazardous Specimens Inlet"; - use_power = 1 - }, -/obj/effect/floor_decal/corner_wide/red{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/landmark{ - name = "Revenant" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"aVJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/sleep/medical) -"aVK" = ( -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/sleep/medical) -"aVL" = ( -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/sleep/medical) -"aVO" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/medical/medbay4) -"aWf" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/hotel) -"aWg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/hotel) -"aWh" = ( -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/hotel) -"aWi" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/golf) -"aWj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/golf) -"aWk" = ( -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/golf) -"aWl" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/foxtrot) -"aWm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/foxtrot) -"aWn" = ( -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/foxtrot) -"aWo" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/echo) -"aWp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/echo) -"aWq" = ( -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/echo) -"aWx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/sleep/medical) -"aWy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/sleep/medical) -"aWz" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/sleep/medical) -"aWA" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/ringer/west{ - department = "Medbay"; - id = "medbay_ringer"; - req_access = list(5) - }, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aWB" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 6 - }, -/obj/machinery/newscaster/north, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aWC" = ( -/obj/item/device/radio/intercom/north, -/obj/random/pottedplant, -/obj/effect/floor_decal/corner_wide/lime/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aWD" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aWF" = ( -/obj/effect/landmark/start{ - name = "First Responder" - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 5 - }, -/obj/structure/bed/stool/chair/plastic{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aWI" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/turf/simulated/floor/reinforced/airless, -/area/rnd/mixing) -"aWP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"aWQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/hotel) -"aWR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 9 - }, -/mob/living/carbon/slime, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/hotel) -"aWS" = ( -/obj/machinery/atmospherics/unary/vent_scrubber, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/hotel) -"aWT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/golf) -"aWU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/golf) -"aWV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/golf) -"aWW" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/foxtrot) -"aWX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/foxtrot) -"aWY" = ( -/obj/machinery/atmospherics/unary/vent_scrubber, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/foxtrot) -"aWZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/echo) -"aXa" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/echo) -"aXb" = ( -/obj/machinery/atmospherics/unary/vent_scrubber, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/echo) -"aXc" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing_picnic) -"aXh" = ( -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/sleep/medical) -"aXi" = ( -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aXj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aXk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"aXl" = ( -/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/glass_medical{ - name = "Briefing Room"; - req_access = list(66); - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aXm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - 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/medical/medbay4) -"aXn" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aXo" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aXp" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "First Responder" - }, -/obj/structure/bed/stool/chair/plastic{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aXq" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aXy" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Xenobiology Cell Hotel"; - dir = 1; - network = list("Research Outpost","Xenobiology") - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/hotel) -"aXz" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/hotel) -"aXA" = ( -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "xenobio_hotel" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/hotel) -"aXB" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Xenobiology Cell Golf"; - dir = 1; - network = list("Research Outpost","Xenobiology") - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/golf) -"aXC" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/golf) -"aXD" = ( -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "xenobio_golf" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/golf) -"aXE" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Xenobiology Cell Foxtrot"; - dir = 1; - network = list("Research Outpost","Xenobiology") - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/foxtrot) -"aXF" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/foxtrot) -"aXG" = ( -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "xenobio_foxtrot" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/foxtrot) -"aXH" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Xenobiology Cell Echo"; - dir = 1; - network = list("Research Outpost","Xenobiology") - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/echo) -"aXI" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/echo) -"aXJ" = ( -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "xenobio_echo" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/echo) -"aXK" = ( -/obj/machinery/door/airlock/medical{ - autoclose = 0; - id_tag = "medsubcubicle1"; - name = "Cubicle 1"; - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/sleep/medical) -"aXL" = ( -/obj/machinery/door/airlock/medical{ - autoclose = 0; - id_tag = "medsubcubicle2"; - name = "Cubicle 2"; - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/sleep/medical) -"aXM" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aXQ" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/mixing) -"aXW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"aXX" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/cells/hotel) -"aXY" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/hotel) -"aXZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/cells/hotel) -"aYa" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/cells/golf) -"aYb" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/golf) -"aYc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/cells/golf) -"aYd" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/cells/foxtrot) -"aYe" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/foxtrot) -"aYf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/cells/foxtrot) -"aYg" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/cells/echo) -"aYh" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/cells/echo) -"aYi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/cells/echo) -"aYj" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "medsubcubicle1"; - name = "Cubicle 1 Privacy Bolts"; - pixel_x = -24; - pixel_y = 8; - specialfunctions = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/sleep/medical) -"aYk" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aYl" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/item/paper_bin, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aYm" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/landmark/start{ - name = "Physician" - }, -/obj/structure/bed/stool/chair/plastic{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aYz" = ( -/obj/effect/landmark/start{ - name = "Chief Medical Officer" - }, -/obj/structure/bed/stool/chair/office/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aYA" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/item/folder, -/obj/item/pen, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aYC" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aYL" = ( -/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/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"aYN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"aYO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"aYR" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aZd" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/obj/machinery/requests_console/west{ - department = "Medical Bay"; - departmentType = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aZo" = ( -/turf/simulated/floor/reinforced/hydrogen, -/area/engineering/atmos) -"aZw" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/landmark/start{ - name = "Pharmacist" - }, -/obj/structure/bed/stool/chair/plastic{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aZV" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/disposal) -"aZW" = ( -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"aZY" = ( -/obj/structure/closet, -/obj/random/loot, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"baa" = ( -/turf/simulated/wall, -/area/maintenance/disposal) -"bab" = ( -/obj/machinery/crusher_base, -/turf/simulated/floor/reinforced, -/area/maintenance/disposal) -"bad" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/disposal) -"bae" = ( -/obj/random/junk, -/turf/simulated/floor/reinforced{ - roof_type = null - }, -/area/maintenance/disposal) -"baf" = ( -/turf/simulated/floor/reinforced{ - roof_type = null - }, -/area/maintenance/disposal) -"bai" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/disposal) -"baj" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - id_tag = "crusher"; - name = "Compactor Access"; - req_access = list(12); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/disposal) -"bak" = ( -/obj/structure/sign/securearea{ - name = "\improper CAUTION: TRASH COMPACTOR" - }, -/turf/simulated/wall/r_wall, -/area/maintenance/disposal) -"bal" = ( -/turf/simulated/wall/r_wall, -/area/rnd/test_area) -"bam" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/rnd/test_area) -"bar" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10; - tag = "icon-warning_dust (SOUTHWEST)" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"baw" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/medical/patient_wing_post2) -"bay" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"baz" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"baA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"baB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"baC" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"baD" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"baE" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"baF" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "Waste to Mix" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"baG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"baH" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/red, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"baI" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"baJ" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Air to Filtering" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"baK" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"baL" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 8 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"baM" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"baN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"baO" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"baP" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "sl3i"; - locked = 1; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"baQ" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - use_power = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"baR" = ( -/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/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"baS" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "sl3"; - pixel_x = -26; - req_access = list(13) - }, -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"baT" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"baU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/power/apc/south{ - is_critical = 1 - }, -/obj/structure/cable, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"baV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"baW" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"baX" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"baY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"baZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"bba" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"bbe" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"bbf" = ( -/obj/machinery/door/window/westright{ - name = "Simian Testing Pen"; - req_access = null - }, -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/tiled, -/area/maintenance/medsublevel_port) -"bbg" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/item/bananapeel, -/turf/simulated/floor/tiled, -/area/maintenance/medsublevel_port) -"bbi" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "quarantine_processing_shutters"; - name = "Quarantine Processing Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"bbk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"bbl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"bbn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"bbp" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing) -"bbv" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"bbF" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled, -/area/medical/patient_wing_post2) -"bbG" = ( -/obj/machinery/door/airlock/medical{ - name = "Observation Post Two"; - req_access = list(66); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post2) -"bbH" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing_post2) -"bbI" = ( -/obj/machinery/door/blast/regular/open{ - id = "quarantine_entrance_lockdown"; - name = "Blast Doors" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"bbJ" = ( -/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/multi_tile{ - dir = 2 - }, -/obj/machinery/door/blast/regular/open{ - id = "quarantine_entrance_lockdown"; - name = "Blast Doors" - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"bbK" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/medical) -"bbM" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/medical) -"bbN" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/medical) -"bbO" = ( -/obj/structure/bed, -/obj/item/bedsheet/green, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/medical) -"bbQ" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/medical) -"bbR" = ( -/obj/machinery/door/airlock/medical{ - name = "Staff Dormitories"; - req_access = list(66); - 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/white, -/area/crew_quarters/sleep/medical) -"bbS" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/standard, -/obj/machinery/firealarm/south, -/obj/item/device/radio/med{ - name = "Medbay Emergency Radio Link" - }, -/obj/item/device/radio/med{ - name = "Medbay Emergency Radio Link" - }, -/obj/item/device/radio/med{ - name = "Medbay Emergency Radio Link" - }, -/obj/item/device/radio/med{ - name = "Medbay Emergency Radio Link" - }, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"bbT" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - dir = 4; - pixel_y = -8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/sleep/medical) -"bbU" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/sleep/medical) -"bbX" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/sleep/medical) -"bbY" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"bbZ" = ( -/obj/structure/ladder/up{ - pixel_y = 16 - }, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"bca" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/camera/network/supply{ - c_tag = "Cargo - Disposals, Lower"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"bcb" = ( -/obj/item/device/radio/intercom/west, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"bcd" = ( -/obj/item/modular_computer/telescreen/preset/trashcompactor{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"bce" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 6 - }, -/obj/machinery/computer/general_air_control/large_tank_control{ - input_tag = "n2_in"; - name = "Nitrogen Supply Control"; - output_tag = "n2_out"; - sensors = list("n2_sensor"="Tank") - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Atmospherics North 1" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"bcf" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/obj/machinery/computer/general_air_control/large_tank_control{ - input_tag = "o2_in"; - name = "Oxygen Supply Control"; - output_tag = "o2_out"; - sensors = list("o2_sensor"="Tank") - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Atmospherics North 2" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"bcg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 5 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Atmospherics West 1"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bch" = ( -/obj/effect/floor_decal/corner/black/full{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 9 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Atmospherics East 1"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bci" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Atmospherics Central 1"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bcj" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Atmospherics Central 2"; - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "Connectors to Mix" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bck" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Atmospherics West 2"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bcl" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "H2 to Connector" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bcm" = ( -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Atmospherics South"; - dir = 1 - }, -/obj/machinery/atmospherics/valve, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bcn" = ( -/obj/machinery/firealarm/south, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Atmospherics Waste and Distro."; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"bcp" = ( -/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/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"bcq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"bcO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Tesla Parts Storage"; - req_one_access = list(11,24); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"bcQ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Toxins Storage" - }, -/turf/simulated/floor/reinforced, -/area/rnd/storage) -"bdc" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/test_area) -"bde" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/test_area) -"bdf" = ( -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/rnd/storage) -"bdg" = ( -/obj/structure/sign/deathsposal{ - pixel_y = 32 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"bdh" = ( -/obj/structure/table/standard, -/obj/item/device/binoculars/high_power, -/obj/item/device/binoculars/high_power, -/obj/item/device/binoculars/high_power, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/button/remote/driver{ - id = "toxins_mass_driver"; - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"bdi" = ( -/obj/structure/table/standard, -/obj/item/storage/toolbox/mechanical, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Toxins Observation" - }, -/obj/machinery/newscaster/north, -/obj/item/device/gps/science, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"bdj" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/dispenser, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"bdk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"bdl" = ( -/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/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"bdm" = ( -/obj/machinery/firealarm/east, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/scrubber/huge{ - name = "Toxins Storage Scrubber" - }, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"bdo" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/reinforced, -/area/rnd/storage) -"bdp" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/reinforced, -/area/rnd/storage) -"bdq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"bdr" = ( -/obj/item/clothing/head/collectable/petehat, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"bdB" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/test_area) -"bdD" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/test_area) -"bdG" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/storage) -"bdJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/storage) -"bdK" = ( -/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/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/rnd/storage) -"bdL" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"bdM" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Storage"; - req_access = list(7); - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"bey" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/test_area) -"bez" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/test_area) -"beA" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/test_area) -"beH" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/test_area) -"beI" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/mass_driver{ - dir = 8; - drive_range = 42; - id = "toxins_mass_driver" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/test_area) -"beJ" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1 - }, -/obj/structure/disposaloutlet{ - dir = 8; - spread_point = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/test_area) -"beQ" = ( -/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/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/rnd/storage) -"beR" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/power/apc/east, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"beS" = ( -/obj/machinery/portable_atmospherics/canister/empty, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/firealarm/west, -/turf/simulated/floor/reinforced, -/area/rnd/storage) -"beW" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/extinguisher_cabinet/east, -/turf/simulated/floor/reinforced, -/area/rnd/storage) -"bfj" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"bfn" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/rnd/storage) -"bfo" = ( -/turf/simulated/floor/tiled/dark, -/area/rnd/storage) -"bfp" = ( -/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/dark, -/area/rnd/storage) -"bfq" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet/east, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"bfs" = ( -/obj/machinery/portable_atmospherics/canister/empty, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/reinforced, -/area/rnd/storage) -"bft" = ( -/obj/machinery/portable_atmospherics/canister/empty, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/reinforced, -/area/rnd/storage) -"bfv" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/reinforced, -/area/rnd/storage) -"bfE" = ( -/turf/simulated/floor/beach/water/pool, -/area/medical/patient_wing_gym) -"bfI" = ( -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/rnd/storage) -"bfJ" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"bfK" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/storage) -"bfN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/storage) -"bfO" = ( -/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/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/storage) -"bfP" = ( -/obj/machinery/firealarm/east, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"bfT" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"bgd" = ( -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/rnd/test_area) -"bge" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/test_area) -"bgf" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/test_area) -"bgg" = ( -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/rnd/storage) -"bgh" = ( -/obj/machinery/doppler_array{ - dir = 8 - }, -/obj/item/device/radio/intercom/south, -/obj/effect/floor_decal/corner/mauve/full, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"bgi" = ( -/obj/structure/table/standard, -/obj/item/device/transfer_valve, -/obj/item/device/transfer_valve, -/obj/item/device/transfer_valve, -/obj/item/device/transfer_valve, -/obj/item/device/transfer_valve, -/obj/item/device/transfer_valve, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"bgj" = ( -/obj/structure/table/standard, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"bgl" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/computer/area_atmos, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"bgm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"bgn" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"bgo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = null; - req_one_access = list(8); - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"bgp" = ( -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"bgy" = ( -/obj/structure/blocker, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"bgF" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/test_area) -"bgG" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/test_area) -"bgH" = ( -/obj/structure/grille, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/rnd/storage) -"bgI" = ( -/obj/structure/grille, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/rnd/storage) -"bgK" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Processing"; - req_access = list(7); - 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, -/area/rnd/storage) -"bgL" = ( -/obj/structure/grille, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/rnd/storage) -"bgM" = ( -/obj/structure/reagent_dispensers/extinguisher, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"bgN" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"bgP" = ( -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"bgQ" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/west, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bgR" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bgS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bgT" = ( -/obj/effect/floor_decal/industrial/warning{ - 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/rnd/mixing) -"bgU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/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/dark, -/area/rnd/mixing) -"bgV" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/button/ignition{ - id = "toxins_igniter01"; - pixel_x = 32 - }, -/obj/machinery/button/remote/blast_door{ - id = "toxins_blastdoor01"; - pixel_x = 32; - pixel_y = -8 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Toxins Chamber North"; - dir = 8 - }, -/obj/machinery/portable_atmospherics/powered/scrubber/huge{ - name = "Toxins Mixing Scrubber" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bhi" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/sparker{ - id = "toxins_igniter01"; - pixel_x = -16 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/mixing) -"bhj" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 8; - frequency = 1441; - id = "toxins_chamber01_in"; - initialize_directions = 8; - use_power = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/mixing) -"bhu" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bhK" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bhQ" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "toxins_sensor01" - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/mixing) -"bhR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"bic" = ( -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/rnd/mixing) -"bid" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bif" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bii" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/grille, -/turf/simulated/floor, -/area/rnd/mixing) -"bij" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 4 - }, -/obj/machinery/sparker{ - id = "toxins_igniter01"; - pixel_x = -16 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/mixing) -"bil" = ( -/obj/machinery/door/blast/regular{ - id = "toxins_blastdoor01" - }, -/turf/simulated/floor/airless, -/area/rnd/mixing) -"bit" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 4; - frequency = 1441; - id = "toxins_waste"; - use_power = 1 - }, -/obj/structure/lattice/catwalk, -/turf/simulated/open/airless, -/area/rnd/mixing) -"biu" = ( -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/rnd/mixing) -"biv" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"biw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"biy" = ( -/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/dark, -/area/rnd/mixing) -"biz" = ( -/obj/structure/sign/fire{ - pixel_x = 32 - }, -/obj/machinery/computer/general_air_control/large_tank_control{ - name = "Chamber Monitors"; - sensors = list("toxins_sensor01"="North Chamber Sensor","toxins_sensor02"="South Chamber Sensor") - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"biA" = ( -/obj/structure/sign/fire{ - pixel_x = -32 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/mixing) -"biF" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/mixing) -"biG" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10; - tag = "icon-warning_dust (SOUTHWEST)" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/mixing) -"biI" = ( -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/rnd/mixing) -"biK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"biL" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"biM" = ( -/obj/machinery/atmospherics/valve{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"biN" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"biO" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/turf/simulated/floor, -/area/rnd/mixing) -"biP" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 4 - }, -/obj/machinery/sparker{ - id = "toxins_igniter02"; - pixel_x = -16 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/mixing) -"biQ" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 10 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/mixing) -"biW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"biY" = ( -/obj/structure/sign/fire{ - pixel_x = 32 - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"biZ" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bja" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bjb" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bje" = ( -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/turf/simulated/floor, -/area/rnd/mixing) -"bjg" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "toxins_sensor02" - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/mixing) -"bjp" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/firealarm/west, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bjq" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bjr" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bjs" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bju" = ( -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bjv" = ( -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor, -/area/rnd/mixing) -"bjw" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/mixing) -"bjx" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/mixing) -"bjG" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bjH" = ( -/obj/machinery/atmospherics/valve{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bjI" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bjJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bjK" = ( -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor, -/area/rnd/mixing) -"bjL" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/sparker{ - id = "toxins_igniter02"; - pixel_x = -16 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/mixing) -"bjM" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 8; - frequency = 1441; - id = "toxins_chamber02_in"; - initialize_directions = 8; - use_power = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/mixing) -"bjO" = ( -/turf/simulated/floor/reinforced/airless, -/area/rnd/mixing) -"bjP" = ( -/obj/machinery/door/blast/regular{ - id = "toxins_blastdoor02" - }, -/turf/simulated/floor/airless, -/area/rnd/mixing) -"bjW" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/extinguisher_cabinet/west, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bjX" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bjY" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bjZ" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bka" = ( -/obj/effect/floor_decal/industrial/warning, -/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/dark, -/area/rnd/mixing) -"bkb" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/button/ignition{ - id = "toxins_igniter02"; - pixel_x = 32 - }, -/obj/machinery/button/remote/blast_door{ - id = "toxins_blastdoor02"; - pixel_x = 32; - pixel_y = -8 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Toxins Chamber South"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bkc" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/mixing) -"bkg" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/mixing) -"bkh" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/mixing) -"bki" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"bkk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"bkl" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"bkm" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/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, -/area/rnd/mixing) -"bkn" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"bko" = ( -/obj/machinery/atmospherics/unary/freezer, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"bkq" = ( -/obj/machinery/atmospherics/unary/freezer, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"bkr" = ( -/obj/machinery/atmospherics/unary/freezer, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"bky" = ( -/obj/structure/sign/fire{ - pixel_y = 32 - }, -/obj/structure/lattice/catwalk, -/turf/simulated/open/airless, -/area/rnd/mixing) -"bkz" = ( -/obj/machinery/firealarm/west, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"bkA" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"bkB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bkC" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/mixing) -"bkD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bkE" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"bkF" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/scrubber/huge{ - name = "Aft Toxins Mixing Scrubber" - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"bkG" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/corner/mauve{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"bkH" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"bkI" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Toxins External Airlock Exterior"; - dir = 4 - }, -/turf/simulated/open/airless, -/area/rnd/mixing) -"bkM" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"bkN" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bkO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bkP" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/rnd/mixing) -"bkQ" = ( -/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/tiled/dark, -/area/rnd/mixing) -"bkR" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bkS" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"bkU" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "toxins_external_airlock"; - name = "interior access button"; - pixel_x = 25; - pixel_y = 25; - req_one_access = list(8) - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"bkV" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "toxins_external_inner"; - locked = 1; - name = "Toxins External Access"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/mixing) -"bkW" = ( -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "toxins_external_airlock"; - pixel_y = 26; - tag_airpump = "toxins_external_pump"; - tag_chamber_sensor = "toxins_external_sensor"; - tag_exterior_door = "toxins_external_outer"; - tag_interior_door = "toxins_external_inner" - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "toxins_external_airlock"; - name = "interior access button"; - pixel_x = -25; - pixel_y = 25; - req_one_access = list(8) - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/mixing) -"bkZ" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "toxins_external_airlock"; - name = "exterior access button"; - pixel_x = -25; - pixel_y = 25; - req_one_access = list(8) - }, -/turf/simulated/open/airless, -/area/rnd/mixing) -"blf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"blg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"blh" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/rnd/mixing) -"bli" = ( -/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 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"blk" = ( -/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/dark, -/area/rnd/mixing) -"bll" = ( -/obj/machinery/atmospherics/binary/pump, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"blm" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"blo" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"blp" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "toxins_external_inner"; - locked = 1; - name = "Toxins External Access"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/mixing) -"blq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/rnd/mixing) -"blr" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "toxins_external_pump" - }, -/turf/simulated/floor/plating, -/area/rnd/mixing) -"bls" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "toxins_external_outer"; - locked = 1; - name = "Toxins External Access"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/mixing) -"blx" = ( -/obj/effect/floor_decal/corner/mauve/full, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"blz" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"blA" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"blB" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/machinery/meter, -/obj/structure/extinguisher_cabinet/south, -/obj/effect/floor_decal/industrial/warning/cee, -/turf/simulated/floor/plating, -/area/rnd/mixing) -"blC" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/powered/pump, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"blD" = ( -/obj/structure/table/standard, -/obj/item/storage/toolbox/mechanical, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"blE" = ( -/obj/structure/table/standard, -/obj/item/device/analyzer, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"blF" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"blG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"blH" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Toxins External Airlock Interior"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"blI" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/open/airless, -/area/rnd/mixing) -"blM" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/machinery/power/apc/super/west, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"blN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"blO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"blW" = ( -/obj/structure/lattice/catwalk, -/turf/simulated/open/airless, -/area/rnd/mixing) -"blX" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"blY" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"blZ" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"bma" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/mixing) -"bme" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/mixing) -"bmg" = ( -/obj/effect/floor_decal/corner/mauve/full, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/northleft{ - name = "Airlock Canisters" - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"bmh" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/northright{ - name = "Airlock Canisters" - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"bmi" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/suit_cycler/science, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"bmj" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/obj/structure/table/rack{ - dir = 8; - }, -/obj/item/clothing/suit/space/void/sci, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/machinery/door/window/northright{ - name = "Toxins suit storage" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/clothing/head/helmet/space/void/sci, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"bmC" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/mixing) -"bmN" = ( -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/rnd/mixing) -"boe" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/structure/table/rack, -/obj/item/hoist_kit, -/obj/item/hoist_kit, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"brp" = ( -/obj/machinery/atmospherics/binary/pump, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"brs" = ( -/obj/structure/bookcase/libraryspawn/religion, -/turf/simulated/floor/carpet, -/area/medical/patient_wing_library) -"brx" = ( -/turf/simulated/wall, -/area/maintenance/substation/engineering_sublevel) -"bsd" = ( -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) -"buv" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"buT" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "tesla2_airlock_control"; - name = "Engine Access Console"; - pixel_x = -6; - pixel_y = -32; - tag_exterior_door = "tesla1_airlock_exterior"; - tag_interior_door = "tesla1_airlock_interior" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"bvn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/rnd/test_range) -"bvs" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"bvB" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Patient Wing Processing" - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"bwz" = ( -/obj/structure/morgue/crematorium, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/maintenance/medsublevel_port) -"bwQ" = ( -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"bxJ" = ( -/obj/item/device/radio/intercom/west, -/obj/structure/bed/stool/chair/padded/brown, -/turf/simulated/floor/wood, -/area/medical/patient_b) -"bBR" = ( -/obj/machinery/light/small/emergency, -/obj/structure/sign/vacuum{ - pixel_y = -32 - }, -/turf/simulated/floor/reinforced/airless, -/area/security/penal_colony) -"bDz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_research{ - name = "Xenoarchaeology and Anomalous Materials"; - req_access = list(7); - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"bDU" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = -28 - }, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony/warden) -"bEO" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/chemical_dispenser{ - pixel_x = -2; - pixel_y = -4 - }, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"bFh" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor, -/area/engineering/break_room) -"bGw" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"bKt" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"bLm" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/security/penal_colony/prison) -"bMi" = ( -/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/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"bQZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"bRa" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony/warden) -"bRJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"bSA" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/airless, -/area/security/penal_colony/warden) -"bTg" = ( -/turf/simulated/floor/wood, -/area/medical/patient_wing_library) -"bTq" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"bVc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/engineering/break_room) -"bXx" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing_gym) -"bYD" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"caC" = ( -/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/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "hazardous_airlock_control"; - name = "Hazardous Specimens Access Controller"; - pixel_x = -18; - pixel_y = 27; - req_access = null; - tag_exterior_door = "xenobotany_airlock_exterior"; - tag_interior_door = "xenobotany_airlock_interior" - }, -/obj/effect/floor_decal/corner_wide/red{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"cbH" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/engsublevel) -"ccB" = ( -/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/item/device/radio/intercom/south, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly_storage) -"cde" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"cdr" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "research_pump" - }, -/obj/structure/sign/vacuum{ - pixel_x = 32 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"cdZ" = ( -/turf/simulated/wall, -/area/medical/patient_b) -"cev" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/substation/medical_sublevel) -"ceK" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/medical/patient_wing_picnic) -"ceW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"cfH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"cgf" = ( -/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/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"cgg" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/maintenance/medsublevel_port) -"chg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/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/engineering/storage_tesla) -"ciz" = ( -/obj/structure/cryofeed{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"cju" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"cjL" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - id = "virology_testing_lockdown"; - name = "Virology Testing Lockdown"; - pixel_x = -24; - req_access = list(33) - }, -/obj/effect/decal/cleanable/mucus, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"ckF" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Perma, Patient Three Dorm"; - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = 24; - pixel_y = -6 - }, -/turf/simulated/floor/wood, -/area/medical/patient_c) -"cla" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/medical/morgue) -"cmT" = ( -/obj/effect/floor_decal/corner/pink/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"cqC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/backup_SMES) -"cue" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"cvb" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/emitter{ - anchored = 1; - dir = 8; - state = 2 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"cvs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/spiderling_remains, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"cvy" = ( -/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/plating, -/area/outpost/engineering/power) -"cwx" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/backup_SMES) -"cyD" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass, -/area/medical/patient_wing_picnic) -"cze" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = -32 - }, -/obj/structure/grille, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/gravity_gen) -"cFw" = ( -/turf/simulated/wall, -/area/medical/patient_wing_post2) -"cHa" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"cHi" = ( -/obj/structure/disposalpipe/up{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"cIR" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"cKn" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/machinery/power/emitter{ - anchored = 1; - dir = 4; - state = 2 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"cKF" = ( -/obj/structure/grille, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"cOj" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"cOI" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/obj/machinery/light, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Atrium 1"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"cOT" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/engineering/backup_SMES) -"cPl" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 32 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/gravity_gen) -"cRI" = ( -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"cTV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/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/plating, -/area/outpost/engineering/power) -"cVf" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/obj/machinery/meter, -/obj/effect/floor_decal/corner_wide/red{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"cVG" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"cWg" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly_harvest) -"cWj" = ( -/obj/machinery/bluespace_beacon, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"cWk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - id = "isoA_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "isoA_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "isoA_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "isoA_window_tint" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/patient_c) -"cWC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/door/window/eastleft{ - name = "Maintenance Access"; - req_access = list(12) - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"cXg" = ( -/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 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"cXn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"cXJ" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/button/remote/airlock{ - id = "patient_1"; - name = "Patient Room A Bolt Control"; - pixel_x = 5; - pixel_y = -3; - req_access = list(66); - specialfunctions = 4 - }, -/obj/structure/table/standard, -/obj/machinery/button/remote/airlock{ - id = "patient_3"; - name = "Patient Room C Bolt Control"; - pixel_x = 5; - pixel_y = 5; - req_access = list(66); - specialfunctions = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "patient_4"; - name = "Patient Room D Bolt Control"; - pixel_x = -5; - pixel_y = -3; - req_access = list(66); - specialfunctions = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "patient_2"; - name = "Patient Room B Bolt Control"; - pixel_x = -5; - pixel_y = 5; - req_access = list(66); - specialfunctions = 4 - }, -/turf/simulated/floor/tiled, -/area/medical/patient_wing_post2) -"cXT" = ( -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/obj/structure/bed, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"cYk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"cZb" = ( -/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/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"cZe" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"dab" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"daN" = ( -/turf/simulated/wall/r_wall, -/area/medical/morgue) -"dbo" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"dbr" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor, -/area/engineering/break_room) -"dcf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"dcU" = ( -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Engine Fore Airlock"; - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"der" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/particle_accelerator/power_box{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"deJ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 8 - }, -/area/outpost/research/hallway) -"dgM" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"dhd" = ( -/obj/effect/floor_decal/corner/pink/full{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"dhU" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "eng_sl_eva_pump" - }, -/obj/machinery/airlock_sensor{ - id_tag = "eng_sl_eva_sensor"; - master_tag = "eng_sl_eva_airlock"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"div" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"dkd" = ( -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"dlv" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"dnb" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/engineering/backup_SMES) -"dpE" = ( -/obj/machinery/door/airlock/medical{ - name = "Staff Hygiene Facilities"; - req_access = list(66); - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/sleep/medical) -"dqy" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"dqM" = ( -/turf/simulated/floor/carpet, -/area/medical/patient_wing_library) -"dsk" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing_library) -"dsZ" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"dug" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"dvo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"dvQ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"dwK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"dxk" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/item/storage/firstaid/adv, -/turf/simulated/floor/tiled, -/area/medical/patient_wing_post2) -"dya" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 5 - }, -/obj/structure/sign/flag/nanotrasen/large/north, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"dyi" = ( -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"dzN" = ( -/obj/machinery/vending/hydronutrients{ - categories = 3; - pixel_x = 5 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"dzY" = ( -/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/disposalpipe/segment, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"dGd" = ( -/obj/effect/floor_decal/spline/fancy/wood/full, -/obj/structure/flora/ausbushes/reedbush, -/turf/simulated/floor/grass, -/area/medical/patient_wing_picnic) -"dGF" = ( -/obj/structure/bed, -/obj/effect/floor_decal/corner_wide/pink/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"dGW" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/power/apc/south, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"dHl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"dKZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/botany/editor, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/mauve/full, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"dLn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/wall/r_wall, -/area/outpost/engineering/power) -"dLr" = ( -/obj/structure/sign/securearea{ - pixel_x = 32; - pixel_y = 32 - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"dMi" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/random/loot, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"dMA" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/portable_atmospherics/canister/hydrogen, -/turf/simulated/floor/reinforced, -/area/rnd/storage) -"dNj" = ( -/obj/structure/table/standard, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/turf/simulated/floor/tiled/cooled, -/area/turret_protected/ai) -"dNz" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/structure/target_stake, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) -"dOP" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "quarantine_processing_shutters"; - name = "Quarantine Processing Shutters"; - opacity = 0 - }, -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"dPp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "eng_sl_eva_inner"; - locked = 1; - luminosity = 1; - name = "Engineering Sub-Level EVA"; - req_access = list(10,13); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"dPs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Tesla Bay"; - req_one_access = list(11,24); - dir = 1 - }, -/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/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"dPZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/medical/patient_wing_gym) -"dQy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/medical/patient_wing_picnic) -"dRQ" = ( -/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/medical/patient_wing_hallway) -"dSb" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "sl2"; - pixel_x = -26; - pixel_y = -24; - req_access = null; - req_one_access = list(7,13) - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"dSV" = ( -/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/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Backup Power Storage"; - req_one_access = list(11,24); - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/backup_SMES) -"dTr" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"dUz" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"dUT" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"dVH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "hazardous_airlock_control"; - name = "Hazardous Specimens Access Controller"; - pixel_x = -28; - pixel_y = -5; - req_access = null; - tag_exterior_door = "xenobotany_airlock_exterior"; - tag_interior_door = "xenobotany_airlock_interior" - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"dVR" = ( -/obj/machinery/pipedispenser, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"dWP" = ( -/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/effect/floor_decal/corner_wide/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"dXc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_range) -"dYP" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"dYQ" = ( -/obj/structure/closet, -/obj/item/clothing/under/color/orange, -/obj/item/clothing/shoes/workboots/dark, -/obj/item/clothing/head/hardhat/orange, -/turf/simulated/floor/reinforced/airless, -/area/security/penal_colony/prison) -"dYW" = ( -/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/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "processing_airlock_interior"; - locked = 1; - name = "Supervised Living Center Interior"; - req_access = list(66); - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"dZs" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/item/circuitboard/smes, -/obj/item/circuitboard/smes, -/obj/item/smes_coil, -/obj/item/smes_coil, -/obj/item/smes_coil/super_capacity, -/obj/item/smes_coil/super_capacity, -/obj/item/smes_coil/super_io, -/obj/item/smes_coil/super_io, -/turf/simulated/floor/tiled, -/area/engineering/backup_SMES) -"ebn" = ( -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"ebp" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora_hazard) -"eby" = ( -/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/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"ebQ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"ecc" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/machinery/atmospherics/omni/filter{ - name = "Hydrogen Filter"; - tag_east = 8; - tag_north = 1; - tag_west = 2 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"eda" = ( -/obj/machinery/firealarm/east, -/turf/simulated/floor/plating, -/area/engineering/storage_tesla) -"edi" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner_wide/lime/full, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"edk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/blocker, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "cobweb1" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"ehn" = ( -/obj/machinery/power/apc/super/critical/east, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"ehN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Corridor Camera 3"; - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"eiL" = ( -/obj/structure/table/steel, -/obj/random/loot, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"ejd" = ( -/obj/machinery/firealarm/north{ - dir = 2; - pixel_y = -28 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/wood, -/area/medical/patient_wing_picnic) -"ejU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/medical/patient_wing_gym) -"ejX" = ( -/obj/structure/sign/flag/nanotrasen, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony/warden) -"emk" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/item/folder/white, -/obj/machinery/requests_console/west{ - department = "Supervised Living Center"; - departmentType = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"eqh" = ( -/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/machinery/light_switch{ - pixel_x = -26 - }, -/turf/simulated/floor/wood, -/area/medical/patient_wing_library) -"eqH" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"esT" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"euN" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"euW" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"exv" = ( -/turf/simulated/wall, -/area/medical/patient_c) -"ezB" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor, -/area/engineering/break_room) -"eAq" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor, -/area/engineering/backup_SMES) -"eAY" = ( -/obj/structure/cable{ - d1 = 16; - d2 = 0; - icon_state = "12-0" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/airless, -/area/security/penal_colony) -"eBJ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"eBK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"eCm" = ( -/obj/effect/floor_decal/spline/plain/black, -/turf/simulated/floor/beach/water/pool, -/area/medical/patient_wing_gym) -"eCz" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"eCT" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"eDK" = ( -/obj/structure/grille, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/turf/simulated/floor, -/area/rnd/mixing) -"eEq" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing_post2) -"eEH" = ( -/obj/structure/bed/stool/chair/padded/beige{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"eFZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/pink/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"eGf" = ( -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/turf/simulated/wall/r_wall, -/area/engineering/gravity_gen) -"eHN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"eIl" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/portgen/basic, -/turf/simulated/floor/tiled, -/area/engineering/backup_SMES) -"eIS" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) -"eJx" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_x = 32 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"eJD" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"eNg" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/security/penal_colony) -"eNt" = ( -/obj/structure/bed/stool/padded/red, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"eSg" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Test Range"; - dir = 1 - }, -/obj/machinery/power/apc/south, -/obj/structure/cable/green, -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/mauve/full, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"eSu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/isolation_a) -"eTB" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"eUn" = ( -/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/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"eUT" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"eWv" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/backup_SMES) -"eXJ" = ( -/obj/structure/closet/crate, -/obj/item/storage/box/lights/coloredmixed, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/bag/inflatable, -/obj/item/device/paint_sprayer, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"eZp" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"eZy" = ( -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"fag" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_research{ - name = "Xenoarchaeology and Anomalous Materials"; - req_access = list(7); - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"faN" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/regular/open{ - dir = 8; - id = "virology_testing_lockdown"; - name = "Virology Testing Blast Doors" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"fbJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"fbM" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"fcg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"fdV" = ( -/obj/structure/bed/stool/padded/red, -/turf/simulated/floor/beach/sand, -/area/medical/patient_wing_picnic) -"fez" = ( -/obj/random/junk, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"ffr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/apc/west, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/maintenance/substation/research_sublevel) -"fhy" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/structure/sign/deathsposal{ - pixel_y = 32 - }, -/obj/effect/decal/warning_stripes, -/obj/structure/sign/nosmoking_1{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/tiled/dark, -/area/maintenance/medsublevel_port) -"fig" = ( -/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/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"fjV" = ( -/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/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"fpl" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "eng_sl_eva_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "eng_sl_eva_airlock"; - name = "Engineering Sub-level Airlock Console"; - pixel_x = 24; - req_access = list(13,10); - tag_airpump = "eng_sl_eva_pump"; - tag_chamber_sensor = "eng_sl_eva_sensor"; - tag_exterior_door = "eng_sl_eva_outer"; - tag_interior_door = "eng_sl_eva_inner" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"ftd" = ( -/obj/effect/floor_decal/corner_wide/blue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony) -"fty" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/full, -/obj/effect/floor_decal/corner/lime{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"fvN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"fvZ" = ( -/turf/simulated/wall, -/area/maintenance/medsublevel) -"fwO" = ( -/obj/structure/bed/padded, -/mob/living/carbon/human/unbranded_frame_remote_bunker, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"fxa" = ( -/obj/machinery/atmospherics/unary/heater{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"fxI" = ( -/obj/structure/grille, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"fxJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/xenoflora) -"fzF" = ( -/obj/structure/table/steel, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/reinforced, -/area/rnd/isolation_a) -"fAH" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/power/crystal_agitator, -/turf/simulated/floor/airless, -/area/security/penal_colony) -"fAJ" = ( -/obj/machinery/ringer/east{ - department = "Engineering"; - id = "engie_ringer"; - req_access = list(10) - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"fDM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"fGO" = ( -/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/structure/table/reinforced/wood, -/turf/simulated/floor/carpet, -/area/engineering/break_room) -"fHV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/mixing) -"fIm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"fIn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/medical/morgue) -"fKe" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/mine/unexplored) -"fLn" = ( -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony/warden) -"fOV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"fPt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/floodlight{ - name = "Construction Floodlight" - }, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"fQs" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan, -/obj/machinery/power/terminal{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"fRK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"fSE" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/closet/secure_closet/medical3, -/turf/simulated/floor/tiled, -/area/medical/patient_wing_post2) -"fTY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"fVb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Staff Smoking Lounge"; - req_one_access = null; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"fVA" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "tesla2_airlock_control"; - name = "Engine Access Console"; - pixel_x = -32; - pixel_y = 4; - tag_exterior_door = "tesla2_airlock_exterior"; - tag_interior_door = "tesla2_airlock_interior" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"fXa" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/structure/sign/deathsposal{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"fXv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor, -/area/engineering/break_room) -"fXR" = ( -/obj/structure/window/reinforced, -/obj/structure/sink{ - dir = 4; - pixel_x = 12; - pixel_y = 5 - }, -/turf/simulated/floor/tiled, -/area/maintenance/medsublevel_port) -"fYn" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "eng_sl_eva_outer"; - locked = 1; - luminosity = 1; - name = "Engineering Sub-Level EVA"; - req_access = list(10,13); - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"fYr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/medical/patient_wing_gym) -"fYD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"gaJ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/closet/secure_closet/xenobotany, -/obj/effect/floor_decal/spline/plain/black{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"gcm" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"ged" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenoflora"; - name = "Xenoflora Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora) -"geK" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/south, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Patient Wing Gym"; - dir = 1 - }, -/turf/simulated/floor/wood, -/area/medical/patient_wing_gym) -"geX" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"gfC" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/engineering/break_room) -"gfL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"ghY" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor, -/area/engineering/break_room) -"giJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Supplies Storage"; - req_access = list(65); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_storage) -"gjl" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora_hazard) -"gjp" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"gkk" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - dir = 4; - pixel_y = -8 - }, -/obj/random/soap, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/sleep/medical) -"gkA" = ( -/obj/effect/floor_decal/corner_wide/blue{ - dir = 10 - }, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony) -"gll" = ( -/turf/simulated/wall, -/area/medical/patient_wing_library) -"gnv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cryofeed{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"goh" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 30 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 20 - }, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"goQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"goX" = ( -/obj/effect/shuttle_landmark/skipjack/toxins, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"gpa" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 32; - pixel_y = -32 - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"grD" = ( -/obj/effect/floor_decal/corner/yellow/full{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"gsG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"gsN" = ( -/obj/machinery/computer/guestpass{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"gsX" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing_post2) -"gtA" = ( -/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" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"gut" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = 8 - }, -/obj/item/modular_computer/console/preset/medical, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"gvE" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/medbay4) -"gvS" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"gyi" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/medsublevel_port) -"gzg" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular/open{ - id = "virology_testing_lockdown"; - name = "Virology Testing Blast Doors" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"gAi" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"gAU" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"gBM" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/vending/cola, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"gCb" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"gCl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/engsublevel) -"gDm" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"gDH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"gEo" = ( -/turf/simulated/wall, -/area/mine/unexplored) -"gEC" = ( -/obj/structure/cryofeed{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"gFY" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_x = -32 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"gHy" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/rnd/test_range) -"gHN" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing_picnic) -"gHT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/backup_SMES) -"gPx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window{ - dir = 8; - icon_state = "right"; - name = "Range Access" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) -"gTP" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "tesla2_airlock_control"; - name = "Engine Access Button"; - pixel_x = -1; - pixel_y = 26; - req_access = list(11) - }, -/obj/machinery/door/airlock/hatch{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "tesla2_airlock_exterior"; - locked = 1; - name = "Engine Airlock Exterior"; - req_access = list(11); - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"gVe" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/engineering/break_room) -"gVB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/door/airlock/highsecurity{ - name = "Warden Office"; - req_access = list(3); - dir = 1 - }, -/turf/simulated/floor/airless, -/area/security/penal_colony/warden) -"gVX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/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 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"gWq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"gYj" = ( -/obj/machinery/vending/cigarette, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"gYx" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"haI" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/grounding_rod, -/turf/simulated/floor/plating, -/area/engineering/storage_tesla) -"hbJ" = ( -/obj/structure/table/steel, -/obj/random/tech_supply, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"hdJ" = ( -/obj/machinery/door/airlock/hatch{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "tesla1_airlock_interior"; - locked = 1; - name = "Engine Airlock Interior"; - req_access = list(11); - dir = 1 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "tesla1_airlock_control"; - name = "Engine Access Button"; - pixel_x = -26; - pixel_y = -1; - req_access = list(11) - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"hdY" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "h2_sensor" - }, -/obj/effect/floor_decal/corner/white, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/reinforced/hydrogen, -/area/engineering/atmos) -"heM" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/bed/stool/chair/remote/robot/bunker{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"hfI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"hiB" = ( -/turf/simulated/wall, -/area/medical/patient_d) -"hiP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/airless, -/area/security/penal_colony) -"hje" = ( -/obj/item/device/radio/intercom/west, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"hkV" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"hlm" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"hob" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora) -"hpx" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/medical/patient_wing_library) -"hqH" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/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/plating, -/area/outpost/engineering/power) -"hsj" = ( -/turf/simulated/wall, -/area/engineering/bathroom) -"huY" = ( -/obj/machinery/power/breakerbox{ - RCon_tag = "Engineering Tesla Grid Bypass" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"hwN" = ( -/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/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"hyh" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"hyq" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/medical/patient_wing_picnic) -"hyS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"hzE" = ( -/turf/simulated/floor/airless, -/area/mine/unexplored) -"hAM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"hAX" = ( -/obj/structure/table/rack, -/obj/item/stack/material/steel{ - amount = 20 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"hBa" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/north, -/turf/simulated/floor/airless, -/area/security/penal_colony) -"hBd" = ( -/obj/structure/table/rack, -/obj/item/pickaxe{ - pixel_x = -8 - }, -/obj/item/pickaxe, -/obj/item/pickaxe{ - pixel_x = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"hBn" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/sign/flag/scc{ - pixel_x = -32 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"hDw" = ( -/obj/structure/table/standard, -/obj/item/autopsy_scanner, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/maintenance/medsublevel_port) -"hFw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/door/airlock/glass{ - name = "Penal Mining Facility"; - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/airless, -/area/security/penal_colony) -"hGw" = ( -/turf/simulated/floor/airless, -/area/engineering/atmos) -"hGX" = ( -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Corridor Camera 4" - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"hHy" = ( -/obj/structure/table/wood, -/turf/simulated/floor/beach/sand, -/area/medical/patient_wing_picnic) -"hHI" = ( -/obj/machinery/button/switch/crematorium{ - req_access = list(66) - }, -/obj/structure/table/steel, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/maintenance/medsublevel_port) -"hIm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/highsecurity{ - name = "Penal Mining Facility"; - req_access = list(58); - dir = 1 - }, -/turf/simulated/floor/airless, -/area/security/penal_colony) -"hID" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"hIF" = ( -/obj/item/stack/material/glass/phoronglass{ - amount = 50 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"hJl" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/closet, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"hJK" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/backup_SMES) -"hKO" = ( -/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/plating, -/area/maintenance/medsublevel) -"hMo" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"hMy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/airless, -/area/security/penal_colony) -"hNz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/door/airlock/glass{ - name = "Prisoner Storage"; - dir = 1 - }, -/turf/simulated/floor/airless, -/area/security/penal_colony/prison) -"hQd" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"hQJ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"hSt" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/regular/open{ - dir = 8; - id = "virology_testing_lockdown"; - name = "Virology Testing Blast Doors" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"hSG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"hTr" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"hVf" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/medical/patient_wing) -"hVw" = ( -/obj/structure/grille, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"hVM" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) -"hWq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - id = "isoB_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "isoB_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "medlounge" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "isoB_window_tint" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/patient_b) -"hXj" = ( -/turf/simulated/floor/reinforced/airless, -/area/security/penal_colony) -"hZf" = ( -/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 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"hZh" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"ico" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/medical/patient_wing_gym) -"ics" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"icC" = ( -/obj/structure/closet/crate, -/obj/random/loot, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"icD" = ( -/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/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"idl" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"idt" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/medical/patient_wing_library) -"idF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/sign/b, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"idL" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/light_construct{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/medsublevel_port) -"idZ" = ( -/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/plating, -/area/outpost/engineering/power) -"ieK" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/obj/machinery/firealarm/east, -/obj/effect/floor_decal/corner_wide/red/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"igM" = ( -/obj/structure/table/steel, -/obj/random/tool, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"ihg" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"iih" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"ipg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/medical/patient_d) -"iqH" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/emitter, -/turf/simulated/floor/plating, -/area/engineering/storage_tesla) -"isy" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"itK" = ( -/obj/structure/sign/biohazard, -/turf/simulated/wall/r_wall, -/area/maintenance/medsublevel_port) -"iwx" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/engineering/break_room) -"iAw" = ( -/obj/structure/table/rack, -/obj/item/shovel{ - pixel_x = -8 - }, -/obj/item/shovel, -/obj/item/shovel{ - pixel_x = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"iDS" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/engineering/storage_tesla) -"iFj" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 8; - frequency = 1441; - id = "h2_in"; - initialize_directions = 8; - use_power = 1 - }, -/turf/simulated/floor/reinforced/hydrogen, -/area/engineering/atmos) -"iFn" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "quarantine_processing_shutters"; - name = "Quarantine Processing Shutters"; - opacity = 0 - }, -/obj/structure/table/standard, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"iHK" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"iIC" = ( -/obj/structure/cable{ - 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/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"iIQ" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/light/small/emergency, -/obj/random/junk, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"iKh" = ( -/obj/structure/morgue/crematorium{ - _wifi_id = "sci_crema1" - }, -/turf/simulated/floor/tiled, -/area/rnd/test_range) -"iLn" = ( -/obj/item/modular_computer/console/preset/security, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony/warden) -"iOl" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/xenoflora_hazard) -"iOt" = ( -/obj/machinery/firealarm/east, -/turf/simulated/floor/beach/water/pool, -/area/medical/patient_wing_gym) -"iOJ" = ( -/obj/structure/lattice, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"iPl" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/particle_accelerator/particle_emitter/right{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"iPo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"iQd" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/substation/engineering_sublevel) -"iQB" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"iRI" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/flag/scc{ - pixel_y = 32 - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/security/penal_colony) -"iRV" = ( -/obj/item/device/radio/intercom/west, -/obj/structure/bed/stool/chair/padded/brown, -/turf/simulated/floor/wood, -/area/medical/patient_d) -"iTG" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"iVl" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"iVV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/alarm/cold/south, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/maintenance/medsublevel_port) -"iWa" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"jaZ" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/substation/engineering_sublevel) -"jbg" = ( -/obj/structure/table/rack, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"jcB" = ( -/obj/machinery/body_scanconsole{ - dir = 4 - }, -/obj/machinery/firealarm/south, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"jew" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/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{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"jfo" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/emergency, -/obj/item/stack/nanopaste, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"jfp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"jfT" = ( -/obj/structure/ladder/up{ - pixel_y = 16 - }, -/obj/machinery/light/small/emergency{ - dir = 1; - name = "adjusted light fixture"; - pixel_x = 14 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"jgi" = ( -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/maintenance/medsublevel_port) -"jhN" = ( -/obj/structure/bed/stool/chair/padded/beige, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"jig" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing_gym) -"jjh" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/floor_decal/corner_wide/pink/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"jjk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Storage"; - req_access = list(10); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"jjp" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"jjF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Patient Wing Hallway Two" - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"jkG" = ( -/obj/structure/table/rack, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/item/pickaxe, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/mixed, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"jkR" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/item/modular_computer/console/preset/medical, -/turf/simulated/floor/tiled, -/area/medical/patient_wing_post2) -"jlY" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"jpZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/airless, -/area/security/penal_colony) -"jso" = ( -/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/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Research Sublevel - Cavern Entrance"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"jvK" = ( -/obj/structure/morgue/crematorium, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/maintenance/medsublevel_port) -"jxf" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "sl2o"; - locked = 1; - req_access = null; - req_one_access = list(7,13); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"jxv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/airless, -/area/security/penal_colony) -"jAt" = ( -/obj/item/modular_computer/console/preset/engineering, -/turf/simulated/floor/tiled, -/area/engineering/backup_SMES) -"jBb" = ( -/obj/machinery/firealarm/north, -/turf/simulated/floor/carpet, -/area/medical/patient_wing_library) -"jBW" = ( -/obj/random/junk, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"jCg" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/west, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/airless, -/area/security/penal_colony/prison) -"jDy" = ( -/turf/simulated/wall/r_wall, -/area/rnd/isolation_a) -"jED" = ( -/obj/structure/table/standard, -/obj/item/surgery/hemostat, -/obj/item/surgery/retractor, -/obj/item/surgery/circular_saw, -/turf/simulated/floor/tiled, -/area/rnd/test_range) -"jFr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"jHy" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"jHU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_range) -"jIZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"jKB" = ( -/turf/simulated/wall/r_wall, -/area/security/penal_colony/warden) -"jKS" = ( -/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" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"jMR" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/dark, -/area/rnd/eva) -"jNM" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony/warden) -"jOy" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/excavation, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/storage/box/samplebags, -/obj/item/clothing/gloves/latex/nitrile/tajara, -/obj/item/clothing/gloves/latex/nitrile/unathi, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"jOO" = ( -/obj/machinery/light/small, -/turf/simulated/floor/reinforced/airless, -/area/security/penal_colony/prison) -"jSu" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"jST" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/airless, -/area/security/penal_colony/prison) -"jVa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/air_alarm, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"jVc" = ( -/obj/structure/closet/cabinet{ - name = "Clothing Storage" - }, -/turf/simulated/floor/wood, -/area/medical/patient_wing_gym) -"jVg" = ( -/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; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"jVX" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"jXe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"jXD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"jXV" = ( -/obj/machinery/light, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) -"jZv" = ( -/obj/effect/floor_decal/corner_wide/blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony) -"kaD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "H2 to Mix" - }, -/obj/effect/floor_decal/corner/white{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"khp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"kju" = ( -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"klI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/machinery/meter{ - name = "Air supply" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"krN" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/medical/patient_wing_gym) -"ksm" = ( -/obj/effect/landmark{ - name = "borerstart" - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"ksI" = ( -/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/effect/floor_decal/corner_wide/lime{ - dir = 10 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Under Demolition"; - req_one_access = list(12,66); - dir = 4 - }, -/obj/item/tape/engineering{ - icon_state = "engineering_h"; - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"ktr" = ( -/obj/structure/table/rack, -/obj/item/pickaxe, -/obj/item/storage/bag/crystal, -/turf/simulated/floor/reinforced/airless, -/area/security/penal_colony/prison) -"ktH" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/random/junk, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"kuz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"kuZ" = ( -/obj/machinery/portable_atmospherics/canister/phoron_scarce, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/reinforced, -/area/rnd/storage) -"kvS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"kwp" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/emitter{ - anchored = 1; - dir = 4; - state = 2 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"kwz" = ( -/obj/effect/landmark/start{ - name = "Surgeon" - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 6 - }, -/obj/structure/bed/stool/chair/plastic{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"kGt" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/machinery/meter{ - name = "Scrubbers" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"kJR" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/xenoflora) -"kKf" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"kKw" = ( -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"kKR" = ( -/obj/machinery/light/small, -/obj/effect/floor_decal/corner_wide/blue{ - dir = 10 - }, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony) -"kLm" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor, -/area/engineering/storage_sublevel) -"kLG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"kMM" = ( -/turf/simulated/wall/r_wall, -/area/security/penal_colony/prison) -"kPF" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/door/window{ - dir = 8; - icon_state = "right"; - name = "Range Access" - }, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) -"kPJ" = ( -/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/scisublevel) -"kQh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"kQt" = ( -/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/window/westright{ - name = "Testing Cell A"; - req_access = null - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"kQH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly_storage) -"kRz" = ( -/obj/effect/decal/cleanable/mucus, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"kTA" = ( -/obj/structure/table/reinforced, -/obj/item/storage/backpack/satchel/leather, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"kTE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly_storage) -"kVF" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"kVR" = ( -/obj/effect/floor_decal/corner_wide/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony) -"lbh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"lcg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"lcj" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/maintenance/medsublevel_port) -"lcH" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/maintenance/research_xenobiology) -"lfY" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"lgi" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/effect/decal/cleanable/mucus, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"lgq" = ( -/obj/machinery/slime_extractor, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"lht" = ( -/obj/structure/grille, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"lhL" = ( -/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, -/area/engineering/backup_SMES) -"liV" = ( -/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/engineering/storage_sublevel) -"lje" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/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/plating, -/area/outpost/engineering/power) -"ljj" = ( -/obj/machinery/artifact_scanpad, -/obj/effect/floor_decal/spline/plain/black{ - dir = 6 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 9 - }, -/turf/simulated/floor/bluegrid, -/area/rnd/isolation_a) -"ljr" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"ljI" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/medical/patient_wing_gym) -"lkK" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/standard, -/obj/machinery/chemical_dispenser/bar_soft/full, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"lmV" = ( -/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/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"loy" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/south, -/turf/simulated/floor/tiled/freezer, -/area/engineering/bathroom) -"lsl" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor, -/area/engineering/backup_SMES) -"ltb" = ( -/obj/structure/table/wood, -/obj/item/deck/cards, -/obj/item/storage/card, -/obj/item/deck/tarot, -/turf/simulated/floor/wood, -/area/medical/patient_wing_library) -"lvt" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/obj/structure/sign/flag/scc{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"lxg" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"lBF" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"lCe" = ( -/turf/simulated/wall/r_wall, -/area/security/penal_colony) -"lDM" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/pink/full{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"lFK" = ( -/obj/structure/table/standard, -/obj/machinery/door/window/southleft{ - name = "Processing Window"; - req_access = list(66) - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"lLx" = ( -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"lLO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_range) -"lLU" = ( -/obj/machinery/floodlight, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"lMm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"lOl" = ( -/obj/effect/floor_decal/corner_wide/blue{ - dir = 6 - }, -/obj/structure/sign/flag/scc{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony) -"lOI" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"lPa" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"lQi" = ( -/obj/item/device/radio/intercom/west, -/obj/structure/bed/stool/chair/padded/brown, -/turf/simulated/floor/wood, -/area/medical/patient_a) -"lRe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"lRQ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/firealarm/south, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly_harvest) -"lSr" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenoflora"; - name = "Xenoflora Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora) -"lVK" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"lWn" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/medbay4) -"lXb" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"lXe" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass, -/area/medical/patient_wing_picnic) -"lXj" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"lYK" = ( -/turf/simulated/wall/r_wall, -/area/engineering/break_room) -"lZJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing_gym) -"lZN" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering Sublevel - Engine Camera 3"; - dir = 4; - network = list("Engine") - }, -/obj/machinery/alarm/west{ - pixel_x = -28 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"lZQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(66); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"lZT" = ( -/obj/structure/table/wood, -/obj/item/folder/sec, -/obj/item/stamp{ - name = "warden's rubber stamp" - }, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony/warden) -"meI" = ( -/obj/machinery/light, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/security/penal_colony) -"mgM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"mgV" = ( -/obj/structure/sign/biohazard{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/hologram/holopad, -/obj/machinery/camera{ - c_tag = "Research Sublevel - Xenobotany Lab"; - dir = 4; - network = list("Research Outpost"); - pixel_y = 22 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"mjH" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/reagent_containers/glass/bucket, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"mkg" = ( -/obj/structure/table/rack, -/obj/item/stack/nanopaste{ - pixel_y = -2 - }, -/obj/item/stack/nanopaste{ - pixel_y = 2 - }, -/obj/item/stack/nanopaste{ - pixel_y = 6 - }, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony/warden) -"mlz" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"mmQ" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/medical/patient_wing_post2) -"mne" = ( -/obj/machinery/firealarm/west, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"mnD" = ( -/obj/structure/bookcase/libraryspawn/reference, -/turf/simulated/floor/carpet, -/area/medical/patient_wing_library) -"moh" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"mol" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/maintenance/medsublevel_port) -"mpe" = ( -/obj/effect/floor_decal/corner_wide/blue{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/small/airless{ - name = "crystal chute" - }, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony) -"mpp" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/table/standard, -/obj/item/storage/box/fancy/donut, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"mpr" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"mpG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner_wide/red, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"mpK" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"mqu" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora_hazard) -"mrR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/medical/patient_wing_gym) -"msp" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/grass, -/area/medical/patient_wing_picnic) -"mtn" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"mtI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 6 - }, -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"mxT" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"myN" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"mzx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly_storage) -"mAw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"mAJ" = ( -/obj/structure/girder/displaced, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"mBp" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/medsublevel_port) -"mBK" = ( -/obj/item/storage/toolbox/mechanical, -/obj/structure/table/steel, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"mBU" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"mCU" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"mDh" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/regular/open{ - dir = 8; - id = "quarantine_ward_lockdown"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"mDi" = ( -/obj/structure/table/reinforced/steel, -/obj/item/gun/energy/plasmacutter, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony/warden) -"mEM" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/structure/sign/deathsposal{ - pixel_y = -32 - }, -/obj/effect/decal/warning_stripes, -/turf/simulated/floor/tiled/dark, -/area/maintenance/medsublevel_port) -"mET" = ( -/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 - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"mFg" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - use_power = 1 - }, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"mFK" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/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/plating, -/area/outpost/engineering/power) -"mGh" = ( -/obj/structure/bed/stool/chair/office/light, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "processing_airlock_control"; - name = "Processing Access Controller"; - pixel_x = 27; - pixel_y = -27; - tag_exterior_door = "processing_airlock_exterior"; - tag_interior_door = "processing_airlock_interior" - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"mGj" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) -"mGR" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/item/storage/box/drinkingglasses, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"mHO" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 4 - }, -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"mIU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"mKu" = ( -/obj/machinery/floodlight, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"mLr" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"mLz" = ( -/obj/structure/grille, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"mNr" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"mOX" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/the_singularitygen/tesla, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"mPn" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/firealarm/north, -/turf/simulated/floor/wood, -/area/medical/patient_c) -"mPs" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/medsublevel_port) -"mPA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"mQI" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/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/plating, -/area/outpost/engineering/power) -"mRK" = ( -/obj/structure/blocker, -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"mSX" = ( -/obj/effect/floor_decal/corner_wide/mauve/full, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"mUk" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/reagent_containers/glass/bucket, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"mWx" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"mYi" = ( -/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/plating, -/area/outpost/engineering/power) -"mYP" = ( -/obj/structure/table/standard, -/obj/item/folder/purple, -/obj/machinery/requests_console/north{ - department = "Xenobotany"; - departmentType = 2; - name = "Xenobotany Requests Console" - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/obj/item/taperoll/science, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"mZC" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora) -"mZR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"ncg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/medical/patient_wing_library) -"nep" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"neQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "xenobotany_airlock_interior"; - locked = 1; - name = "Hazardous Specimens Interior Airlock"; - req_access = list(55); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "hazardous_airlock_control"; - name = "Interior Access Button"; - pixel_x = -1; - pixel_y = 25; - req_access = list(55) - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenoflora"; - name = "Xenoflora Blast Door"; - opacity = 0 - }, -/obj/effect/floor_decal/corner_wide/red{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"ngj" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"ngr" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner_wide/red/full{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"nhr" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/medical/patient_wing_library) -"nhA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/medical/patient_wing_gym) -"nhE" = ( -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Collector Array Aft"; - dir = 8 - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Tesla - Grid"; - charge = 10000000; - cur_coils = 4; - input_attempt = 1; - input_level = 500000; - output_attempt = 1; - output_level = 500000 - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"nhK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"nij" = ( -/obj/structure/punching_bag, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/medical/patient_wing_gym) -"niP" = ( -/obj/effect/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/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"nkj" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora_hazard) -"nkZ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/closet/secure_closet/xenobotany, -/obj/effect/floor_decal/spline/plain/black{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"nnk" = ( -/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 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"nnP" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/closet/radiation, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"noC" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing_gym) -"nqx" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 32; - icon_state = "11-1" - }, -/turf/simulated/open, -/area/maintenance/engsublevel) -"nqY" = ( -/obj/structure/closet/excavation, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/storage/box/samplebags, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - EVA Preparation"; - dir = 4 - }, -/obj/item/clothing/gloves/latex/nitrile/tajara, -/obj/item/clothing/gloves/latex/nitrile/unathi, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"nsu" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/wall/r_wall, -/area/maintenance/medsublevel_port) -"ntd" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/ringer/south{ - department = "Engineering"; - id = "engie_ringer"; - req_access = list(10) - }, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"nvZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"nwo" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"nxS" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/ash, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"nyX" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"nzN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"nzR" = ( -/turf/simulated/wall, -/area/medical/patient_wing_hallway) -"nAd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - req_one_access = list(12,55); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"nAp" = ( -/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/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"nAx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/random/pottedplant, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/medical/patient_wing_gym) -"nAz" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly_storage) -"nBf" = ( -/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, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/alarm/east{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"nBz" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"nDG" = ( -/obj/structure/grille, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/turf/simulated/floor, -/area/rnd/mixing) -"nDL" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora_hazard) -"nES" = ( -/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{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"nFv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"nGh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/sign/flag/scc{ - pixel_y = 32 - }, -/turf/simulated/floor/airless, -/area/security/penal_colony) -"nHn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"nHA" = ( -/obj/machinery/door/firedoor/multi_tile{ - dir = 1 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Storage"; - req_access = list(66) - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"nHP" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/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, -/area/medical/patient_wing_post2) -"nHQ" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/engsublevel) -"nIs" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/wood, -/area/medical/patient_d) -"nJR" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/bed, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor/westright{ - req_access = list(3) - }, -/mob/living/carbon/human/industrial_xion_remote_warden, -/turf/simulated/floor/reinforced/airless, -/area/security/penal_colony/warden) -"nJV" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access = list(12); - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"nKe" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/closet/walllocker/firecloset{ - pixel_x = 30 - }, -/obj/item/storage/toolbox/emergency, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"nND" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"nOm" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/red/full{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"nPj" = ( -/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/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"nQi" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/girder/displaced, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"nRA" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/ringer/south{ - department = "Engineering"; - id = "engie_ringer"; - req_access = list(10) - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"nRV" = ( -/obj/machinery/chemical_dispenser/bar_soft/full{ - pixel_y = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"nTr" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/medical/patient_wing_post2) -"nTE" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"nVT" = ( -/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/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/obj/machinery/airlock_sensor{ - id_tag = "sl2s"; - pixel_x = 28 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"nXh" = ( -/obj/structure/ladder/up{ - pixel_y = 16 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/window/westright{ - name = "Maintenance Access"; - req_access = list(12) - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"nXD" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"nYw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"obP" = ( -/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/patient_wing_post1) -"odm" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/floor_decal/corner/lime/full{ - dir = 8 - }, -/obj/machinery/light_construct{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"oiB" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony/warden) -"oki" = ( -/obj/random/pottedplant, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"olc" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/medical) -"olG" = ( -/obj/structure/bed/stool/chair/office/dark, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"opa" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/medical/patient_wing_post2) -"ops" = ( -/obj/machinery/door/airlock/hatch{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "tesla1_airlock_exterior"; - locked = 1; - name = "Engine Airlock Exterior"; - req_access = list(11); - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "tesla1_airlock_control"; - name = "Engine Access Button"; - pixel_y = 26; - req_access = list(11) - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"opI" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "eng_sl_eva_pump" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"ori" = ( -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Tesla Output"; - name_tag = "Tesla Output" - }, -/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{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"otg" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering Sublevel - Engine Camera 1"; - dir = 8; - network = list("Engine") - }, -/obj/machinery/alarm/east{ - pixel_x = 28 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"otp" = ( -/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/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"oub" = ( -/turf/simulated/wall/r_wall, -/area/engineering/storage_tesla) -"ovg" = ( -/turf/simulated/floor/reinforced, -/area/rnd/isolation_a) -"ovN" = ( -/obj/effect/floor_decal/corner_wide/blue{ - dir = 4 - }, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony) -"owd" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass, -/area/medical/patient_wing_picnic) -"owq" = ( -/turf/unsimulated/chasm_mask, -/area/outpost/engineering/power) -"owL" = ( -/turf/simulated/wall, -/area/engineering/storage_sublevel) -"owN" = ( -/turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) -"oyF" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/head/helmet, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"ozh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"ozn" = ( -/obj/random/pottedplant, -/obj/effect/floor_decal/corner_wide/lime/full, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"oAL" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/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{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"oBQ" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/sign/flag/scc{ - pixel_x = 32 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"oFa" = ( -/obj/machinery/airlock_sensor{ - id_tag = "research_sensor"; - master_tag = "research_airlock"; - pixel_x = -27 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "research_pump" - }, -/obj/machinery/light/small, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"oFA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"oFB" = ( -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"oJe" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/power/crystal_agitator, -/turf/simulated/floor/airless, -/area/security/penal_colony) -"oKh" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"oLA" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing_post2) -"oLE" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/regular/open{ - dir = 8; - id = "quarantine_ward_lockdown"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"oMp" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/security/penal_colony) -"oMW" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"oOd" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10; - tag = "icon-warning_dust (SOUTHWEST)" - }, -/obj/structure/table/rack, -/obj/item/ladder_mobile, -/obj/item/ladder_mobile, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"oQh" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"oTN" = ( -/obj/structure/grille/broken, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"oUd" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/bed/stool/chair/office/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/medical/patient_wing_post2) -"oUJ" = ( -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"oVg" = ( -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 8 - }, -/area/outpost/research/hallway) -"oWV" = ( -/obj/machinery/light/small, -/obj/effect/floor_decal/corner_wide/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony) -"oXU" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"oZc" = ( -/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/glass_medical{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "processing_airlock_exterior"; - locked = 1; - name = "Supervised Living Center Exterior"; - req_access = list(66); - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"oZx" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"pdV" = ( -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/rnd/xenobiology/xenoflora) -"peb" = ( -/obj/structure/morgue, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/maintenance/medsublevel_port) -"pft" = ( -/obj/structure/grille, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced, -/turf/simulated/floor, -/area/rnd/mixing) -"piW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"pjq" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/emitter{ - anchored = 1; - dir = 8; - state = 2 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"pkV" = ( -/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/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"pmm" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/anomaly_container, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) -"pmn" = ( -/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/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"poo" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/engineering/backup_SMES) -"prR" = ( -/obj/structure/disposalpipe/up, -/turf/simulated/floor/airless, -/area/security/penal_colony) -"psd" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"ptY" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/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, -/turf/simulated/floor/carpet, -/area/engineering/break_room) -"pvc" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"pvi" = ( -/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/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"pvF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 9 - }, -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"pzh" = ( -/obj/machinery/alarm/east{ - pixel_x = 28 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/bed/padded, -/obj/item/bedsheet/medical, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/medical/patient_b) -"pzB" = ( -/obj/effect/floor_decal/corner_wide/blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony) -"pzS" = ( -/obj/machinery/alarm/north, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plating, -/area/engineering/storage_tesla) -"pAr" = ( -/obj/effect/floor_decal/corner_wide/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony) -"pCk" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing_gym) -"pCR" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/backup_SMES) -"pDJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"pDN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/machinery/button/remote/airlock{ - id = "patient_2"; - name = "Patient Room B Bolt Control"; - pixel_x = -5; - pixel_y = 5; - req_access = null; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/medical/patient_b) -"pFa" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/machinery/suit_cycler/science, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"pHa" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"pHE" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/obj/random/coin, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"pIl" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"pJT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"pMT" = ( -/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{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"pNG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/airless, -/area/security/penal_colony) -"pOl" = ( -/obj/machinery/computer/security/engineering, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"pQb" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/reagent_containers/glass/beaker/teapot{ - pixel_y = 16 - }, -/obj/item/storage/box/snack{ - desc = "A box full of snack foods. A label is attached that reads, 'Sorry about the microwaves.'"; - name = "corporate care package" - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"pUs" = ( -/obj/item/frame/fire_alarm, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"pUK" = ( -/obj/structure/sign/biohazard{ - pixel_x = -32 - }, -/obj/structure/closet/hazmat/research, -/obj/item/clothing/mask/gas/alt, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/tank/oxygen, -/obj/effect/floor_decal/corner_wide/red/full{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"pUU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light_construct{ - dir = 4 - }, -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"pUY" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/sink{ - dir = 4; - pixel_x = 12; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"pXJ" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/power/apc/east, -/turf/simulated/floor/airless, -/area/security/penal_colony/warden) -"qah" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "eng_sl_eva_pump" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"qan" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"qax" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"qaD" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/sign/biohazard, -/obj/structure/window/reinforced/tinted/frosted{ - desc = "It looks extra strong and frosted over."; - dir = 5; - maxhealth = 120; - name = "Reinforced frosted window" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"qbF" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/computer/general_air_control/large_tank_control{ - input_tag = "h2_in"; - name = "Hydrogen Supply Control"; - output_tag = "h2_out"; - sensors = list("h2_sensor"="Tank") - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"qcS" = ( -/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{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/medical/patient_b) -"qdo" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/obj/random/junk, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"qeA" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/particle_accelerator/particle_emitter/left{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"qeP" = ( -/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/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/engsublevel) -"qfv" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "medsubcubicle2"; - name = "Cubicle 2 Privacy Bolts"; - pixel_x = -24; - pixel_y = 8; - specialfunctions = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/sleep/medical) -"qgg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"qhP" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"qid" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/regular/open{ - id = "virology_testing_lockdown"; - name = "Virology Testing Blast Doors" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"qiV" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass, -/area/medical/patient_wing_picnic) -"qjw" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"qjL" = ( -/obj/structure/bed, -/mob/living/carbon/human/industrial_xion_remote_penal, -/turf/simulated/floor/reinforced/airless, -/area/security/penal_colony/prison) -"qki" = ( -/obj/effect/floor_decal/corner_wide/yellow/full, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"qkl" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 5 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Under Demolition"; - req_one_access = list(12,66); - dir = 4 - }, -/obj/item/tape/engineering{ - icon_state = "engineering_h"; - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"qkm" = ( -/obj/machinery/light/small, -/obj/effect/floor_decal/corner_wide/blue, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony) -"qkJ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"qlb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"qnc" = ( -/obj/structure/grille/broken, -/obj/item/material/shard, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"qnn" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"qnt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"qpJ" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"qqf" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/medical/medbay4) -"qqB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"qsc" = ( -/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 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"qtN" = ( -/obj/effect/floor_decal/corner_wide/blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony) -"qtU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"qwD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"qBr" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"qDA" = ( -/obj/machinery/botany/extractor, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"qFn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"qFM" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "sl2p" - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"qGf" = ( -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Corridor Camera 5"; - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"qHz" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"qHY" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"qId" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"qLE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/medical/patient_wing_gym) -"qMB" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/mine/unexplored) -"qMQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/maintenance/substation/engineering_sublevel) -"qNw" = ( -/obj/structure/closet/excavation, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/storage/box/samplebags, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/obj/item/clothing/gloves/latex/nitrile/tajara, -/obj/item/clothing/gloves/latex/nitrile/unathi, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"qNL" = ( -/turf/simulated/wall, -/area/medical/patient_wing_gym) -"qOI" = ( -/obj/item/landmine/emp{ - anchored = 1; - deployed = 1; - icon_state = "emplandmine_on" - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"qPS" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/anomaly_harvest) -"qQq" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - frequency = 1441; - icon_state = "map_vent_in"; - id_tag = "h2_out"; - initialize_directions = 8; - 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) -"qRa" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/wood, -/area/medical/patient_a) -"qRx" = ( -/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" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"qSm" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) -"qSH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - id = "isoA_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "isoA_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "isoA_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "isoA_window_tint" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/patient_d) -"qTF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"qUD" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/effect/decal/remains/xeno, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"qWW" = ( -/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{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - req_access = null; - req_one_access = list(11,24); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/hallway) -"qXm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"qZD" = ( -/turf/simulated/wall, -/area/maintenance/substation/research_sublevel) -"qZV" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/simulated/wall/r_wall, -/area/engineering/backup_SMES) -"rfa" = ( -/turf/simulated/wall, -/area/maintenance/scisublevel) -"rhI" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"rhJ" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"rhL" = ( -/obj/structure/bookcase/libraryspawn/nonfiction, -/turf/simulated/floor/carpet, -/area/medical/patient_wing_library) -"riA" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/medbay4) -"rjx" = ( -/obj/structure/bookcase/libraryspawn/fiction, -/turf/simulated/floor/carpet, -/area/medical/patient_wing_library) -"rjC" = ( -/obj/effect/landmark/start{ - name = "Pharmacist" - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 10 - }, -/obj/structure/bed/stool/chair/plastic{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"rmO" = ( -/obj/structure/table/reinforced/wood, -/turf/simulated/floor/carpet, -/area/engineering/break_room) -"rmW" = ( -/obj/structure/blocker, -/obj/structure/grille, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"rnn" = ( -/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/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "sl2o"; - locked = 1; - req_access = null; - req_one_access = list(7,13); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"rnD" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"rnL" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 4 - }, -/obj/machinery/bluespace_beacon, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"rnM" = ( -/turf/simulated/wall/r_wall, -/area/medical/patient_b) -"rnV" = ( -/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/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"rpT" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/engineering/backup_SMES) -"rtR" = ( -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Engine Aft Airlock"; - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"rwo" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = 12; - pixel_y = -24 - }, -/obj/machinery/power/apc/south, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly_harvest) -"ryu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/research{ - name = "Autopsy and Incineration"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_range) -"rze" = ( -/obj/machinery/door/window/southleft{ - name = "Section B"; - req_access = list(65) - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) -"rzs" = ( -/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/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"rzD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner_wide/yellow/full, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"rAQ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"rCf" = ( -/obj/structure/table/standard, -/obj/item/device/hand_labeler, -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"rCQ" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 6 - }, -/obj/structure/bed/stool/chair/plastic{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"rDB" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"rEN" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - icon_state = "map_on"; - name = "Distro to Canisters"; - target_pressure = 150; - use_power = 1 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/eva) -"rGm" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"rHa" = ( -/obj/machinery/alarm/east{ - pixel_x = 28 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/bed/padded, -/obj/item/bedsheet/medical, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/medical/patient_d) -"rHf" = ( -/obj/machinery/mech_recharger, -/obj/effect/decal/warning_stripes, -/obj/machinery/door/window{ - base_state = "right"; - name = "Remote Mech Storage"; - req_access = list(20) - }, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"rHm" = ( -/obj/effect/floor_decal/corner_wide/pink{ - dir = 6 - }, -/obj/machinery/light_construct{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"rIx" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"rKS" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"rMt" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/firealarm/north{ - dir = 2; - pixel_y = -28 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled, -/area/medical/patient_wing_post2) -"rNO" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"rPy" = ( -/obj/structure/sink/kitchen{ - dir = 8; - name = "Autopsy sink"; - pixel_x = 20 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/maintenance/medsublevel_port) -"rRi" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"rSj" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"rSk" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/structure/bed/stool/chair/office/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"rSq" = ( -/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/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"rSC" = ( -/obj/effect/floor_decal/corner_wide/blue/full, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony) -"rVI" = ( -/obj/structure/girder/displaced, -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"rWc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/wood, -/area/medical/patient_wing_picnic) -"rWw" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/anomaly_container, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) -"rXB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"rZZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/engineering/storage_tesla) -"sbs" = ( -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_library) -"scg" = ( -/turf/simulated/floor/plating, -/area/engineering/storage_tesla) -"sht" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/security/penal_colony) -"shZ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/valve/digital/open{ - dir = 4; - name = "Isolation C" - }, -/obj/machinery/button/remote/airlock{ - id = "riso3"; - name = "Door Bolt Control"; - pixel_x = 25; - pixel_y = -22; - specialfunctions = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "iso_c"; - name = "Blast Door Control"; - pixel_x = 25; - pixel_y = -30; - req_access = list(7) - }, -/obj/machinery/button/remote/blast_door{ - id = "iso_c_purge"; - name = "PURGE Atmosphere"; - pixel_x = 25; - pixel_y = -38; - req_access = list(7) - }, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"siS" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"smA" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Engineering Sublevel Substation Bypass" - }, -/turf/simulated/floor, -/area/maintenance/substation/engineering_sublevel) -"soJ" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/multitool{ - pixel_x = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/backup_SMES) -"sph" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/mixing) -"spz" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/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/plating, -/area/rnd/xenoarch_atrium) -"sqx" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"ssY" = ( -/obj/structure/table/steel, -/obj/item/storage/toolbox/mechanical, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"svn" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/shieldgen, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"swb" = ( -/obj/structure/table/glass, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"sAb" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/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/plating, -/area/outpost/engineering/power) -"sCq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"sCY" = ( -/turf/simulated/wall, -/area/maintenance/substation/medical_sublevel) -"sDI" = ( -/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/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"sFw" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"sHO" = ( -/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{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/medical/patient_d) -"sLJ" = ( -/obj/machinery/optable{ - name = "Autopsy Table" - }, -/turf/simulated/floor/tiled, -/area/rnd/test_range) -"sOK" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/pink/full, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"sOM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"sRe" = ( -/obj/machinery/light/small, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"sRQ" = ( -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"sSr" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/yellow/full, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"sTu" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"sUD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/engsublevel) -"sWS" = ( -/obj/effect/landmark/start{ - name = "Medical Intern" - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 6 - }, -/obj/structure/bed/stool/chair/plastic{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"sXz" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/medsublevel) -"sXA" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"sXH" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/pipedispenser/disposal, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"sYz" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"tba" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/firealarm/north, -/turf/simulated/floor/wood, -/area/medical/patient_b) -"tbe" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/engineering/break_room) -"tbx" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"tbD" = ( -/obj/machinery/firealarm/west, -/obj/effect/floor_decal/corner_wide/yellow/full, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"tcJ" = ( -/obj/machinery/optable{ - name = "Autopsy Table" - }, -/obj/random/loot, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/maintenance/medsublevel_port) -"tcX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/engineering/atmos) -"tdu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"ted" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/reinforced, -/area/rnd/isolation_a) -"tkc" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/effect/decal/cleanable/cobweb2, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"tkm" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora_hazard) -"tmy" = ( -/obj/effect/floor_decal/corner/lime/full, -/obj/effect/floor_decal/corner/lime{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/button/remote/blast_door{ - id = "quarantine_ward_lockdown"; - name = "Quarantine Ward Lockdown"; - pixel_x = -24; - req_access = list(66) - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"tnA" = ( -/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/plating{ - roof_type = null - }, -/area/maintenance/engsublevel) -"tnK" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"tob" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/storage_tesla) -"toQ" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing_gym) -"tqx" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/random/junk, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"trb" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/closet/crate{ - name = "Target Crate" - }, -/obj/item/storage/box/monkeycubes, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) -"trB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_range) -"twe" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/security/penal_colony) -"txo" = ( -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Atmospherics East 2"; - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"tzO" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "sl2p" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "sl2"; - pixel_x = -26; - req_access = list(13); - tag_airpump = "sl2p"; - tag_chamber_sensor = "sl2s"; - tag_exterior_door = "sl2o"; - tag_interior_door = "sl2i" - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"tAB" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "tesla2_airlock_control"; - name = "Engine Access Console"; - pixel_x = 4; - pixel_y = -30; - tag_exterior_door = "tesla1_airlock_exterior"; - tag_interior_door = "tesla1_airlock_interior" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"tAO" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "tesla1_airlock_control"; - name = "Engine Access Console"; - pixel_x = 32; - pixel_y = 4; - tag_exterior_door = "tesla1_airlock_exterior"; - tag_interior_door = "tesla1_airlock_interior" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"tCp" = ( -/obj/structure/weightlifter, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/turf/simulated/floor/wood, -/area/medical/patient_wing_gym) -"tDA" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"tDF" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"tEz" = ( -/obj/structure/lattice/catwalk, -/turf/simulated/open/airless, -/area/mine/unexplored) -"tJm" = ( -/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/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering Sublevel - Engine Camera 2"; - network = list("Engine") - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"tLV" = ( -/obj/structure/sign/securearea{ - pixel_x = 32 - }, -/obj/effect/floor_decal/corner_wide/blue{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"tMU" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Artifact Storage"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly_storage) -"tNl" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"tNs" = ( -/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/effect/floor_decal/corner_wide/lime{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"tNU" = ( -/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/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/door/airlock/glass_medical{ - name = "Processing"; - req_access = list(66); - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"tQF" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"tRP" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/pipe/manifold/visible/green, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"tSk" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 6 - }, -/obj/structure/bed/stool/chair/plastic{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Surgeon" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"tSs" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"tTG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/backup_SMES) -"tUv" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/security/penal_colony) -"tUy" = ( -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"tUS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"tUY" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Perma, Patient Four Dorm"; - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = 24; - pixel_y = -6 - }, -/turf/simulated/floor/wood, -/area/medical/patient_d) -"tVH" = ( -/obj/structure/closet/crate, -/obj/item/stack/material/steel{ - amount = 20 - }, -/obj/item/stack/material/plastic{ - amount = 50 - }, -/obj/item/stack/material/wood{ - amount = 30 - }, -/obj/item/stack/material/glass/reinforced{ - amount = 50 - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"tWX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"tXM" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/medical/medbay4) -"tYh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/medical/patient_b) -"tZw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"udp" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall, -/area/engineering/storage_sublevel) -"udE" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/regular/open{ - dir = 8; - id = "virology_testing_lockdown"; - name = "Virology Testing Blast Doors" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"udG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"ugX" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"ugY" = ( -/obj/structure/table/rack, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/atmos, -/obj/item/clothing/head/helmet/space/void/atmos, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"uhh" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/closet/wardrobe/medic_white, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/medical) -"uhr" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing) -"ujo" = ( -/turf/simulated/wall/r_wall, -/area/engineering/bathroom) -"ukB" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/medical/patient_wing_picnic) -"ulX" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/closet/secure_closet/medical3, -/obj/item/clothing/gloves/latex/nitrile/unathi, -/obj/item/clothing/gloves/latex/nitrile/tajara, -/obj/item/clothing/gloves/latex/unathi, -/obj/item/clothing/gloves/latex/tajara, -/obj/item/clothing/gloves/latex/vaurca, -/turf/simulated/floor/tiled, -/area/medical/medbay4) -"umt" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenoflora"; - name = "Xenoflora Blast Door"; - opacity = 0 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora_hazard) -"unQ" = ( -/turf/simulated/wall, -/area/medical/patient_wing_post1) -"upx" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"uqb" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor, -/area/engineering/break_room) -"ura" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"usm" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"usw" = ( -/obj/random/junk, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"uuc" = ( -/obj/machinery/door/window/southleft{ - name = "Section A"; - req_access = list(65) - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) -"uui" = ( -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"uuH" = ( -/obj/item/frame/air_alarm, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"uvw" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/security/penal_colony) -"uwC" = ( -/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/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"uwP" = ( -/turf/simulated/wall/r_wall, -/area/engineering/backup_SMES) -"uwR" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Sublevel Substation"; - req_access = list(11); - req_one_access = null; - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/substation/engineering_sublevel) -"uxH" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/regular/open{ - id = "virology_testing_lockdown"; - name = "Virology Testing Blast Doors" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"uyg" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing_library) -"uAS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/power/apc/south, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/wood, -/area/medical/patient_wing_library) -"uBs" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/particle_accelerator/control_box, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"uFh" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 6 - }, -/obj/structure/bed/stool/chair/plastic{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Medical Intern" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"uGd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"uGp" = ( -/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/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"uGF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - req_access = list(12); - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"uIC" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"uKJ" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "tesla2_airlock_control"; - name = "Engine Access Button"; - pixel_x = 24; - req_access = list(11) - }, -/obj/machinery/door/airlock/hatch{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "tesla2_airlock_interior"; - locked = 1; - name = "Engine Airlock Interior"; - req_access = list(11); - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"uMh" = ( -/obj/effect/floor_decal/corner_wide/blue{ - dir = 6 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"uMk" = ( -/obj/structure/trash_pile, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"uMH" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"uNb" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Library" - }, -/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 = 1 - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_library) -"uNX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"uPd" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/field_generator, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"uQx" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/red/full{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"uRo" = ( -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/tesla_coil, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"uRE" = ( -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/research_xenobiology) -"uRU" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/device/radio/intercom/west, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"uSI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/maintenance/medsublevel_port) -"uSU" = ( -/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 = 1; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"uTq" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/newscaster/east, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"uVg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"uVU" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"uXC" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/machinery/reagentgrinder, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"uXR" = ( -/turf/simulated/floor/tiled, -/area/rnd/test_range) -"uYK" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/standard, -/obj/item/storage/box/snack{ - desc = "A box full of snack foods. A label is attached that reads, 'Sorry about the microwaves.'"; - name = "corporate care package" - }, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"uZy" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"vbA" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"vbC" = ( -/obj/machinery/door/airlock/highsecurity{ - id_tag = null; - name = "Remote Station"; - req_access = list(19); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"vcS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/airless, -/area/security/penal_colony) -"vdr" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/zpipe/down{ - dir = 1 - }, -/turf/simulated/open, -/area/maintenance/engsublevel) -"veq" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/mine/unexplored) -"vgD" = ( -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"vhq" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"vhT" = ( -/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/lattice/catwalk/indoor/grate, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/outpost/engineering/hallway) -"vjP" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/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, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"vkN" = ( -/obj/machinery/door/airlock/glass{ - name = "Prisoner Bay"; - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/security/penal_colony/prison) -"vkY" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"vlf" = ( -/obj/machinery/newscaster/north, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/iv_drip, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/wood, -/area/medical/patient_a) -"vll" = ( -/obj/structure/bed/stool/padded/red, -/obj/effect/decal/cleanable/mucus, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"vly" = ( -/turf/simulated/wall, -/area/engineering/break_room) -"vnf" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/machinery/light/small/emergency, -/obj/effect/landmark{ - name = "Revenant" - }, -/turf/simulated/floor/tiled/freezer, -/area/maintenance/medsublevel_port) -"vnr" = ( -/obj/structure/cable/cyan, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/tesla_coil, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"vnz" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"vnA" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/item/circuitboard/smes, -/obj/item/circuitboard/smes, -/obj/item/smes_coil, -/obj/item/smes_coil, -/obj/item/smes_coil/super_capacity, -/obj/item/smes_coil/super_capacity, -/obj/item/smes_coil/super_io, -/obj/item/smes_coil/super_io, -/turf/simulated/floor/tiled, -/area/engineering/storage_tesla) -"vou" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"vqy" = ( -/obj/structure/window/reinforced, -/obj/structure/stairs/west, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"vqQ" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/particle_accelerator/fuel_chamber{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"vqV" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/mixing) -"vrd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = -24 - }, -/obj/machinery/firealarm/south, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/outpost/research/anomaly_storage) -"vrR" = ( -/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" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"vtH" = ( -/obj/structure/sign/flag/scc{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony/warden) -"vyW" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Sublevel Substation"; - req_access = list(11); - req_one_access = null; - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/substation/engineering_sublevel) -"vBC" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/structure/sign/biohazard{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/red/full{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"vCz" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing_post1) -"vDn" = ( -/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/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"vEg" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/power/smes/buildable{ - cur_coils = 4; - input_level = 500000; - output_level = 500000 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Backup Power Storage"; - dir = 4 - }, -/obj/structure/cable, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor, -/area/engineering/backup_SMES) -"vFc" = ( -/obj/structure/bed/stool/chair, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"vFh" = ( -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/tesla_coil, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"vGh" = ( -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/security/penal_colony) -"vHL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_wide/yellow/full, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"vIg" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - id = "iso_c_purge"; - name = "Exterior Blast Door" - }, -/turf/simulated/floor/plating, -/area/rnd/isolation_c) -"vMo" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/wood, -/area/medical/patient_b) -"vMS" = ( -/obj/effect/landmark/start{ - name = "Medical Intern" - }, -/obj/effect/floor_decal/corner_wide/lime/full{ - dir = 1 - }, -/obj/structure/bed/stool/chair/plastic{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"vPb" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"vPT" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"vQH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/machinery/button/remote/airlock{ - id = "patient_1"; - name = "Patient Room A Bolt Control"; - pixel_x = 5; - pixel_y = -3; - req_access = null; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/medical/patient_a) -"vRU" = ( -/obj/structure/sign/nosmoking_2, -/turf/simulated/wall/r_wall, -/area/outpost/engineering/hallway) -"vRZ" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"vUF" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/particle_accelerator/particle_emitter/center{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"vVq" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"vVs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"vWn" = ( -/obj/structure/sign/biohazard{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/table/standard, -/obj/item/disk/botany, -/obj/item/disk/botany, -/obj/item/disk/botany, -/obj/item/disk/botany, -/obj/item/disk/botany, -/obj/item/disk/botany, -/obj/item/disk/botany, -/obj/item/disk/botany, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"vYg" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/medical/patient_wing_picnic) -"vYQ" = ( -/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/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"vZr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/backup_SMES) -"vZM" = ( -/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/extinguisher_cabinet/south, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"waa" = ( -/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{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/rnd/xenobiology/xenoflora) -"waA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"waD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"waL" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/machinery/button/remote/airlock{ - id = "patient_3"; - name = "Patient Room C Bolt Control"; - pixel_x = 5; - pixel_y = 5; - req_access = null; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/medical/patient_c) -"wbr" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/scisublevel) -"wbE" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"wbW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/machinery/meter{ - name = "Scrubbers" - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"wcQ" = ( -/obj/effect/floor_decal/corner_wide/mauve, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"wcX" = ( -/obj/structure/grille/broken, -/obj/structure/girder/displaced, -/obj/effect/decal/cleanable/generic, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"wdi" = ( -/obj/structure/table/rack, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/item/device/paint_sprayer, -/turf/simulated/floor/tiled, -/area/engineering/storage_sublevel) -"weI" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/medical/medbay4) -"wfd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"wfF" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/power/apc/south, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 12; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/medical/patient_wing_post2) -"wfN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/smartfridge, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"whf" = ( -/obj/machinery/newscaster/north, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/iv_drip, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/wood, -/area/medical/patient_b) -"whA" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/random/loot, -/obj/structure/closet/crate, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"wkd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"wkZ" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/simulated/floor/tiled, -/area/engineering/backup_SMES) -"wlz" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/storage_tesla) -"wnO" = ( -/obj/effect/floor_decal/corner_wide/lime/full{ - dir = 4 - }, -/obj/structure/bed/stool/chair/plastic{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Psychiatrist" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"wpw" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"wqz" = ( -/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/yjunction{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"wqA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge/aibunker) -"wsn" = ( -/obj/structure/grille, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - name = "hanging light fixture"; - pixel_x = -7 - }, -/turf/simulated/floor, -/area/rnd/mixing) -"wsT" = ( -/obj/effect/floor_decal/corner_wide/blue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony) -"wtB" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/security/penal_colony) -"wtT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"wuX" = ( -/turf/simulated/floor/tiled, -/area/engineering/backup_SMES) -"wve" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"wwk" = ( -/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, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"wyg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "quarantine_processing_shutters"; - name = "Quarantine Processing Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"wAi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"wCJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/item/clothing/suit/space/anomaly, -/obj/item/clothing/suit/space/anomaly, -/obj/item/clothing/head/helmet/space/anomaly, -/obj/item/clothing/head/helmet/space/anomaly, -/obj/structure/closet{ - desc = "A dusty old locker."; - name = "old suit storage" - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"wCR" = ( -/turf/simulated/wall/r_wall, -/area/engineering/storage_sublevel) -"wEx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"wGK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel) -"wHR" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"wIo" = ( -/obj/structure/closet/secure_closet/warden, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony/warden) -"wIA" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing_picnic) -"wKw" = ( -/obj/structure/table/rack, -/obj/item/storage/box/monkeycubes{ - pixel_x = 5; - pixel_y = -2 - }, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -4; - pixel_y = -3 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_storage) -"wKL" = ( -/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/plating, -/area/outpost/engineering/power) -"wLc" = ( -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_gym) -"wMK" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/sink{ - dir = 4; - pixel_x = 12; - pixel_y = -2 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Research Sublevel - Xenobotany Hazardous Specimens"; - dir = 8; - network = list("Research Outpost") - }, -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/obj/effect/floor_decal/corner_wide/red/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"wQs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"wRu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"wSX" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"wTV" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"wUb" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"wVj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "hazardous_airlock_control"; - name = "Hazardous Specimens Access Controller"; - pixel_x = 27; - pixel_y = 6; - req_access = null; - tag_exterior_door = "xenobotany_airlock_exterior"; - tag_interior_door = "xenobotany_airlock_interior" - }, -/obj/effect/floor_decal/corner_wide/red{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"wVM" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"wWw" = ( -/obj/effect/floor_decal/corner_wide/blue{ - dir = 9 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/small/airless{ - name = "crystal chute" - }, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony) -"wWU" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/regular/open{ - dir = 8; - id = "quarantine_ward_lockdown"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"wZc" = ( -/obj/machinery/firealarm/south, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"xex" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/substation/research_sublevel) -"xfX" = ( -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"xgn" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing) -"xgt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/button/remote/airlock{ - id = "processing_airlock_exterior"; - name = "Operate Exterior Airlock"; - pixel_x = 24; - pixel_y = -8; - req_access = list(66) - }, -/obj/machinery/button/remote/airlock{ - id = "processing_airlock_exterior"; - name = "Bolt Exterior Airlock"; - pixel_x = 35; - pixel_y = -8; - req_access = list(66); - specialfunctions = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "processing_airlock_interior"; - name = "Operate Interior Airlock"; - pixel_x = 24; - pixel_y = 4; - req_access = list(66) - }, -/obj/machinery/button/remote/airlock{ - id = "processing_airlock_interior"; - name = "Bolt Interior Airlock"; - pixel_x = 35; - pixel_y = 4; - req_access = list(66); - specialfunctions = 4 - }, -/obj/item/roller, -/obj/item/roller{ - pixel_y = 16 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_post1) -"xif" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"xjT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/structure/table/standard, -/obj/structure/bedsheetbin, -/obj/random/loot, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"xjV" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor, -/area/engineering/storage_sublevel) -"xon" = ( -/obj/structure/table/wood, -/obj/machinery/librarypubliccomp{ - pixel_y = 8 - }, -/turf/simulated/floor/wood, -/area/medical/patient_wing_library) -"xqo" = ( -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/turf/simulated/wall/r_wall, -/area/engineering/gravity_gen) -"xqG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing_hallway) -"xrb" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/wood, -/area/medical/patient_c) -"xrn" = ( -/obj/structure/bed/stool/chair, -/turf/simulated/floor/carpet, -/area/engineering/break_room) -"xrs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/backup_SMES) -"xsE" = ( -/obj/structure/table/standard, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"xte" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/airless, -/area/security/penal_colony) -"xti" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"xtB" = ( -/obj/machinery/atmospherics/binary/pump{ - icon_state = "map_on"; - name = "Distro to Canisters"; - target_pressure = 150; - use_power = 1 - }, -/obj/effect/floor_decal/industrial/warning/cee, -/turf/simulated/floor/plating, -/area/rnd/mixing) -"xuw" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"xxd" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Corridor Camera 1"; - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"xxg" = ( -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Sublevel - Power Distribution"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"xyk" = ( -/obj/structure/sign/nosmoking_1{ - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"xyq" = ( -/obj/machinery/power/apc/west, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly_storage) -"xyv" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/medical/medbay4) -"xyA" = ( -/obj/structure/table/standard, -/obj/item/storage/box/bodybags, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/maintenance/medsublevel_port) -"xyT" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/white, -/area/medical/morgue) -"xzL" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"xDi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"xDz" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"xEu" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"xFp" = ( -/obj/machinery/power/apc/south{ - is_critical = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/red{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"xFr" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"xFI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "xenobotany_airlock_exterior"; - locked = 1; - name = "Hazardous Specimens Exterior Airlock"; - req_access = list(55); - 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/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "hazardous_airlock_control"; - name = "Exterior Access Button"; - pixel_x = -1; - pixel_y = -25; - req_access = list(55) - }, -/obj/effect/floor_decal/corner_wide/red{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"xIB" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner_wide/red/full{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_hazard) -"xLk" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/turf/simulated/floor/beach/water/pool, -/area/medical/patient_wing_gym) -"xLs" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "eng_sl_eva_airlock"; - name = "exterior access button"; - pixel_x = -26; - req_access = list(10,13) - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"xMR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"xNS" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"xPQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"xQA" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/regular/open{ - id = "quarantine_ward_lockdown"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"xRr" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/newscaster/security_unit/east{ - pixel_y = 32 - }, -/obj/machinery/requests_console/north{ - department = "Penal Colony"; - name = "Penal Colony Requests Console" - }, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony/warden) -"xSj" = ( -/obj/structure/table/standard, -/obj/item/autopsy_scanner, -/obj/item/surgery/scalpel{ - desc = "Cut, cut, and once more cut. This one is extra shiny!"; - name = "shiny scalpel" - }, -/turf/simulated/floor/tiled, -/area/rnd/test_range) -"xUc" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) -"xUd" = ( -/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/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/maintenance/medsublevel_port) -"xUC" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/grass, -/area/medical/patient_wing_picnic) -"xUD" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"xVj" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "sl2i"; - locked = 1; - req_access = null; - req_one_access = list(7,13); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/scisublevel) -"xVZ" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/wood, -/area/medical/patient_wing_library) -"xXU" = ( -/obj/item/device/radio/intercom/west, -/obj/structure/bed/stool/chair/padded/brown, -/turf/simulated/floor/wood, -/area/medical/patient_c) -"xXX" = ( -/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/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"xZp" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 10 - }, -/turf/simulated/floor/beach/water/pool, -/area/medical/patient_wing_gym) -"xZF" = ( -/obj/effect/floor_decal/corner/pink/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medsublevel_port) -"xZJ" = ( -/turf/simulated/floor/reinforced/airless, -/area/security/penal_colony/prison) -"ybc" = ( -/obj/structure/window/reinforced/full, -/turf/simulated/floor/tiled/airless, -/area/security/penal_colony/prison) -"ybo" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/power) -"ycW" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/standard, -/obj/item/storage/box/drinkingglasses{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/beaker/pitcher{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"ydL" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) -"yfN" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "eng_sl_eva_airlock"; - name = "interior access button"; - pixel_x = -24; - pixel_y = 24; - req_access = list(10,13) - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"yiA" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/patient_wing_post2) -"yiP" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora_hazard) -"ylO" = ( -/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/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) - -(1,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(2,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(3,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(4,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(5,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(6,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(7,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(8,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(9,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(10,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(11,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(12,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(13,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(14,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(15,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -ale -ale -ale -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(16,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -aaa -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -ale -ale -ale -aba -ale -ale -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(17,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -akG -akG -akG -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -ale -ale -ale -bdr -aba -aba -ale -ale -ale -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(18,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -akG -amc -aml -amc -akG -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -ale -bal -bal -bal -bal -bal -bal -bal -ale -ale -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(19,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ama -amc -amc -amc -ama -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -ale -bal -bal -bal -bal -bal -bal -bal -bal -bal -ale -ale -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(20,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -akG -amc -amc -amc -akG -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -ale -bal -bal -bal -aiG -ayZ -aMP -ayZ -aiG -bal -bal -bal -ale -ale -ale -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(21,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -amb -akG -akG -akG -and -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -bal -bal -bal -aht -aht -aht -aht -aht -aht -aht -bal -bal -bal -ale -ale -ale -ale -ale -ale -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(22,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -aaa -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -bal -bal -aeW -aht -aht -aht -aht -aht -aht -aht -aPC -bal -bal -ale -ale -ale -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(23,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -bal -bal -agT -aht -aht -aht -aht -aht -aht -aht -aQk -bal -bal -ale -ale -ale -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(24,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -bal -bal -agY -aht -aht -aht -aQZ -aht -aht -aht -aQK -bal -bal -ale -ale -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(25,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -bal -bal -agT -aht -akD -aht -aht -aht -aht -aht -aQk -bal -bal -ale -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(26,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -bal -bal -aeW -aht -aht -aht -aht -aht -aht -aht -aPC -bal -bal -ale -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(27,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -bal -bal -bal -aht -aht -aht -aht -aht -aht -aht -bal -bal -bal -ale -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(28,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aeU -bal -bal -bal -aRa -aht -aht -aht -aRb -bal -bal -bal -aeU -ale -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(29,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -ale -aeU -bal -bal -bal -aht -aht -aht -bal -bal -bal -aeU -ale -ale -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(30,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -ale -aeU -bal -bal -bge -aBQ -bge -bal -bal -aeU -ale -ale -ale -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(31,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -ale -aba -aba -aba -bey -aba -aba -aba -ale -ale -ale -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(32,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aba -aba -aba -bey -aba -aba -aba -ale -ale -ale -aba -aba -aba -aba -aba -aba -aba -goX -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(33,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aba -aba -aba -bey -aba -aba -aba -ale -ale -ale -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(34,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aba -aba -aba -bey -aba -aba -aba -ale -ale -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(35,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aba -aba -aba -bey -aba -aba -aba -ale -ale -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(36,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aba -anh -aba -bey -aba -aba -aba -ale -ale -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(37,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aba -aba -aba -bey -aba -aba -aba -ale -ale -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(38,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aba -aba -aba -bey -aba -aba -aba -ale -ale -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(39,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aba -aba -aba -bey -aba -aba -aba -ale -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(40,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aba -aba -aba -bey -aba -aba -aba -bgy -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(41,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aba -aba -aba -bey -aba -aba -aba -bgy -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(42,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -owq -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -oub -oub -oub -oub -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aba -aba -aba -bey -aba -aba -aba -bgy -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(43,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -owq -abJ -ace -ace -hTr -ace -acf -lZN -acB -acB -siS -acB -rAQ -uKJ -acB -gFY -rtR -abJ -acf -afL -abJ -haI -aez -haI -oub -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aba -aba -aba -bey -aba -aba -aba -ale -ale -ale -ale -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(44,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -owq -abJ -ace -ace -ace -ace -ach -ace -ace -ace -ach -ace -tAB -abJ -ace -mCU -ach -abJ -ach -afM -abJ -haI -haI -haI -oub -oub -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lYK -lYK -ezB -ghY -ghY -ghY -bFh -lYK -lYK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akx -akx -akx -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aba -aba -aba -bey -aba -aba -aba -ale -ale -ale -ale -ale -ale -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(45,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -owq -abJ -ace -ace -ace -pDJ -kwp -ace -ybo -ace -cKn -pDJ -ace -abJ -abJ -abJ -gTP -abJ -dlv -eTB -abJ -pzS -agH -scg -iqH -oub -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lYK -dkd -jhN -swb -akj -eEH -alM -mpr -lYK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akx -nHQ -cbH -akx -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aba -aba -aba -bey -aba -aba -aba -ale -ale -ale -ale -ale -ale -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(46,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -owq -abJ -mYi -pJT -wKL -goQ -cXn -adI -gVX -adI -hqH -gtA -bRJ -lht -ack -fVA -fRK -aeA -aeB -buv -bcO -tob -alE -scg -acA -oub -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lYK -ahL -jhN -akj -swb -eEH -aUh -acj -lYK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akx -sUD -gCl -vdr -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aba -aba -aba -bey -aba -aba -aba -ale -ale -ale -ale -ale -ale -ale -ale -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(47,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -owq -abJ -cvy -ace -ace -ace -rIx -lOI -lOI -lOI -rIx -ace -cTV -mLz -ori -wKL -uZy -eqH -fQs -mxT -abJ -wlz -alE -scg -iqH -oub -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lYK -dkd -ajP -akk -akk -alD -ade -bwQ -lYK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akx -arz -asa -asm -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aba -aba -aba -bey -aba -aba -aba -ale -ale -ale -ale -ale -ale -aaa -aaa -aaa -aba -aba -aba -aaa -aba -aaa -aaa -aaa -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(48,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -owq -abJ -cvy -ace -ace -ace -rIx -vFh -vFh -vFh -rIx -ace -cvy -cKF -ace -abK -uNX -uIC -nhE -huY -abJ -iDS -rZZ -scg -scg -oub -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lYK -gYj -ajQ -dkd -qpJ -dvo -qqB -ajQ -lYK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akx -akx -arA -asb -asn -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aba -aba -aba -bey -aba -aba -aba -ale -ale -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(49,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -owq -abJ -fjV -ace -ace -esT -iVl -afG -afG -afG -iVl -oMW -pkV -cKF -abJ -abJ -icD -pHa -abJ -abJ -abJ -eda -chg -acF -vnA -oub -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lYK -vly -ezB -ghY -bFh -fVb -fXv -vly -lYK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akx -aqP -arB -asc -aso -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aba -asd -aba -bey -aba -aba -aba -ale -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(50,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -owq -abJ -cvy -ace -ace -afd -uPd -ace -ace -ace -uPd -aki -cvy -cKF -hBn -hkV -mgM -wAi -idZ -iIC -abJ -oub -agJ -oub -oub -oub -abJ -abJ -abJ -abJ -abJ -abJ -abJ -lYK -uYK -ycW -akm -lkK -xNS -ajv -dbo -lYK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akx -aqQ -nqx -akx -akx -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aaa -aba -aaa -aaa -ale -ale -aba -aba -aba -bey -aba -aba -aba -ale -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(51,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -owq -abJ -uwC -eqH -vnr -afd -ace -ace -ace -ace -ace -agZ -mQI -cKF -geX -iPl -qan -dug -ace -sAb -bGw -ahf -oAL -adi -adW -adW -afm -afS -rzD -wQs -cYk -jXD -aim -vly -akJ -wHR -wHR -wHR -xNS -ajv -qnn -lYK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akx -tnA -akx -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aaa -aba -aba -aba -aba -ale -ale -ale -aba -aba -aba -bey -aba -aba -aba -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(52,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -owq -abJ -tJm -eqH -vnr -afd -ace -ace -mOX -ace -ace -dUT -niP -cKF -vnz -vUF -der -vqQ -aMA -euN -dPs -acn -acH -adh -adX -jKS -nep -afn -fig -agL -pmn -ahI -xxd -uqb -wHR -bVc -akn -akn -akp -ajv -gBM -lYK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akx -tnA -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -ale -ale -ale -ale -ale -ale -aba -aba -aba -bey -aba -aba -aba -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(53,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -owq -abJ -uGp -eqH -vnr -afd -ace -ace -ace -ace -ace -dab -mFK -cKF -xti -qeA -ybo -uBs -ace -lje -bGw -tSs -acI -ngj -ngj -bMi -afo -ngj -bKt -mlz -hZh -eby -ain -dbr -wHR -ajT -rmO -rmO -iwx -ajv -dGW -lYK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akx -tnA -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -ale -ale -ale -ale -ale -ale -ale -aba -aba -aba -bey -aba -aba -aba -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(54,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -owq -abJ -cvy -ace -ace -afd -uPd -ace -ace -ace -uPd -aki -cvy -cKF -oBQ -tDA -wkd -uVg -ehn -lBF -abJ -udp -owL -owL -acJ -afp -kLm -owL -owL -owL -gvS -ahJ -aio -aiO -aju -ajU -alo -fGO -ptY -ajy -mpp -lYK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akx -akx -akx -aqS -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -ale -ale -ale -ale -ale -ale -ale -ale -ale -aba -aba -aba -bey -aba -aba -aba -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(55,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -owq -abJ -fjV -ace -ace -cOj -xuw -afJ -afJ -afJ -xuw -qhP -pkV -cKF -abJ -abJ -icD -afj -abJ -abJ -abJ -pvc -acK -ugY -acL -liV -acL -jkG -agt -owL -ahi -ahK -ain -uqb -ajv -xrn -rmO -rmO -tbe -wHR -ntd -lYK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akx -apY -aqv -aqT -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -aba -aba -aba -bey -aba -aba -aba -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(56,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -owq -abJ -cvy -ace -ace -ace -rIx -uRo -uRo -uRo -rIx -ace -cvy -cKF -ace -lVK -uNX -ace -ace -ace -abJ -aeJ -acM -ebQ -cju -khp -aeH -fvN -agu -owL -oXU -vhT -ain -dbr -ajv -ajV -gfC -gfC -gVe -vFc -wHR -lYK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akx -apZ -aqw -aqU -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -bgd -aba -aba -bey -aba -aba -bgd -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(57,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -owq -abJ -cvy -ace -ace -ace -rIx -lOI -lOI -lOI -rIx -ace -waA -uVU -uVg -uVg -qkJ -ace -ace -ace -abJ -vhq -acL -adk -aeb -hIF -afq -oFA -wdi -owL -gDm -tZw -ain -vly -ajx -wHR -ajw -bTq -uTq -wHR -pOl -lYK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akx -akx -akx -aqV -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -ale -ale -ale -ale -ale -ale -ale -ale -ale -bal -bal -bdc -bdB -bez -bgf -bgf -bal -bal -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(58,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -owq -abJ -lbh -fYD -wKL -hZf -mPA -nnk -qRx -nnk -hqH -mZR -vrR -hVw -acD -tAO -lcg -oMW -ace -xxg -abJ -lLU -acL -adk -aec -aeI -afr -oFA -agv -owL -ahi -ahK -nYw -aiQ -aiQ -aiQ -aiQ -aiQ -aiQ -aiQ -aiQ -aiQ -aiQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akx -aqU -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -ale -ale -ale -ale -ale -ale -ale -ale -bam -bge -bge -bge -beA -bge -bge -bge -bam -ale -ale -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(59,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -owq -abJ -ace -ace -ace -qBr -pjq -ace -qan -ace -cvb -qBr -ace -abJ -abJ -abJ -ops -abJ -iTG -ace -abJ -mKu -acL -adm -acL -sTu -acL -oFA -acL -agM -ahj -ahK -ain -aiQ -ajz -ajW -akq -akM -alr -alF -ajH -als -aiS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akx -aqU -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -iOl -gjl -nDL -nDL -tkm -iOl -aba -aba -aba -ale -aGy -aGy -aGy -aGy -aGy -ale -ale -bgF -aba -aba -aba -beH -aba -aba -aba -bgF -ale -ale -ale -ale -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(60,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -owq -abJ -ace -ace -ace -ace -ach -ace -ace -ace -ach -ace -buT -abJ -ace -acE -ach -abJ -ace -ace -abJ -wCR -wCR -wCR -aed -acL -acL -kQh -fvN -jjk -ahi -ahK -ain -aiQ -ajA -ajA -akr -akN -als -alG -als -als -aiQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akx -aqU -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -iOl -iOl -uQx -uQx -uQx -uQx -iOl -iOl -aba -aba -aGy -aGy -aGy -aGy -aGy -aGy -aGy -aba -bgF -aba -aba -aba -beH -aba -aba -aba -bgF -aba -aba -aba -ale -ale -ale -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(61,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -owq -abJ -ace -ace -mpK -ace -dUz -otg -acB -acB -sqx -acB -rAQ -hdJ -acB -eJx -dcU -abJ -ace -cWj -abJ -hBd -acQ -wCR -aee -aeK -afs -aga -agy -xjV -ahi -ahK -wZc -aiQ -oUJ -ajX -akr -akN -wTV -hID -hID -bvs -aiQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akx -aqU -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -nkj -pUK -jHy -vPT -vPT -cVf -vBC -nkj -aba -aba -aGy -aGy -aMB -dNz -aPL -aGy -aGy -aba -bgF -aba -aba -aba -beH -aba -aba -aba -bgF -aba -aba -aba -aba -aba -ale -ale -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(62,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -owq -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -dLn -aba -sOM -wCR -wCR -owL -owL -owL -owL -owL -agO -ahN -air -aiQ -ajB -ajY -eGf -akN -wEx -als -als -rnD -aiQ -uwP -uwP -uwP -uwP -uwP -uwP -aaa -aaa -aaa -aaa -aaa -aaa -akx -aqU -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -yiP -xIB -vgD -gAi -cZe -psd -nOm -yiP -aba -aba -aGy -aGy -hVM -eIS -aMB -aGy -aGy -aba -bgF -aba -aba -aba -beH -aba -aba -aba -bgF -aba -aba -aba -aba -aba -aba -aba -ale -ale -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(63,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -gEo -uuH -iOJ -aba -aba -iOJ -sOM -sOM -eXJ -ujo -aeL -aft -agb -agb -hsj -ahi -ahO -ais -aiR -ajC -ajZ -akt -akO -wEx -als -alO -rnD -aiQ -qZV -poo -hJK -vEg -pCR -uwP -aaa -aaa -aaa -aaa -aaa -aaa -akx -aqU -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -yiP -ngr -wRu -wRu -biW -psd -nOm -yiP -aba -aba -aGy -aGy -bsd -eIS -jXV -aGy -aGy -aba -bgF -aba -aba -aba -beH -aba -aba -aba -bgF -aba -aba -aba -aba -aba -aba -aba -aba -ale -ale -ale -ale -ale -aaa -aaa -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(64,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -rVI -sOM -iOJ -sOM -sOM -aba -iOJ -sOM -tVH -ujo -aeM -afu -agc -agz -agP -aYL -ahP -fDM -aiQ -ajD -aka -xqo -akP -wEx -als -als -alU -aiQ -uwP -cOT -lsl -gHT -alR -uwP -uwP -aaa -aaa -aaa -aaa -aaa -akx -aqU -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -mqu -auB -wMK -wVj -mpG -ieK -nOm -mqu -aba -ale -aGy -aGy -aMB -eIS -aMB -aGy -aGy -aba -bgF -aba -aba -aba -beH -aba -aba -aba -bgF -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -ale -ale -ale -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(65,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aba -aba -aba -fxI -iOJ -aba -sOM -sOM -sOM -aba -sOM -iAw -ujo -aeN -hsj -agd -loy -hsj -aho -ahQ -qwD -aiS -ajE -ajX -cze -akP -ura -iih -iih -hQJ -aiQ -wuX -dnb -eAq -gHT -tTG -dZs -uwP -aaa -aaa -aaa -aaa -aaa -akx -aqU -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -iOl -iOl -iOl -iOl -umt -neQ -iOl -iOl -iOl -ale -ale -aGy -aMB -aMB -qSm -aMB -aGy -ale -aba -bgF -aba -aba -aba -beH -aba -aba -aba -bgF -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(66,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -fxI -sOM -sOM -aba -sOM -sOM -sOM -sOM -eiL -ujo -aeO -hsj -age -age -hsj -mlz -vYQ -waD -aiQ -ahM -ajA -akr -akP -als -alH -als -als -aiQ -jAt -xrs -vZr -cqC -cwx -eIl -uwP -aaa -aaa -aaa -aaa -aaa -akx -aqU -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -kJR -mjH -mUk -iOl -aVG -xFp -iOl -ale -ale -ale -ale -aGy -gPx -xUc -kPF -trb -aGy -ale -aba -bgG -dLr -aba -aba -beI -aba -aba -aba -bgG -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(67,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -qnc -aba -pUs -sOM -iOJ -sOM -sOM -iOJ -ssY -ujo -ujo -ujo -ujo -ujo -ujo -dgM -rnV -vHL -aiQ -ajG -ajG -cPl -akQ -alt -alI -als -gpa -aiQ -uwP -soJ -wkZ -lhL -eWv -uwP -uwP -aaa -aaa -aaa -aaa -aaa -akx -aqU -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -kJR -nkZ -xfX -iOl -caC -auG -iOl -ale -ale -aGy -aGy -aGy -goh -dcf -dcf -eSg -aGy -aGy -aGy -bal -bgf -bde -bdD -beJ -bgf -bgf -bgf -bam -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(68,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -gEo -aba -sOM -sOM -sOM -sOM -sOM -sOM -iOJ -sOM -xLs -fYn -qah -opI -ahU -yfN -ahK -ain -aiQ -aiQ -aiQ -aiQ -aiQ -agQ -agQ -agQ -agQ -agQ -agQ -uwP -qZV -dSV -rpT -uwP -aaa -aaa -aaa -aaa -aaa -aaa -akx -aqU -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -kJR -gaJ -xfX -iOl -xFI -ebp -iOl -kJR -kJR -aGy -aHu -aIz -aJD -aKD -aLz -piW -ryu -trB -bvn -aGy -aQr -bdf -bfI -bfI -bfI -bfI -bgg -aQr -aba -aba -aba -biY -bma -bmC -biG -biY -aba -aba -aba -aQq -aQq -aQq -aQq -aQq -aQq -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(69,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -gEo -aba -aba -jVa -sOM -fPt -iOJ -sOM -sOM -sOM -sOM -fYn -ayP -aiv -dPp -ahp -ahR -ehN -agK -agK -agK -agK -agK -agQ -alJ -alJ -alJ -alJ -alZ -agQ -qHY -xXX -qki -agQ -aaa -aaa -aaa -aaa -aaa -aaa -akx -aqU -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -kJR -wfN -hSG -mgV -sDI -dVH -vWn -auI -dKZ -aGy -aHv -dsZ -aJE -aIA -eHN -jcB -aGy -dXc -uXR -xSj -aQr -bdg -bfJ -bfJ -bfJ -bfJ -bgh -aQr -aQq -aQq -aQq -aQq -bme -bit -bkg -aQq -aQq -aQq -aQq -aQq -bkz -bkM -awk -blx -aQq -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(70,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -iOJ -sOM -sOM -aba -aba -iOJ -iOJ -iOJ -sOM -sOM -sOM -fYn -fpl -dhU -ahU -hZh -cZb -qTF -ahg -aih -mne -aku -sSr -agQ -alJ -alJ -alV -alJ -alJ -agQ -ahi -alu -sRe -agQ -aaa -aaa -aaa -aaa -aaa -aaa -akx -aqU -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -kJR -mYP -rDB -wcQ -xDz -ylO -vRZ -lxg -qDA -aGy -aHw -usm -jVg -aKE -usm -aMC -aGy -avo -lLO -sLJ -aQr -bdh -bdG -bfo -bfo -bfK -bgi -bgH -bgQ -avZ -bjp -aQq -bic -biu -biI -aQq -bjp -avZ -bjW -bki -bkA -aVi -aVi -blz -aQq -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(71,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -sOM -gEo -aba -sOM -gEo -iOJ -sOM -lPa -lPa -gEo -gEo -agQ -agQ -agQ -agQ -ahr -aiU -ait -aiT -tWX -akL -akv -wve -agQ -alJ -alJ -alJ -alJ -alJ -agQ -ahi -cgf -alT -agQ -aaa -aaa -aaa -aaa -aaa -aaa -akx -aqU -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -kJR -aAo -rKS -abN -pdV -waa -bEO -xPQ -uXC -aGy -aHx -aIB -aJF -aKF -aLC -gHy -aGy -iKh -jHU -jED -aQr -bdi -bdJ -bfo -bfo -bfN -bgj -bgI -bgR -bjG -aSO -vqV -bid -biv -bjb -biZ -bjq -bjG -bjX -bkl -aVi -aVi -blf -blz -aQq -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(72,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -hzE -hzE -hzE -hzE -hzE -hzE -hzE -aba -agQ -ahs -ajr -ngj -ahH -afo -rXB -nES -wve -agQ -alJ -alJ -alJ -alJ -alJ -agQ -ahi -cgf -aiq -agQ -aaa -aaa -aaa -aaa -aaa -aaa -akx -aqU -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -hob -aAp -kKf -aBB -aBV -aCH -aDu -aEr -aFC -lSr -aHz -aID -aJG -aKG -aLD -aMD -aQr -aQr -aQr -aQr -aQr -bdj -bdJ -bfo -bfn -bfN -avU -aQr -bgS -bjH -bhu -bhK -biK -biw -biK -bja -bjr -bjH -bjY -bkk -bkB -bkO -blg -blA -aQq -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(73,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -hzE -aad -aad -aad -aad -aad -hzE -aba -agQ -jaZ -uwR -brx -vyW -brx -mFg -pMT -wve -agQ -alJ -alJ -alW -alJ -alJ -agQ -ahi -cgf -qGf -agQ -aaa -aaa -aaa -aaa -aaa -aaa -akx -aqU -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -mZC -cHa -kKw -kKw -kKw -aCI -aDv -aEs -eBJ -aGz -cRI -xzL -rzs -rhI -aLE -mSX -bgL -aOo -avG -aPN -aQr -bdk -bdJ -bfo -bfo -bfN -bgl -bgL -bgT -aTB -bjs -bid -bif -hlm -biL -bjb -bjs -aTB -bjZ -sph -bkC -bkP -blh -blB -aQq -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(74,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aaa -aaa -aaa -aba -aaa -hzE -aad -adp -adp -adp -aad -hzE -aba -aba -jaZ -ahV -iQd -qMQ -brx -rhJ -pMT -wve -agQ -alJ -alJ -alJ -alJ -alJ -agQ -gDm -mLr -wve -agQ -aaa -aaa -aaa -aaa -aaa -aaa -akx -aqU -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -azi -aAq -nyX -wbE -aBX -nAp -aDw -aEt -rNO -aGA -awY -mET -qsc -aKH -aLF -aME -aND -aOp -aPd -aPO -aQs -bdl -bdK -beQ -bfp -bfO -bgm -bgK -bgU -bjI -bjI -bjI -biM -biy -biM -bjI -bjI -bjI -bka -bkm -bkD -bkQ -bli -blC -aQq -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(75,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -adp -aef -adp -aad -hzE -aba -aba -jaZ -ahW -aiw -smA -brx -gcm -qFn -wve -agQ -agQ -agQ -agQ -agQ -agQ -vRU -ahi -cgf -wve -agQ -aaa -aaa -aaa -aaa -aaa -aaa -akx -aqU -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -kJR -azj -kKf -uMH -aBY -aCJ -aDx -aEu -aFD -kJR -xzL -aIE -aJH -cVG -aLG -avj -bgL -aOq -aPe -aPP -aQr -bdm -bdL -beR -bfq -bfP -bgn -bgL -bgV -bjJ -bju -bkN -biN -biz -biN -bkN -bju -bjJ -bkb -bkn -bkE -aVi -blk -blD -aQq -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(76,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -adq -adp -aeP -aad -hzE -aba -aba -jaZ -jaZ -jaZ -jaZ -jaZ -ahj -pMT -mBU -ahg -tbD -mlz -alN -ahg -aku -ahg -xif -cgf -sRe -agQ -aaa -aaa -aaa -aaa -aaa -aaa -akx -aqU -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -ugX -sYz -sYz -hAX -oOd -aba -aba -aba -aba -aba -kJR -aAr -aAZ -aBD -aBZ -aCK -aDy -fxJ -aFE -aCO -eUn -vDn -axX -azm -azm -azm -aQr -aQr -aQr -aQr -aQr -aQr -bdM -aQr -aQr -aQr -bgo -aQr -aQq -biO -bjv -bje -bii -aQq -biO -bje -bjv -bjK -aQq -aQq -bkF -bkR -blk -blE -aQq -aQq -aQq -aQq -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(77,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -adr -eZp -adr -aad -hzE -aba -aba -aba -aba -aba -aba -agQ -hGX -pIl -akX -bhR -alK -bQZ -jFr -bhR -fIm -bhR -bhR -amo -wve -agQ -aaa -aaa -aaa -aaa -aaa -aaa -akx -aqU -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -eCz -qjw -ebn -ebn -ayi -aba -aba -aba -aba -aba -kJR -aAq -nyX -wbE -aCa -aCL -aDz -aEw -aFF -kJR -aHA -axv -aJI -azm -aLH -aLH -aLH -aLH -aPf -aQr -aVt -kuZ -aVp -beS -bfs -aQr -aJW -aFW -eDK -bhi -bjw -bjO -bij -eDK -biP -bjO -bjw -bjL -eDK -bko -bkG -bkS -bll -blF -blM -blX -bmg -aQq -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(78,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -hzE -hzE -hGw -rRi -aeh -rRi -hGw -hzE -aba -aba -aba -aba -aba -aba -agQ -fAJ -tLV -akY -uMh -bKt -mlz -aho -ngj -afo -ngj -ngj -akw -dTr -agQ -aaa -aaa -aaa -aaa -aaa -aaa -akx -aqU -akx -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -eCz -ebn -atW -jbg -boe -aba -aba -aba -aba -aba -hob -aAp -kKf -uMH -aCb -aCL -aDA -aEr -aFC -lSr -eJD -pvi -aww -azm -aLH -aLH -aNE -aLH -aLH -aQr -dMA -dMA -aVp -bfs -bfs -aQr -aJW -aFW -pft -bhj -aXQ -bhQ -aXQ -pft -aXQ -bjg -aXQ -bjM -pft -bkq -aVm -aVi -blm -fHV -xtB -blY -bmh -aQq -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(79,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -hzE -hzE -hzE -hzE -hzE -hzE -hzE -hzE -hzE -aaO -aaO -aaO -adt -aei -aeQ -aaO -aaO -aaO -akG -akG -veq -fKe -qMB -aaO -aaO -aaO -akZ -qId -aaO -agQ -agQ -agQ -agQ -agQ -agQ -qWW -agQ -agQ -aaa -aaa -aaa -aaa -aaa -aaa -akx -aqX -auQ -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aqA -ebn -ebn -ebn -ayi -aba -aba -aba -aba -aba -mZC -cHa -kKw -kju -brp -aEs -aDB -aEs -eBJ -aGz -awY -aIF -tbx -azm -aLH -aLH -aLH -aLH -aLH -aQr -bcQ -bdo -aVp -bfs -bft -aQr -aJW -aFW -pft -bjO -aXQ -bjO -aXQ -pft -aXQ -bjO -aXQ -bjO -pft -bkq -aVm -blN -blG -blG -blG -blO -bmi -aQq -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(80,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -aad -aad -aad -aad -hGw -aaO -aaO -aaO -aaO -acp -acR -adu -aej -aeR -afv -aeY -abo -aaO -svn -svn -svn -svn -aaO -aaO -vqy -ala -alx -aaO -aaa -aaa -aaa -aaa -aaa -akx -amq -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akx -aqU -auR -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aqA -ebn -ebn -ebn -ayi -aba -aba -aba -aba -aba -azi -aAq -nyX -dzN -aCd -aCN -aDC -aEt -rNO -aGA -awY -aIG -aww -azm -aLH -aLH -aNF -aLH -aLH -aQr -bdo -bdo -aVp -bfv -bfv -aQr -aJW -aFW -nDG -bjO -biQ -aWI -bjx -wsn -biQ -aWI -bjx -bjO -nDG -bkr -bkH -bkU -blo -blH -awm -blZ -bmj -aQq -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(81,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -aaf -aaf -aaq -aaA -aaI -aaP -abb -abb -bcg -acq -acS -adv -abo -aeS -abo -adD -abo -agR -ahu -ahY -aix -aiW -ajp -aaO -akz -nzN -aly -aaO -aaa -aaa -aaa -aaa -aaa -akx -amq -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akx -qeP -avw -akx -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aqA -avH -awl -jlY -avJ -avJ -arS -auc -auc -aua -avJ -avJ -kJR -ged -aCe -aCe -aDD -kJR -kJR -kJR -aHD -aIH -oKh -azm -aLH -aLH -aLH -aLH -aLH -aQr -bdp -bdp -avM -beW -bfv -aQr -aJW -aQq -aQq -bil -bil -bil -bil -aQq -bjP -bjP -bjP -bjP -aQq -aQq -aQq -bkV -blp -aQq -aQq -aQq -aQq -aQq -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(82,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -aaf -aak -aaf -aaB -aaJ -aaQ -abc -abo -abM -acr -acy -adw -aek -aeT -act -adD -abo -agS -ahv -ahY -aiy -aiX -ajI -aaO -ajF -alb -alz -aaO -aaa -aaa -aaa -aaa -aaa -akx -amq -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akx -nPj -avx -arC -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aqA -avI -awl -jlY -avJ -jMR -atY -atZ -jOy -nqY -qNw -avJ -aBc -azn -aCf -azn -azn -aEB -aFI -xFr -xzL -aIG -aJJ -azm -azm -azm -azm -azm -azm -aQr -aQr -aQr -aQr -aQr -aQr -aQr -aJW -aQq -biA -blW -blW -blW -blW -biA -blW -blW -blW -blW -bkc -blW -aQq -bkW -blq -aQq -blW -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(83,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -aaf -aaf -aar -aaA -aaI -aaR -abd -aby -abQ -abo -abo -abo -abo -abo -afw -agf -agA -bck -ahw -ahw -aiz -aiY -ajJ -akc -abo -jIZ -alA -aaO -aaa -aaa -aaa -aaa -aaa -akx -amq -akx -akx -akx -akx -akx -akx -akx -akx -akx -aqW -awc -arC -akx -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -arT -avJ -arS -aua -avJ -axs -pFa -mIU -vou -vou -mAw -awV -awY -lmV -aCg -jew -dWP -aEC -aFJ -aGD -axP -aII -aJK -xFr -aLI -aMG -aCf -azn -aPg -aGC -aQt -aRm -avN -aSY -azm -bgP -aJW -aQq -bmN -blW -blW -blW -blW -bmN -blW -blW -blW -blW -bkg -blW -aQq -abi -blr -aQq -blW -aba -aba -aba -aba -aba -aba -aba -aaa -aba -aba -aaa -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(84,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -aad -aad -aad -aad -hGw -aaO -abe -abz -abO -abo -acU -aic -aic -aic -aif -adD -baA -agU -ahx -ahZ -aiA -aiZ -ajK -akd -akB -alc -grD -aaO -aaa -aaa -aaa -aaa -aaa -akx -amr -alv -ane -ane -ane -ane -ane -ane -ane -aqx -aqY -arD -akx -akx -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aqA -awV -atX -oFa -awV -udG -axQ -tUS -rEN -azo -azJ -aAw -auC -aBG -deJ -aCP -oVg -fOV -aFK -lvt -rSj -aIJ -aJL -aym -axP -aMH -aNG -cfH -aPh -aPQ -aOr -aRn -aSf -aSZ -azm -bgP -aJW -aQq -bmN -blW -blW -blW -blW -bmN -blW -blW -blW -blW -bkg -blW -aQq -bls -bls -aQq -blW -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(85,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -hGw -hGw -hGw -hGw -hGw -hGw -aaO -abf -abA -abP -acs -acT -acT -ael -acT -aig -baz -baB -baD -aic -aia -aiB -aeV -aeV -aaO -aaO -aaO -akx -akx -akx -akx -akx -akx -akx -akx -ams -akx -akx -akx -akx -akx -akx -akx -akx -akx -aqZ -arD -akx -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -avd -avL -awn -awI -awW -axu -axR -ayo -qax -qax -nvZ -avJ -avX -avX -bDz -spz -fag -avX -avX -avX -aHF -aIK -aJM -cVG -amw -aMI -aNH -avp -aPi -aGC -aQu -aRo -vkY -aTa -azm -bgM -bgp -aQq -bmN -blW -blW -blW -blW -bmN -blW -blW -blW -blW -bkg -blW -bkI -bkZ -blW -blI -blW -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(86,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -aad -aad -aad -aad -hGw -aaO -abg -abo -abQ -abo -acW -aid -aie -aid -bay -aid -baC -baE -baF -baG -aiC -aja -ahY -ahY -akC -ald -alB -alB -alB -alB -alB -alB -alB -alB -amt -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akx -ara -arE -akx -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -alP -arT -awV -awo -cdr -awV -auw -axS -ayp -axR -axR -azK -avJ -aBd -avX -aCh -aCQ -aDE -avX -aBd -wbr -rfa -rfa -aJN -wbr -aFV -aMJ -aFV -aFV -azm -azm -aQv -aRp -aSg -aRp -azm -bgN -aJW -aQq -bmN -blW -blW -blW -blW -bmN -blW -blW -blW -blW -bkg -blW -blW -blW -blW -blW -blW -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(87,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -aag -aag -aas -aaC -aaK -aaS -abh -abh -abR -act -afy -abo -adD -abo -afz -acy -agB -agW -acy -baH -aiD -ajb -ajL -ake -bcn -aaO -akx -akx -akx -akx -akx -akx -akx -akx -akx -akx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akx -arb -arF -akx -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -awp -awp -awp -awp -awp -awp -awp -awp -ayq -ayQ -azq -azL -avJ -avX -avX -aCi -aCR -aCi -avX -aBd -wbr -aHG -nhK -aJO -wbr -aLJ -aMK -aNI -aFV -acc -azm -aQw -aRq -aSh -aRq -azm -bfT -aJW -aQq -biF -blW -blW -blW -blW -biF -blW -blW -blW -blW -bkh -blW -blW -blW -blW -blW -blW -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(88,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -aag -aal -aag -aaB -aaJ -aaQ -bce -abB -abS -abQ -afy -abo -adD -abo -abQ -abo -abo -aeo -ahz -baI -aiC -ajc -ajM -akf -akE -aaO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akx -arc -akx -akx -aaa -aaa -aaa -aaa -aba -aba -aba -aub -auD -avg -avO -awp -adY -aff -wKw -awp -avX -avX -avX -avX -avX -avX -azM -avX -aBf -aBI -amm -arU -aDG -avX -avX -wbr -aHH -wbW -aJP -wbr -ave -aML -aNJ -aFV -aFV -azm -azm -azm -azm -azm -azm -aFW -abL -aFW -aFW -aFW -aFW -aFW -aFW -aFW -aQq -aQq -aQq -aQq -aQq -bky -blW -blW -blW -blW -blW -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(89,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -aag -aag -aat -aaC -aaK -aaT -abj -abC -abT -acu -agg -acT -aem -abo -abQ -abo -abo -adD -abo -baJ -aiE -ajd -ajN -akg -akF -aaO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qHz -ard -arG -aba -aaa -aaa -aaa -aaa -aba -aba -aaa -asT -asT -asT -asT -awp -aea -afg -afQ -awp -agr -tNl -tNl -arp -ayS -azs -azN -aAA -tNl -amn -amp -asf -atq -atC -atS -wbr -aHI -gfL -rSq -wbr -aLL -aMM -aNK -aFV -aPj -aPR -aQx -aRr -apc -aTb -avR -nHn -nHn -nHn -aWP -nHn -aXW -nHn -aYN -aFW -qdo -qUD -pHE -ale -ale -ale -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aqy -auJ -bar -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(90,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -aad -aad -aad -aad -hGw -aaO -abk -abo -abU -abQ -afy -adx -aen -acV -acv -acV -acV -aen -acV -baK -aiF -aaO -aaO -aaO -aaO -aaO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aqz -are -arH -aba -aaa -aaa -aaa -aba -aba -aba -aaa -asT -auF -auF -auF -awp -aev -afh -afR -giJ -ags -ahe -aiM -arN -arO -ayW -ayW -ayW -ayW -atU -aqG -atf -atq -atD -atT -wbr -rfa -rfa -aJR -wbr -aFV -aMN -aFV -aFV -aPk -aHM -aQy -aRs -aFV -aFV -aFV -aFV -aFV -aFV -aFV -aFV -aFV -aJW -iPo -lcH -hMo -ebn -iIQ -akG -ale -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -akG -jfT -ayi -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(91,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -aah -aah -aau -aaD -aaL -aaU -abl -abl -abV -acv -agV -ady -adD -bci -afw -acy -act -agX -ahA -baL -bcm -aje -ajO -aaO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -ard -aba -aba -aba -aaa -aaa -aba -aba -aaa -aaa -asT -add -adj -auh -awp -aex -afk -afU -awp -agE -ahk -aiP -azP -aAB -aBh -aBh -aCl -aCU -aDI -asg -alS -asp -atg -atr -wbr -gjp -aEM -aHL -wbr -aLM -aMO -aNL -amI -aPl -aHM -aQy -aRt -aFV -aTc -aTK -aUE -apv -aWf -aWQ -aXy -aXX -aXX -aUR -aFW -gCb -tqx -jVX -ale -ale -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aqz -arh -arH -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(92,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -aah -aam -aah -aaE -aaJ -aaQ -abm -abD -abW -abO -afy -adz -adD -aeV -afB -abo -agC -acy -ahB -baM -aiH -aaO -aaO -aaO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -ard -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -asT -adg -adl -avS -awp -awp -awp -awp -awp -agF -alp -ajo -azQ -azR -azR -azR -azR -olG -aDJ -asg -ats -ath -aEI -aFQ -wbr -hJl -aEN -hQd -wbr -avf -bcp -aNM -anf -aPm -aPS -aQz -apa -aFV -avQ -aTL -aUF -apw -aWg -aWR -aXz -aXY -aXX -aUR -aFW -ale -rmW -ale -ale -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(93,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -aah -aah -aav -aaD -aaL -aaV -abn -abE -abX -acv -agV -adA -aeo -bcj -afC -afD -afD -agh -abo -baN -aiI -ajf -ajf -aaO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -ard -aba -asd -aba -aaa -aaa -aaa -qPS -qPS -qPS -qPS -qPS -asT -adL -avX -aeD -afl -afV -att -ash -alp -azu -azR -azR -azR -aBe -azR -azR -atA -asg -alX -ath -ljr -cOI -wbr -wbr -aEN -aIM -wbr -aLO -aMQ -aNN -amI -fXa -aPT -aQA -aRv -aFV -aHM -aTM -aUG -apx -aWh -aWS -aXA -aXZ -aXZ -aYO -aFW -ale -wcX -ale -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(94,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -aad -aad -aad -aad -hGw -aaO -abo -abo -abU -abQ -afy -abo -adD -abo -abo -abo -abo -agj -ahC -baN -aiI -ajg -ajg -aaO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -ard -aba -aba -aba -aaa -aaa -aaa -qPS -aao -acN -auf -qPS -adn -adM -adP -awM -axc -awN -akl -ash -alp -alq -atV -azR -azR -azR -azR -azR -ajR -asj -ask -atB -aEJ -aFR -aGG -wbr -aHJ -wbr -aFV -aLP -aFV -aFV -aFV -anX -anZ -aoF -anX -aFV -aHM -aTN -aFV -aFV -aFV -aFV -aFV -aFV -aJW -aUS -aFW -ale -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(95,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -aai -aai -aaw -aaF -aaM -aaW -abp -abr -abY -acu -ahy -acT -aep -aeX -afD -agh -abo -agj -ahC -baN -aiI -ajh -ajh -aaO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -ard -aba -aba -aba -aaa -aaa -aaa -qPS -asU -acP -cWg -adJ -ado -adN -adQ -dwK -axd -asr -aqH -aiL -alQ -ahX -azR -azR -azR -azR -azR -azR -aqR -alf -aCX -aDL -aEK -aFS -fxa -wbr -aEN -wbr -aKJ -aLQ -aMR -aFV -aOu -aPn -aPV -aQC -aOD -aRc -aOD -aTO -aUH -apy -aWi -aWT -aXB -aYa -aYa -aUR -aFW -aaa -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(96,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -aai -aan -aai -aaE -aaJ -aaQ -bcf -abF -abZ -abQ -afy -abo -adD -abo -afE -agi -abo -agj -ahC -baN -aiI -aji -aji -aaO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -anh -ard -aba -aba -aaa -aaa -aaa -aaa -qPS -acg -acP -rwo -qPS -ate -adO -adR -awN -shZ -ass -asu -ako -ari -azv -azS -alw -aBi -aBi -aCn -aCW -atz -aEJ -ali -aDM -aEL -aFT -wbr -wbr -aHK -wbr -aKK -aLQ -aMS -aFV -avq -aPn -aOD -aQD -aRw -aSk -aRw -aTP -aUI -apz -aWj -aWU -aXC -aYb -aYa -aUR -aFW -aaa -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(97,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -aai -aai -aax -aaF -aaM -aaX -abr -abr -aca -acw -afy -abo -adD -abo -afF -agi -abo -agj -ahC -baN -aiI -ajj -ajj -aaO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -ard -aba -aba -aaa -aaa -aaa -aaa -qPS -aci -adc -lRQ -awO -adK -avY -adS -aeE -afK -avY -ast -aky -arn -akH -akH -aro -arK -arM -arP -arQ -arR -alg -alj -wbr -wbr -wbr -wbr -hQd -aEN -wbr -aKL -aLQ -aMT -aFV -aOw -aPn -aOD -aQE -bdq -aSl -aOD -aTQ -aUJ -apA -aWk -aWV -aXD -aYc -aYc -aYO -aFW -aaa -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(98,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -aad -aad -aad -aad -hGw -aaO -abo -abo -abQ -abo -aib -abo -adD -abo -abo -agj -agD -agi -abo -baN -aiI -ajk -ajk -aaO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -ard -aba -aba -aaa -aaa -aaa -aaa -awO -awO -awO -awO -awO -vrd -avY -adT -aeF -axe -avY -afW -agG -ahl -ajt -asi -akT -alm -aln -nXD -arl -arL -alh -alk -wbr -aEM -aFU -aFU -kPJ -aHL -wbr -aFV -aFV -aFV -aFV -aOx -aPn -aOD -aQE -aOD -aSl -aQc -aTR -aFV -aFV -aFV -aFV -aFV -aFV -uRE -awa -aFW -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(99,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -hGw -hGw -hGw -hGw -hGw -hGw -aaO -abs -abG -abP -acx -acT -adB -aeq -aeY -abo -agk -agk -agk -abo -baO -aiI -ajl -ajl -aaO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -ard -aba -aba -aaa -aaa -aaa -aaa -awO -acl -acl -mGj -xyq -ccB -avY -adU -adU -auu -avY -afX -agI -ahn -ayb -akK -akU -jDy -aiN -aiV -ajq -jDy -avX -avX -wbr -aEN -wbr -wbr -wbr -wbr -wbr -aKM -avh -aMU -aNO -aOy -aPo -aPW -aQF -aRx -aOC -aKQ -aTS -aUK -apB -aWl -aWW -aXE -aYd -aYd -aUR -aFW -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(100,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -aad -aad -aad -aad -hGw -aaO -abt -abH -abO -abo -abo -adC -abo -adD -abo -agl -agl -agl -abo -abo -aiI -ajm -ajm -aaO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -ard -aba -aba -aaa -aaa -aaa -aaa -awO -aco -owN -uuc -abx -kQH -avY -adV -afe -axg -avY -agm -agN -ahG -ayb -akR -akV -jDy -fzF -ted -eSu -jDy -xex -xex -xex -aEN -wbr -abq -ame -aGH -aFV -aKN -aKN -aKN -aKN -aOz -aPp -aPX -aQG -aQG -aHM -aKQ -aTT -aUL -aqa -aWm -aWX -aXF -aYe -aYd -aUR -aFW -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(101,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -aaj -aaj -aay -aaG -aaN -aaY -abu -abI -acb -abo -abo -adD -abo -agX -acT -acT -ahm -adB -acT -aeY -aiI -ajn -aaO -aaO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -ard -aba -aba -aaa -aaa -aaa -aaa -awO -acG -acG -ydL -abx -tMU -avY -vIg -vIg -vIg -avY -agn -aha -aux -ayb -akS -all -jDy -ljj -ovg -auE -jDy -aCq -ffr -aDN -aEO -wbr -aGI -aHM -aIO -ami -aKO -aLS -aLS -aLS -aOA -aPq -aPY -aQH -aRy -aHM -aNP -aTU -aUM -aqb -aWn -aWY -aXG -aYf -aYf -aYO -aFW -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(102,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -aaj -aap -aaj -aaH -aaJ -aaQ -abv -abo -acd -acy -acX -adE -aer -aeZ -acy -acy -acy -kaD -nwo -ecc -aiI -sXH -aaO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -ard -aba -aaa -aaa -aaa -aaa -aaa -awO -acl -acl -mGj -abx -asV -awO -tEz -tEz -tEz -ayb -ago -ahc -aik -ayb -avX -avX -jDy -amJ -arj -arm -jDy -aCr -aCZ -qZD -aEP -wbr -aGJ -aHN -aIP -amu -aKP -aKQ -aKQ -aKQ -aOB -aHM -aPZ -aQI -aRz -aHM -aHM -aTN -aFV -aFV -aFV -aFV -aFV -aFV -aJW -aUS -aFW -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(103,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -aaj -aaj -aaz -aaG -aaN -aaZ -abw -abw -bch -abo -abo -adF -abo -adF -abo -abo -abo -bfj -abo -nRA -aaO -aaO -aaO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -ard -aba -aaa -aaa -aaa -aaa -aaa -awO -aco -owN -rze -abx -kTE -awO -tEz -tEz -tEz -ayb -agq -agq -agq -ayb -aba -aba -jDy -amK -amK -amK -jDy -aCs -aDa -aDO -aEQ -wbr -aGK -aHO -lgq -aJU -aKQ -aKQ -bcq -aKQ -aOB -aHM -aQa -aQJ -aRA -aHM -aHM -aTS -aUN -aqc -aWo -aWZ -aXH -aYg -aYg -aUR -aFW -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(104,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -aad -aad -aad -aad -hGw -aaO -aaO -aaO -aaO -acz -acY -adu -aes -adF -abo -acp -bcl -tRP -qbF -txo -aaO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -ard -aba -aaa -aaa -aaa -aaa -aaa -awO -acG -acG -ydL -mzx -nAz -awO -tEz -tEz -tEz -asq -tEz -tEz -tEz -hyh -aba -aba -asz -tEz -tEz -tEz -xex -xex -xex -xex -iQB -wbr -aFV -aFV -aFV -aFV -aKR -aLT -aLT -aLT -aOC -aHM -aQb -aQb -aQb -aHM -aHM -aTV -aUO -aqd -aWp -aXa -aXI -aYh -aYg -aUR -aFW -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(105,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -hzE -hzE -hzE -hzE -hzE -hzE -hzE -hzE -hzE -aaO -aaO -aaO -adt -aei -aeQ -aaO -aaO -aaO -myN -wpw -tDF -aaO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -ard -aba -aaa -aaa -aaa -aaa -aaa -awO -awO -awO -awO -pmm -rWw -awO -aiJ -aiJ -aiJ -afY -tEz -tEz -tEz -hyh -aba -aba -hyh -tEz -tEz -tEz -wbr -wCJ -auH -baY -baZ -wbr -aGL -aHP -aHM -aHM -aKQ -aKQ -aKQ -aNP -aOD -aOD -aQc -aHM -aHM -aHM -aHM -aTW -aUP -aqe -aWq -aXb -aXJ -aYi -aYi -aYO -aFW -aaa -aaa -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(106,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -hzE -hzE -hGw -rRi -aet -rRi -hGw -hGw -hGw -rRi -aet -rRi -hGw -hzE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -ard -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -awO -awO -awO -awO -aba -aba -aba -hyh -tEz -tEz -tEz -hyh -aba -aba -hyh -tEz -tEz -tEz -wbr -whA -hQd -oFB -bba -wbr -aGM -aHQ -aIQ -aJV -aKS -aLU -aMV -aNQ -aOE -aPr -aMV -aJV -aRB -aSm -aTe -aTX -aFV -aFV -aFV -aFV -aFV -aFV -aJW -aUR -aFW -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(107,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -adr -aeg -adr -aad -hGw -aad -adr -tcX -adr -aad -hzE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aaa -aaa -aba -aba -ard -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -afZ -aiJ -aiJ -akA -akI -aba -aba -akW -aiJ -aiJ -aiJ -aud -vVq -baW -baX -aET -wbr -aGN -aHR -aIR -aFV -aKT -aLV -aMW -aFV -aOF -aPs -aQd -aFV -aRC -aSn -aTf -aFV -aFV -aUQ -aHY -aJX -aHY -aHY -aHY -aUU -aFW -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(108,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -adG -adH -afa -aad -hGw -aad -qQq -aZo -iFj -aad -hzE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -ard -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aue -tkc -nND -hQd -aEU -wbr -amd -amf -amh -aFV -amv -amG -amH -aFV -ang -anY -aoD -aFV -apb -apd -apu -aFV -aUQ -aUU -aFW -aFW -aFW -aFW -aFW -aFW -aFW -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(109,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -adH -aeu -adH -aad -hGw -aad -aZo -hdY -aZo -aad -hzE -aaa -aba -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -ard -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aqy -wbr -wbr -wbr -wbr -aDR -aEV -wbr -aGP -aHT -aIT -aFV -aKV -aLX -aMY -aFV -aOH -aPu -aQf -aFV -aRE -aSp -aTh -aFV -aUR -aFW -aFW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(110,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -adH -adH -adH -aad -hGw -aad -aZo -aZo -aZo -aad -hzE -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aqy -arf -arI -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -asd -aqy -auJ -arI -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -dSb -jxf -tzO -qFM -xVj -oFB -aEU -wbr -aGQ -aHU -aIU -aFV -aKW -aLY -aMZ -aFV -aOI -aPv -aQg -aFV -aRF -aSq -aTi -aFV -aUS -aFW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(111,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -aad -aad -aad -aad -aad -hGw -aad -aad -aad -aad -aad -hzE -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aba -aba -aqA -arg -arJ -ase -ase -ase -ase -ase -ase -ase -ase -ase -ase -ase -aug -auK -arJ -ase -ase -ase -ase -ase -ase -ase -ase -ase -ase -dzY -rnn -nVT -jso -aDb -aDS -aEX -wbr -aGR -aHV -aIV -aFV -aKX -aLZ -aNa -aFV -aOJ -aPw -aQh -aFV -aRG -aSr -aTj -aFV -aUR -aFW -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(112,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hzE -hzE -hzE -hzE -hzE -hzE -hzE -hzE -hzE -hzE -hzE -hzE -hzE -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aqz -arh -arH -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aqz -are -arH -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aqz -wbr -wbr -wbr -wbr -aFW -nAd -aFW -aGS -aHW -aHX -aFV -aKY -aMa -aMb -aFV -aOK -aPx -aPy -aFV -aRH -aSs -aSt -aFV -aUT -aFW -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(113,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qOI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qOI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -ard -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aFW -aJW -aFW -aGS -aHX -aHX -uRE -aKY -aMb -aMb -aJW -aOK -aPy -aPy -aJW -aRH -aSt -aSt -aJW -aUR -aFW -aaa -aaa -aaa -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aZV -aZV -aZV -aZV -aZV -aZV -aZV -aZV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(114,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lCe -lCe -lCe -lCe -lCe -lCe -lCe -lCe -lCe -lCe -lCe -lCe -lCe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -ard -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aFW -aJW -aJW -aGT -aHY -aHY -aJX -aKZ -aHY -aHY -avl -aKZ -aHY -aHY -aJX -aKZ -aHY -aHY -aHY -aUU -aFW -aaa -aaa -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aZV -uMk -aZW -aZW -bcb -bca -bcd -aZV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(115,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qOI -lCe -vGh -vGh -vGh -vGh -vGh -uvw -vGh -vGh -vGh -vGh -vGh -lCe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -ard -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aaa -aaa -aaa -aaa -aFW -aFW -aFW -aFW -aFW -aFW -aFW -aFW -aFW -aFW -aFW -aFW -aFW -aFW -aFW -aFW -aFW -aFW -aFW -aFW -aFW -aaa -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aZV -bbZ -awq -baa -bad -bai -baj -aZV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(116,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -jKB -jKB -jKB -jKB -jKB -jKB -aaa -aaa -lCe -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -lCe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -ard -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aZV -isy -aZW -bab -bae -baf -bae -bak -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(117,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -jKB -wIo -oiB -iLn -mDi -jKB -aaa -aaa -lCe -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -lCe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -ard -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aZV -aZY -eNt -bab -baf -bae -baf -aZV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(118,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -jKB -xRr -lZT -fLn -bDU -jKB -lCe -lCe -lCe -tUv -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -lCe -qOI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -ard -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aZV -hbJ -igM -bab -bae -baf -baf -bak -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(119,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -jKB -fLn -bRa -fLn -ejX -jKB -jZv -rSC -lCe -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -lCe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -ard -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aZV -aZV -aZV -aZV -aZV -aZV -aZV -aZV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(120,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -jKB -vtH -fLn -fLn -bSA -gVB -hMy -kKR -lCe -vGh -vGh -vGh -vGh -vGh -fAH -vGh -vGh -vGh -vGh -vGh -lCe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -ard -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(121,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -jKB -nJR -mkg -jNM -pXJ -jKB -hBa -gkA -lCe -vGh -vGh -vGh -vGh -qtN -hiP -rSC -vGh -vGh -vGh -vGh -lCe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -ard -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(122,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lCe -lCe -lCe -lCe -lCe -lCe -lCe -hiP -gkA -lCe -vGh -vGh -vGh -vGh -pAr -hiP -gkA -vGh -vGh -vGh -meI -lCe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -ard -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(123,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lCe -hXj -hXj -twe -hXj -hXj -lCe -hiP -gkA -lCe -iRI -vGh -vGh -vGh -pAr -hiP -gkA -vGh -vGh -vGh -vGh -lCe -qOI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -ard -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(124,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lCe -hXj -hXj -hXj -hXj -bBR -lCe -hiP -oWV -lCe -wWw -jZv -jZv -jZv -kVR -hiP -gkA -vGh -vGh -vGh -vGh -lCe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -ard -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(125,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lCe -eNg -prR -eAY -vcS -vcS -hIm -jpZ -vcS -hFw -sht -jxv -jxv -jxv -jxv -xte -gkA -vGh -vGh -vGh -vGh -lCe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -ard -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(126,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lCe -hXj -hXj -hXj -hXj -bBR -lCe -hiP -qkm -lCe -mpe -pzB -pzB -pzB -ovN -hiP -gkA -vGh -vGh -vGh -vGh -lCe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -asd -aba -ard -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(127,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lCe -hXj -hXj -oMp -hXj -hXj -lCe -hiP -gkA -lCe -iRI -vGh -vGh -vGh -pAr -hiP -gkA -vGh -vGh -vGh -vGh -lCe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -ard -aba -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aba -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(128,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kMM -lCe -lCe -lCe -lCe -lCe -lCe -lCe -hiP -gkA -lCe -vGh -vGh -vGh -vGh -pAr -hiP -gkA -vGh -vGh -vGh -meI -lCe -qOI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -ard -aba -aaa -aaa -aaa -aaa -aaa -awP -gzg -qid -uxH -awP -gzg -qid -uxH -awP -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(129,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kMM -qjL -aUc -xZJ -ybc -xZJ -jCg -kMM -nGh -gkA -lCe -vGh -vGh -vGh -vGh -ftd -hiP -wsT -vGh -vGh -vGh -vGh -lCe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -ard -aba -aba -aaa -aaa -aaa -aaa -awP -xZF -tdu -sOK -axG -dhd -pvF -xMR -awP -aaa -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aaa -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(130,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qOI -kMM -bLm -xZJ -xZJ -vkN -xZJ -jST -hNz -pNG -kKR -lCe -vGh -vGh -vGh -vGh -vGh -oJe -vGh -vGh -vGh -vGh -vGh -lCe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aqy -arf -arI -aba -aaa -aaa -aaa -aaa -awP -cXT -wtT -wVM -axG -eZy -vbA -wVM -awP -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -ale -ale -oTN -ale -ale -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(131,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kMM -dYQ -ktr -xZJ -ybc -xZJ -xZJ -kMM -lOl -wsT -lCe -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -lCe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aaa -aqz -are -arH -aba -aaa -aaa -aaa -aaa -awP -lDM -eBK -gWq -axG -eFZ -mtI -cmT -awP -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -ale -ale -ale -aba -ale -ale -ale -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(132,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kMM -ybc -ybc -ybc -ybc -xZJ -jOO -kMM -lCe -lCe -lCe -tUv -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -lCe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -ard -aba -aba -aba -aaa -awP -awP -awP -mtn -kQt -gAU -axG -ihg -aBk -mtn -awP -gzg -qid -uxH -awP -aGV -xQA -aIY -awP -awP -aGV -xQA -aIY -awP -awP -awP -jBW -ktH -arI -ale -ale -aaa -aaa -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(133,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kMM -qjL -aUc -xZJ -ybc -xZJ -xZJ -kMM -aaa -aaa -lCe -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -lCe -qOI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -ard -aba -aba -aba -aba -faN -fhy -cjL -ayy -nFv -azx -azW -aAH -aBl -aBN -mtn -mNr -aDZ -aFc -mAJ -fbM -aHZ -aIZ -aJZ -tmy -aIZ -aHZ -aIZ -aNT -vnf -awP -aqA -ebn -ayi -akG -ale -ale -aaa -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(134,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qOI -kMM -bLm -xZJ -xZJ -vkN -xZJ -xZJ -kMM -aaa -aaa -lCe -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -lCe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -ard -aba -aba -aba -aba -hSt -odm -ayd -div -kvS -qnt -azX -aAI -aBm -aBO -aCw -aPt -vVs -auL -axG -aGW -uui -gWq -lMm -xUD -kRz -vll -kRz -axG -aOP -awP -usw -arh -fez -ale -ale -ale -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(135,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kMM -dYQ -ktr -xZJ -ybc -xZJ -xZJ -kMM -aaa -qOI -lCe -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -vGh -lCe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -ard -aba -aba -aba -aba -hSt -lgi -rSk -mBp -bbf -bbg -azY -aAJ -aBn -aBM -mtn -aDf -aDi -dVR -axG -uui -aIb -gWq -aKa -idl -gWq -gWq -gWq -axG -nQi -lcj -nsu -awP -ale -ale -ale -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(136,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kMM -ybc -ybc -ybc -ybc -xZJ -jOO -kMM -aaa -aaa -lCe -vGh -vGh -vGh -vGh -vGh -wtB -vGh -vGh -vGh -vGh -vGh -lCe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -ard -aba -aba -aba -aba -udE -auy -rCf -idL -gyi -fXR -azZ -aAK -aBo -axG -axG -mBK -cde -icC -axG -aGX -uui -aIc -kuz -nxS -aIg -tUy -uui -upx -gEC -ciz -gnv -awP -ale -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(137,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kMM -qjL -aUc -xZJ -ybc -xZJ -xZJ -kMM -aaa -aaa -lCe -lCe -lCe -lCe -lCe -lCe -lCe -lCe -lCe -lCe -lCe -lCe -lCe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -ard -aba -aba -aaa -aaa -awP -axG -axG -axG -axG -axG -axG -aAL -aBp -axG -aCz -aDh -aEc -icC -qaD -uui -aGW -uui -aBl -xUD -aGW -uui -aGW -aON -gWq -gWq -gDH -wWU -aba -aba -aba -aba -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(138,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qOI -kMM -bLm -xZJ -xZJ -vkN -xZJ -xZJ -kMM -aaa -aaa -aaa -aaa -qOI -aaa -aaa -aaa -aaa -qOI -aaa -aaa -aaa -qOI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -ard -aba -aaa -aaa -awP -awP -peb -xyA -peb -azb -azy -aAb -aAM -aBq -mtn -aCA -aDi -aEc -aDi -aGf -aGZ -aDd -xEu -aKb -dYP -xEu -mHO -xEu -aOO -xEu -rnL -fty -oLE -aba -aba -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(139,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kMM -dYQ -ktr -xZJ -ybc -xZJ -xZJ -kMM -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -ard -aba -aaa -aaa -awP -axi -mol -ayf -ayA -azc -axG -axG -aAN -aBr -aBP -aCv -aDe -aEe -aFg -aGg -aHa -aIe -aJd -aKc -aLd -aLd -auA -aLd -uGd -aLd -wfd -sCq -oLE -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(140,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kMM -ybc -ybc -ybc -ybc -xZJ -jOO -kMM -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -ard -aba -aaa -aaa -awP -awP -jvK -ayg -ayB -iVV -axG -axG -aAO -aBs -mtn -aCB -aDi -aEf -aFh -qaD -aHb -aIf -aJe -aJb -aLe -aMe -aNi -aNX -ics -xjT -xDi -mEM -mDh -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(141,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kMM -qjL -aUc -xZJ -ybc -xZJ -xZJ -kMM -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -ard -aba -aaa -aaa -aaa -awP -hHI -ayh -jgi -uSI -acC -awP -aAP -awP -awP -awP -bbI -bbJ -awP -awP -xsE -aIg -aAi -ksm -gWq -aMf -aNj -aNY -gYx -hyS -hfI -rGm -awP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(142,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qOI -kMM -bLm -xZJ -xZJ -vkN -xZJ -xZJ -kMM -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -anh -ard -aba -aaa -aaa -aaa -awP -bwz -cgg -tcJ -rPy -hDw -awP -aAQ -aBt -dOP -eUT -ozh -xUd -auZ -awP -azO -aIh -aJf -aKd -aLe -jjh -rHm -dGF -lfY -avK -pUU -dMi -awP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(143,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kMM -dYQ -ktr -xZJ -ybc -xZJ -xZJ -kMM -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -ale -aba -aba -ard -aba -aaa -aaa -aaa -awP -awP -awP -awP -awP -awP -awP -aAR -aBu -wyg -tQF -aDi -otp -sRQ -awP -awP -awP -awP -awP -awP -awP -awP -awP -awP -axG -axG -axG -awP -aUZ -aUZ -aUZ -aUZ -aUZ -aUZ -aUZ -aUZ -aaa -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(144,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kMM -kMM -kMM -kMM -kMM -kMM -kMM -kMM -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aba -aba -aba -aba -ard -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -awP -mPs -aAg -aAS -aBv -iFn -pUY -dqy -uSU -cue -daN -aHc -aIi -aHc -aHc -aHc -aHc -aIi -aHc -aGi -bbK -bbO -bbN -bbO -aUZ -aTn -aTn -aUZ -bbT -bbT -gkk -aUZ -aUZ -aaa -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(145,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qOI -aaa -aaa -aaa -qOI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -aba -aba -aba -aba -aba -ard -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -awP -awP -awP -aAT -bbi -awP -itK -qkl -ksI -itK -daN -aHd -aHe -aHe -aHe -aHe -aHe -aHe -aHe -aGi -aPz -bbM -bbM -bbM -avP -bbQ -aUb -aUZ -bbU -aXh -aXh -bbX -aUZ -aaa -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(146,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aba -aba -aba -aba -aba -ard -aba -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aze -hVf -wUb -lXj -edi -aGi -aHe -aHe -aHe -cla -fIn -aHe -aHe -aHe -aGi -aPA -aQi -aQL -aQL -aSx -aTo -bbM -aVa -aXh -aXh -aXh -bbX -aUZ -aaa -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(147,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aba -aba -aba -aba -aba -aba -ard -aba -aba -aaa -aaa -aba -aba -aba -aba -aze -azB -xgn -xgn -aBx -aze -aCC -moh -bbv -ava -aGi -aHf -aHf -aJg -aKe -aHf -aHf -aHf -aHf -aGi -bbK -aQj -bbN -aQj -aUZ -aSy -uhh -aUZ -bbU -aXh -aXh -bbX -aUZ -aaa -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(148,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aba -aba -aba -aaa -aba -aba -aqy -arf -arI -aba -aba -aba -aba -aqy -arI -aba -uhr -azC -nTE -aAW -nTE -aBR -nTE -aDk -aCD -aFj -aGi -aHc -aHc -aHe -aKf -aGi -aMi -aNk -aNZ -aGi -aUZ -aUZ -aUZ -aUZ -aUZ -bbR -aUZ -aUZ -aUZ -aae -aUZ -aUZ -aUZ -aUZ -aaa -aaa -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(149,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -ale -aba -aba -aba -aaa -aaa -aba -aba -aqA -amg -avs -awb -awb -awb -awb -axH -ayi -aba -bbp -azD -aAj -aAX -aBz -aBS -bbk -bbl -aEg -aFj -aGi -aHg -aHe -aHe -aKf -aLh -aMl -xyT -acm -aGi -aUZ -aQl -aQO -aRM -olc -aTp -aSA -aVb -aVJ -aWx -avW -aXK -aYj -aUZ -aaa -aaa -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(150,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aaa -aaa -aaa -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -ale -ale -aba -aba -aba -aba -aaa -aaa -aba -aba -aba -aui -auM -arH -aba -aba -aba -aba -axI -arH -aba -azf -auz -nBz -nBz -nBz -aBT -aHk -aDl -aCD -aJn -aGj -aHe -aHe -aHe -aKf -aLi -aMk -aMk -aOb -aGi -aUZ -aUZ -aQP -aRN -aQN -aTq -aUg -aUZ -aVK -aWy -aXh -aUZ -aUZ -aUZ -aaa -aaa -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(151,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -ale -ale -ale -aaa -aaa -aaa -ale -ale -ale -ale -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -ale -sXz -auN -avt -sXz -aba -aba -aba -axJ -aba -aba -aCG -aCG -aCG -aCG -aCG -aCG -aCG -gsN -aEi -aFl -aGi -aHh -aIj -aJi -aKg -aLj -aMj -avk -aOc -aGi -aaa -aUZ -aQQ -aRO -aSB -aQN -aUg -aUZ -aVL -aWz -aXh -aXL -qfv -aUZ -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(152,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aaa -aaa -aaa -aaa -aba -aba -aba -aaa -aaa -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -ale -ale -ale -ale -ale -aba -aba -aba -aba -aba -aba -aaa -aba -aba -aba -aba -aba -ale -ale -sXz -auO -avu -sXz -aaa -cev -cev -axK -cev -bbe -aCG -azF -azF -azF -azF -aBU -aCG -aDn -aEj -aFm -aGi -aGi -aGi -aGi -aKh -aGi -aGi -aGi -aGi -aGi -aUZ -aUZ -aQR -aRP -aSC -aTr -aUi -aUZ -aUZ -dpE -aUZ -aUZ -aUZ -aUZ -aaa -aba -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(153,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -ale -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aba -aba -aba -aba -ale -ale -aaa -sXz -auP -avv -sXz -aaa -cev -axk -axL -cev -ayE -sXz -azF -azF -azF -azF -azF -aCG -aDo -aEi -aFn -aGk -aHi -aIk -aJj -aKi -aLk -aMm -aNm -aOd -aNm -aPE -aQm -aQS -aRQ -aSD -aSD -aUj -aVc -aWA -aXi -oki -lWn -aba -aaa -aaa -aba -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(154,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -aaa -aaa -aaa -aba -aba -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aba -aba -aba -aba -aba -ale -ale -aaa -aaa -sXz -awA -baP -sXz -sXz -cev -axl -axM -cev -dyi -sXz -azF -aAk -azF -aBA -azF -aCG -aDp -aEk -aCE -aGl -aHj -qlb -lRe -aKj -aLl -aMn -aNn -aOe -avr -aNn -aQn -aQT -aRR -aSE -aTs -aSE -aVd -aSE -aSE -aXj -xyv -aba -aba -aba -aba -aaa -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(155,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -ale -ale -aaa -aaa -aaa -sXz -aER -baQ -baS -baT -awQ -axm -axN -ayj -ayF -sXz -azF -azF -azF -azF -azF -aCG -aDq -aEl -aKk -aGm -aHk -aIl -aHk -aFo -aLm -aLm -aLm -aLm -aLm -aLm -aLm -aLm -aLm -aSF -aTu -nHA -aSF -aLk -aWB -aXk -gvE -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(156,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -aaa -aaa -aaa -aba -aba -aba -akG -aba -aba -aba -aba -akG -aba -aba -akG -akG -aba -aba -aba -akG -akG -aba -aba -aba -aaa -aaa -aba -aaa -aba -aba -aba -aba -aba -ale -ale -ale -aaa -aaa -aaa -aaa -sXz -aES -baR -qXm -baU -sCY -sCY -sCY -sCY -ayG -sXz -azF -azF -azF -azF -azF -sXz -aDr -unQ -aFp -unQ -unQ -unQ -vCz -oZc -aLm -aMo -aNo -hyq -aOR -hyq -aOf -aQU -aLm -aSG -aTu -aTx -bbS -aLk -aVO -aXl -aLk -aSM -riA -weI -aLk -aSM -weI -aLk -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(157,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aaa -aaa -aaa -aba -aba -akG -akG -aba -aba -aba -aba -akG -akG -aba -akG -aba -aba -aba -aba -aba -akG -aba -aba -aba -aba -aaa -aaa -aaa -aba -aba -aba -aaa -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -sXz -auS -auS -awe -baV -awR -awB -awB -awB -ayH -sXz -sXz -sXz -sXz -sXz -sXz -sXz -aDs -unQ -ceW -gut -emk -uRU -aJl -aKm -aLm -avi -aNq -aNq -aNq -aNq -aNq -msp -aLm -aSH -aTv -aUl -avT -aLk -aWC -aXm -sXA -aYk -aYz -aYk -aZd -aYk -ozn -aLk -aaa -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(158,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -akG -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sXz -sXz -sXz -awf -sXz -sXz -sXz -sXz -sXz -ayI -azg -fcg -klI -aAY -azg -hwN -wqz -aDt -lZQ -tnK -cIR -mGh -lFK -euW -aKn -gHN -aMq -fdV -hHy -hHy -fdV -aNq -cyD -aLm -aSI -aTw -aUm -aSJ -tXM -aWD -aXn -aXM -aYl -aYA -aYR -aXM -bYD -jSu -aLk -aaa -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(159,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -aaa -aaa -aaa -aba -aba -aaa -aba -aba -aba -akG -akG -aba -aba -aba -aba -aba -aba -akG -akG -akG -aba -aba -aba -aba -aba -aba -aba -aba -aba -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sXz -awd -sXz -aaa -aaa -aaa -sXz -sXz -sXz -wGK -kGt -jfp -sXz -sXz -vPb -bbn -unQ -jjp -ark -fTY -vCz -bvB -aKo -aLo -xUC -fdV -hHy -hHy -fdV -aNq -aQX -aLm -ulX -aTx -aUn -aTx -xyv -dya -aXo -iWa -iWa -iHK -aXM -aXM -aXM -jSu -aLk -aaa -aaa -aaa -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(160,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -aaa -aaa -aba -aba -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -akG -aba -aba -aba -aba -aba -aba -aba -aba -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sXz -awd -sXz -aaa -aaa -aaa -aaa -aaa -sXz -azh -sXz -azh -sXz -sXz -fbJ -nXh -unQ -kVF -xgt -nBf -tNU -obP -aKp -aXc -aMs -fdV -hHy -hHy -fdV -aNq -msp -aLm -aSK -aTx -aTx -aVg -qqf -aWF -aXp -aXM -aYm -aYm -aYm -aXM -aZw -rjC -aLk -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(161,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -aaa -aaa -aba -aba -aba -aba -akG -akG -aba -aba -aba -aba -akG -akG -aba -akG -aba -aba -aba -aba -aba -akG -aba -aba -aaa -aaa -aaa -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sXz -awd -sXz -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -rnM -jXe -cWC -unQ -unQ -unQ -unQ -unQ -vCz -dYW -aLm -xUC -aNq -aNq -aNq -aNq -aNq -lXe -aLm -aSL -nKe -aUo -nnP -aLk -avV -aXq -bbY -bbY -aYC -aXM -aXM -aXM -jSu -aLk -aaa -aaa -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(162,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -aaa -aaa -aaa -aaa -aba -aba -aba -akG -aba -aba -aba -aba -akG -aba -aba -akG -akG -aba -aba -aba -akG -akG -aba -aba -aaa -aaa -aaa -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sXz -awd -sXz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -sXz -kLG -kLG -aFt -aFq -lQi -vQH -aIp -aJq -aKr -aLm -owd -aNq -dGd -aNq -aPJ -qiV -ceK -aLm -aLk -aLk -aLk -aLk -aLk -vMS -sWS -wSX -uFh -tSk -kwz -xyk -rCQ -wnO -aLk -aaa -aaa -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(163,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sXz -awd -sXz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sXz -gsG -gsG -aFt -vlf -aGo -aHm -aIq -aJr -aKs -aLm -vYg -rWc -dQy -ejd -aLm -wIA -ukB -aLm -aaa -aaa -aaa -aaa -aLk -aSM -weI -aLk -aSM -riA -weI -aLk -aSM -weI -aLk -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(164,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aaa -aaa -aba -aba -aba -aba -aaa -aba -aba -aba -aba -aba -aba -aaa -aaa -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sXz -awd -sXz -sXz -sXz -sXz -sXz -sXz -sXz -sXz -sXz -sXz -aaa -sXz -gsG -gsG -aFt -aFr -aGp -qRa -aIr -aJs -avb -aLm -aMt -aNt -aOi -aMt -aLm -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(165,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sXz -awg -awC -awC -awC -awC -awC -awC -awC -awC -aAl -sXz -aaa -sXz -gsG -gsG -aFt -aFt -aFt -aFt -aFt -aqC -aKq -aLq -aMu -aNu -sFw -aOV -nzR -aba -aba -aba -aba -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(166,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sXz -sXz -sXz -sXz -sXz -sXz -sXz -sXz -sXz -sXz -aAm -sXz -aaa -sXz -cHi -cHi -cdZ -tba -bxJ -pDN -hWq -aJs -aKu -aLr -aMv -aNv -aOk -aOW -nzR -aaa -aba -aba -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(167,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sXz -hKO -sXz -aaa -sXz -sXz -mRK -cdZ -whf -tYh -qcS -aIt -idF -aKv -vjP -aMw -aNw -aOl -aqE -nzR -aaa -aaa -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(168,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sXz -hKO -sXz -aaa -aaa -fvZ -nJV -cdZ -pzh -aGs -vMo -hWq -aJs -aKw -aLs -sFw -aNx -aOm -aOY -nzR -aaa -aaa -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(169,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -ale -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -ale -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sXz -hKO -sXz -aaa -aaa -fvZ -qtU -cdZ -cdZ -cdZ -cdZ -cdZ -aJw -wwk -aLu -aMy -sFw -oZx -aOZ -nzR -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(170,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -ale -ale -aaa -aba -aba -aaa -aaa -aba -aaa -ale -ale -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sXz -hKO -sXz -aaa -aaa -fvZ -qtU -exv -mPn -xXU -waL -cWk -aJs -dRQ -aLv -aMz -aNz -aOn -avy -nzR -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(171,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -ale -aba -aba -aaa -aba -aba -ale -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sXz -hKO -sXz -aaa -aaa -fvZ -qtU -exv -aFx -aGu -aHr -aIu -aJy -aKy -cFw -oLA -eEq -baw -cFw -nzR -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(172,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ale -aba -aba -aba -aba -aba -ale -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sXz -hKO -sXz -aaa -aaa -fvZ -qtU -exv -aFy -ckF -xrb -aIv -aJs -aKz -bbG -mmQ -nHP -avn -cFw -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(173,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -aaa -aaa -sXz -hKO -sXz -aaa -aaa -fvZ -qtU -exv -exv -exv -exv -exv -aqD -tNs -bbH -cXJ -opa -wfF -cFw -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(174,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -sXz -hKO -sXz -aaa -aaa -fvZ -qtU -hiB -aFA -iRV -aHs -qSH -aJs -aKx -gsX -jkR -oUd -rMt -cFw -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(175,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -sXz -hKO -sXz -aaa -aaa -fvZ -qtU -hiB -aFB -ipg -sHO -aIx -aJA -aKB -gsX -nTr -nTr -nTr -cFw -aaa -aaa -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(176,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -sXz -hKO -sXz -aaa -aaa -fvZ -qtU -hiB -rHa -tUY -nIs -aIy -aJs -aKC -yiA -bbF -dxk -fSE -cFw -aaa -aaa -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(177,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -sXz -hKO -sXz -aaa -aaa -fvZ -uGF -hiB -hiB -hiB -hiB -hiB -aJC -vZM -cFw -oLA -eEq -baw -cFw -qNL -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(178,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -sXz -hKO -sXz -aaa -aaa -fvZ -edk -rjx -dqM -rhL -eqh -uNb -qgg -cXg -aLy -qLE -nAx -dPZ -tCp -pCk -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(179,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -ale -ale -akG -akG -akG -akG -akG -akG -akG -akG -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -sXz -hKO -sXz -aaa -aaa -fvZ -gll -jBb -dqM -dqM -ncg -sbs -xqG -lLx -wLc -ljI -mrR -nhA -avF -qNL -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(180,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -ale -ale -akG -akG -akG -akG -akG -akG -akG -ape -ape -ape -ape -ape -ape -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -sXz -hKO -sXz -aaa -aaa -aaa -gll -brs -dqM -mnD -uAS -gll -jjF -lLx -noC -xLk -xZp -ejU -nij -pCk -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(181,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -ale -ale -akG -akG -ale -ale -ale -ale -ale -ape -ape -ape -ape -ape -ape -ale -ale -ale -aba -aba -ale -ale -ale -aba -aba -ale -ale -ale -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -sXz -hKO -sXz -aaa -aaa -aaa -gll -xVZ -bTg -bTg -hpx -aqB -lLx -lLx -bXx -bfE -eCm -fYr -geK -qNL -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(182,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -akG -akG -akG -akG -akG -ale -ale -aba -aba -ale -ape -apC -aqf -aqI -ape -ape -ale -akG -asA -aba -aba -aba -aba -aba -aba -aba -aba -auj -akG -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -sXz -hKO -sXz -aaa -aaa -aaa -gll -xon -idt -ltb -aqF -gll -aJk -mWx -lZJ -iOt -eCm -krN -jVc -pCk -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(183,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -akG -akG -akG -akG -akG -ale -aba -aba -aba -ale -ape -apD -aqg -aqJ -ape -ape -akG -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -sXz -hKO -sXz -aaa -aaa -aaa -gll -uyg -dsk -dsk -nhr -nzR -aLs -aLs -nzR -nzR -toQ -jig -ico -qNL -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(184,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -akG -akG -ale -ale -ale -amN -ani -anz -aoa -amO -amO -amO -aqh -amO -amO -amO -amO -aba -aba -asv -asv -asv -akG -asv -akG -asv -aba -aba -aba -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -sXz -hKO -sXz -aaa -aaa -aba -aba -aba -aba -aba -aba -nzR -sFw -sFw -mGR -nzR -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(185,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -akG -akG -ale -ale -aba -amN -anj -anA -aob -amO -apf -apE -aqi -lXb -arq -amO -amO -aba -asB -asG -amO -asP -asP -asP -asP -atu -auT -aba -ale -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -sXz -aAm -sXz -aaa -aaa -aba -aba -aba -aba -aba -aba -nzR -sFw -sFw -sFw -nzR -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(186,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -akG -akG -ale -aba -aba -amL -ank -anB -aoc -amO -apg -apF -aqj -apF -arr -amO -amO -asv -asC -asG -asG -asP -asP -asP -ati -asP -akG -aba -aba -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -sXz -hKO -sXz -aaa -aaa -aaa -aba -aba -aba -aba -aba -nzR -eCT -pQb -nRV -nzR -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(187,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -akG -akG -ale -aba -aba -amN -anl -anC -aod -aoG -aph -apG -aqk -aqK -ars -arV -asl -asw -asD -asH -asG -asP -asP -asP -asP -asP -auT -aba -aba -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -sXz -hKO -sXz -aaa -aaa -aaa -aaa -aba -aba -aba -aba -nzR -nzR -nzR -nzR -nzR -aaa -aaa -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(188,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -akG -akG -ale -aba -aba -amM -anm -anD -aoe -amO -api -apF -aqj -apF -art -amO -amO -asx -asE -asI -asG -asP -asP -asP -asP -asP -akG -aba -aba -aba -ale -ale -ale -ale -ale -akG -aaa -aaa -sXz -hKO -sXz -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(189,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -akG -akG -ale -ale -aba -amN -anj -anE -aof -amO -apf -apH -aqi -apE -arq -amO -amO -aba -asB -asJ -amO -asP -asP -asP -asP -asP -auT -aba -anh -aba -aba -ale -ale -ale -ale -akG -aaa -aaa -sXz -hKO -sXz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aaa -aaa -aaa -aaa -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(190,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -akG -akG -ale -ale -ale -amN -ann -anF -aoa -amO -amO -amO -aql -aqL -aqL -aqL -aqL -aba -asB -asK -asN -asQ -akG -asQ -akG -asQ -asv -asv -aba -aba -ale -ale -ale -ale -ale -akG -aaa -aaa -sXz -hKO -sXz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -aba -aba -aba -aba -aba -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(191,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -akG -akG -ale -ale -akG -amO -ano -anG -aog -aoH -apj -apI -aqm -aqL -aru -arW -aqL -aba -asB -asL -asO -asO -asO -asO -asO -asO -asO -auk -auT -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -sXz -hKO -sXz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(192,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -akG -akG -alY -alY -alY -rHf -anp -anH -aoh -aoI -apk -apJ -aqn -aqM -arv -arX -aqL -akG -asA -asM -asM -asM -asM -asM -asM -asM -asE -aul -akG -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -sXz -hKO -sXz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(193,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -akG -akG -alY -alY -alY -amO -anq -anI -aoi -aoJ -apl -apK -aqo -aqL -arw -arY -aqL -ale -ale -ale -ale -aba -aba -aba -aba -asR -asR -aum -asR -asR -asR -ale -ale -ale -ale -akG -aaa -aaa -sXz -hKO -sXz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(194,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -ale -alY -alY -alY -amO -amO -anJ -amO -aoK -amO -amO -amO -aqL -aqL -aqL -aqL -ale -ale -ale -ale -ale -ale -aba -aba -asR -atF -aun -auU -auU -asR -ale -ale -ale -ale -akG -aaa -aaa -sXz -hKO -sXz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(195,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -alY -alY -alY -amx -amP -dNj -anK -aoj -aoL -apm -apL -aqp -alY -alY -alY -ale -ale -ale -ale -ale -ale -ale -ale -ale -asR -atG -aun -ato -aut -asR -sXz -sXz -sXz -sXz -sXz -sXz -sXz -sXz -hKO -sXz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(196,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -alY -alY -alY -alY -amy -amQ -anr -anL -aok -aoL -amz -apM -aqq -alY -alY -alY -ale -ale -ale -ale -ale -ale -ale -ale -ale -asR -atH -auo -auV -avz -awh -awD -auv -awD -awD -ayk -awC -awC -awC -aAn -sXz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(197,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -alY -alY -alY -amj -amz -amA -amA -amA -aol -aoL -amA -amz -amz -aqN -alY -alY -alY -ale -ale -ale -ale -ale -ale -ale -asR -asR -asR -asR -asR -avA -asR -sXz -sXz -sXz -sXz -sXz -sXz -sXz -sXz -sXz -sXz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(198,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -alY -alY -alY -amk -amA -amR -amA -amA -aom -aoM -amA -amR -amA -aqO -alY -alY -alY -ale -ale -ale -ale -asR -asR -asR -asR -asR -atI -aup -auW -avB -asR -asR -asR -asR -ale -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(199,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -alY -alY -alY -amB -amA -amA -anM -aon -aoN -amA -amz -aqr -alY -alY -alY -ale -ale -ale -ale -ale -asR -asR -asR -asR -asR -atJ -asR -asR -asR -asR -asR -asR -asR -ale -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(200,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -alY -alY -alY -alY -amA -amA -anN -aoo -aoO -amA -amA -alY -alY -alY -alY -ale -ale -ale -ale -ale -asR -asR -asW -atj -asZ -atK -auq -auX -avC -awi -awE -asR -asR -ale -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(201,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -alY -alY -alY -alY -amS -ans -anO -aop -aoP -apn -apN -alY -alY -alY -alY -arx -asy -asy -asy -asy -asS -asS -asX -atk -asZ -atL -atn -atn -atn -ato -awF -asR -asR -ale -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(202,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -ale -alY -alY -alY -amA -amA -anP -aoq -aoQ -amA -amA -alY -alY -alY -alY -arZ -ale -ale -ale -ale -asR -asR -asY -atl -atv -atM -aur -auY -avD -awj -awG -asR -asR -ale -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(203,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -ale -alY -alY -alY -amT -ant -anQ -aor -aoR -apo -apO -alY -alY -alY -alY -arZ -ale -ale -ale -ale -asR -asR -asZ -asZ -asZ -atN -asZ -aus -avE -asZ -awH -asR -asR -ale -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(204,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -ale -alY -alY -aoE -apP -anu -anR -aos -aoS -app -apP -aoE -alY -alY -alY -arZ -asR -asR -asR -asR -asR -asR -ata -atm -atw -atO -asR -asR -asR -asR -asR -asR -asR -ale -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(205,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -ale -alY -alY -alY -amV -anv -anS -aot -aoT -apq -apQ -alY -alY -alY -alY -arZ -asR -asR -asR -asR -asR -asR -atb -dHl -atx -atP -asR -asR -asR -asR -asR -asR -asR -ale -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(206,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -alY -alY -alY -amC -amW -anw -alY -aou -anT -apr -apR -amC -alY -alY -alY -arZ -asR -asR -kTA -oQh -hje -vbC -atc -hAM -wqA -atQ -asR -asR -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(207,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -alY -alY -alY -amD -amX -alY -anT -aov -aoU -alY -apS -aqs -alY -alY -alY -arZ -asR -asR -jfo -ato -dvQ -asR -atd -atp -aty -atR -asR -asR -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(208,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -alY -alY -alY -amE -amY -anx -anU -aow -aoV -aps -apT -aqt -alY -alY -alY -arZ -asR -asR -oyF -fwO -heM -asR -asR -asR -asR -asR -asR -asR -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(209,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -alY -alY -alY -amD -amZ -alY -alY -aox -alY -alY -apU -amD -alY -alY -alY -arZ -asR -asR -asR -asR -asR -asR -asR -asR -asR -asR -asR -asR -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(210,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -ale -alY -alY -alY -ana -alY -anV -aoy -aoW -alY -apV -alY -alY -alY -arx -ary -asR -asR -asR -asR -asR -asR -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(211,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -ale -alY -alY -alY -anb -alY -cvs -aoz -aoX -alY -apW -alY -alY -alY -arZ -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(212,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -ale -alY -alY -amF -anc -any -anW -aoA -aoY -apt -apX -aqu -alY -alY -arZ -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(213,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -ale -ale -alY -alY -alY -alY -alY -aoB -alY -alY -alY -alY -alY -arx -ary -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(214,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -ale -ale -alY -alY -alY -alY -alY -aoC -aoZ -aoZ -aoZ -aoZ -aoZ -ary -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(215,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -ale -ale -ale -alY -alY -alY -alY -alY -alY -alY -alY -alY -alY -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(216,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(217,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(218,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(219,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -ale -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(220,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -akG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(221,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(222,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(223,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(224,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(225,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(226,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(227,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(228,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(229,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(230,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(231,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(232,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(233,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(234,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(235,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(236,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(237,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(238,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(239,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(240,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(241,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(242,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(243,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(244,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(245,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(246,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(247,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(248,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(249,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(250,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(251,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(252,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(253,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(254,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(255,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} diff --git a/maps/aurora/aurora-4_mainlevel.dmm b/maps/aurora/aurora-4_mainlevel.dmm deleted file mode 100644 index 2fd5def1668..00000000000 --- a/maps/aurora/aurora-4_mainlevel.dmm +++ /dev/null @@ -1,135164 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/unsimulated/chasm_mask, -/area/mine/unexplored) -"aab" = ( -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"aac" = ( -/obj/effect/shuttle_landmark/merc/caverns, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"aad" = ( -/turf/simulated/wall, -/area/maintenance/security_starboard) -"aae" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aaf" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/window/reinforced, -/obj/machinery/floodlight, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aag" = ( -/obj/item/shovel{ - pixel_x = 8 - }, -/obj/item/shovel{ - pixel_x = -8 - }, -/obj/item/shovel, -/obj/structure/table/rack, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aah" = ( -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aai" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aaj" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/open, -/area/maintenance/security_starboard) -"aak" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aal" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Mining Processing Hatch"; - req_access = list(48); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"aam" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintance"; - req_one_access = list(12,66); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"aan" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aao" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aap" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Cold Storage"; - req_access = list(66); - dir = 1 - }, -/obj/structure/plasticflaps/airtight, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/medical/surgerywing) -"aaq" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Security Maint EVA"; - dir = 4 - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aar" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aau" = ( -/obj/effect/map_effect/window_spawner/reinforced/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aav" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aaw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aax" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aay" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aaz" = ( -/obj/structure/lattice, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"aaA" = ( -/obj/structure/closet, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aaB" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/structure/closet/crate, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aaC" = ( -/obj/item/reagent_containers/glass/beaker/sulphuric, -/obj/structure/table/steel, -/obj/machinery/power/apc/high/west, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light_switch{ - pixel_x = -20; - pixel_y = 13 - }, -/turf/simulated/floor/carpet/rubber, -/area/assembly/robotics/workshop) -"aaD" = ( -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aaE" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light_switch{ - pixel_x = 10; - pixel_y = 24 - }, -/obj/random/pottedplant, -/turf/simulated/floor/tiled, -/area/assembly/robotics_cyborgification) -"aaF" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aaG" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aaH" = ( -/obj/structure/grille/broken, -/obj/structure/lattice, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"aaI" = ( -/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/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aaJ" = ( -/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/plating, -/area/maintenance/security_starboard) -"aaK" = ( -/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/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aaL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm/north, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aaM" = ( -/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/sign/drop{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aaN" = ( -/obj/effect/decal/cleanable/generic, -/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/plating, -/area/maintenance/security_starboard) -"aaO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - 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 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aaP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aaQ" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - use_power = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aaR" = ( -/turf/simulated/wall, -/area/mine/unexplored) -"aaS" = ( -/turf/simulated/floor/airless, -/area/mine/unexplored) -"aaT" = ( -/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/plating, -/area/maintenance/security_starboard) -"aaU" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/table/glass, -/obj/machinery/camera/network/security{ - c_tag = "Security - Forensics Lab Port"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"aaV" = ( -/turf/simulated/wall, -/area/security/brig) -"aaW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aaX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"aaY" = ( -/obj/structure/bed/stool/chair, -/obj/item/handcuffs, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"aaZ" = ( -/obj/structure/table/standard, -/obj/item/surgery/scalpel{ - desc = "Cut, cut, and once more cut. This one looks a little rusty. Perhaps its best not to cut yourself with this!"; - name = "rusty scalpel" - }, -/obj/item/surgery/retractor, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"abb" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen/red, -/obj/item/pen{ - pixel_x = -4 - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"abc" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"abd" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/closet{ - name = "Forensic Closet" - }, -/obj/item/storage/box/swabs, -/obj/item/storage/box/folders/blue, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/storage/box/evidence, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"abe" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/closet{ - name = "Evidence Closet" - }, -/turf/simulated/floor/tiled, -/area/security/forensics_laboratory) -"abf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet{ - name = "Evidence Closet" - }, -/turf/simulated/floor/tiled, -/area/security/forensics_laboratory) -"abg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/forensics_laboratory) -"abh" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/security/brig) -"abi" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"abk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - 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/plating, -/area/maintenance/security_starboard) -"abl" = ( -/obj/effect/decal/cleanable/dirt, -/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/plating, -/area/maintenance/security_starboard) -"abm" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/dirt, -/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/plating, -/area/maintenance/security_starboard) -"abn" = ( -/obj/structure/cable{ - 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/plating, -/area/maintenance/security_starboard) -"abo" = ( -/obj/structure/cable{ - 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/plating, -/area/maintenance/security_starboard) -"abp" = ( -/obj/structure/reagent_dispensers/extinguisher, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"abq" = ( -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "spiderling"; - name = "dead greimorian" - }, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"abr" = ( -/obj/random/junk, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"abs" = ( -/obj/effect/decal/cleanable/vomit, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"abt" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/glass/bottle/toxin, -/obj/item/reagent_containers/syringe, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"abu" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Security Lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"abw" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"abx" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"aby" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/investigations_storage) -"abz" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"abA" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"abB" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/forensics_laboratory) -"abC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/forensics_laboratory) -"abD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Forensic Laboratory"; - req_access = list(4); - dir = 4 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/forensics_laboratory) -"abE" = ( -/turf/simulated/floor/tiled, -/area/security/brig) -"abF" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"abG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Security Lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_access = list(63); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/security/brig) -"abH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/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/plating, -/area/maintenance/security_starboard) -"abI" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"abJ" = ( -/turf/simulated/wall, -/area/security/forensics_office) -"abK" = ( -/turf/simulated/wall, -/area/maintenance/substation/security) -"abL" = ( -/obj/structure/table/standard, -/obj/item/clothing/glasses/safety/goggles, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"abM" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"abN" = ( -/obj/structure/table/rack, -/obj/item/shovel, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"abP" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/item/modular_computer/console/preset/security/investigations, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"abQ" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/closet{ - name = "Evidence Closet" - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/investigations_storage) -"abR" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"abS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - name = "adjusted reinforced window" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/security/forensics_laboratory) -"abT" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"abU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/maintenance/security_starboard) -"abV" = ( -/obj/structure/closet/crate, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"abW" = ( -/obj/structure/table/standard, -/obj/machinery/vending/wallmed2{ - pixel_y = 28 - }, -/obj/item/storage/box/fancy/tray, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"abX" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/device/radio/intercom/south, -/obj/item/book/manual/wiki/ntsl2, -/turf/simulated/floor/wood, -/area/library) -"abY" = ( -/obj/structure/closet/hazmat/security, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"abZ" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/alarm/west, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Security Subgrid"; - name_tag = "Security Subgrid" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/security) -"aca" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Security Main" - }, -/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/maintenance/substation/security) -"acb" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Security Main Substation Bypass" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/security) -"acc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/loot, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"acd" = ( -/obj/structure/girder/displaced, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"acg" = ( -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/airlock/security{ - name = "Evidence Storage"; - req_access = list(4); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/investigations_storage) -"acj" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/forensics_laboratory) -"ack" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/security{ - c_tag = "Security - Forensics Lab Starboard"; - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/bed/stool/padded/red, -/turf/simulated/floor/tiled, -/area/security/forensics_laboratory) -"acl" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Forensics Desk" - }, -/obj/machinery/door/window/brigdoor/westright{ - name = "Forensics Desk"; - req_access = list(4) - }, -/obj/machinery/ringer_button{ - id = "investigation_ringer"; - pixel_x = 6; - pixel_y = 6 - }, -/turf/simulated/floor/tiled, -/area/security/forensics_laboratory) -"acm" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/security/brig) -"acn" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"aco" = ( -/obj/machinery/power/apc/west, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/maintenance/substation/security) -"acp" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/machinery/camera/network/security{ - c_tag = "Security - Security Substation"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/security) -"acq" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner_wide/paleblue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"acr" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/obj/structure/sign/flag/scc{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"acs" = ( -/obj/machinery/alarm/south, -/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, -/area/engineering/atmos) -"act" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - 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 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"acu" = ( -/obj/effect/landmark{ - name = "cavernspawn" - }, -/obj/effect/landmark{ - name = "cavernspawn" - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"acv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/security/forensics_laboratory) -"acw" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 1 - }, -/area/security/brig) -"acx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/maintenance/security_starboard) -"acy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - name = "ore delivery outlet" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/maintenance/security_starboard) -"acz" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"acA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Security Substation"; - req_one_access = list(11,24); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/security) -"acB" = ( -/obj/effect/decal/cleanable/dirt, -/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/plating, -/area/maintenance/security_starboard) -"acC" = ( -/obj/structure/lattice, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"acD" = ( -/obj/item/material/shard{ - icon_state = "medium" - }, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"acE" = ( -/obj/structure/girder, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"acF" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Security Lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"acG" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Evidence Storage Port"; - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/investigations_storage) -"acI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/investigations_storage) -"acJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/investigations_storage) -"acK" = ( -/obj/structure/cable/green{ - 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{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/investigations_storage) -"acL" = ( -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 32 - }, -/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{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/investigations_storage) -"acM" = ( -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/airlock/security{ - name = "Evidence Storage"; - req_access = list(4); - 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{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/investigations_storage) -"acN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/forensics_laboratory) -"acO" = ( -/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, -/turf/simulated/floor/tiled, -/area/security/forensics_laboratory) -"acP" = ( -/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/machinery/door/airlock/glass_security{ - name = "Forensic Laboratory"; - req_access = list(4); - dir = 4 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/forensics_laboratory) -"acQ" = ( -/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/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/brig) -"acR" = ( -/obj/structure/reagent_dispensers/keg, -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"acS" = ( -/obj/structure/table/standard, -/obj/item/clothing/glasses/safety/goggles, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"acT" = ( -/obj/structure/table/standard, -/obj/machinery/vending/wallmed2{ - pixel_y = -28 - }, -/obj/item/storage/box/fancy/tray, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"acU" = ( -/obj/structure/sink/kitchen{ - dir = 4; - pixel_x = -18 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"acV" = ( -/obj/structure/table/standard, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"acX" = ( -/obj/machinery/power/apc/low/south, -/obj/structure/cable/green, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/investigations_storage) -"acY" = ( -/obj/machinery/disposal, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/turf/simulated/floor/tiled, -/area/security/forensics_laboratory) -"acZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/forensics_laboratory) -"ada" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled, -/area/security/brig) -"adb" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "ExamR2" - }, -/obj/structure/window/reinforced/polarized{ - id = "ExamR2" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "ExamR2" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/exam_room2) -"adc" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner_wide/paleblue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"add" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Staff Smoking Lounge"; - req_access = list(66); - dir = 4 - }, -/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 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/medbreak) -"ade" = ( -/obj/effect/decal/cleanable/dirt, -/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/plating, -/area/maintenance/substation/security) -"adg" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - icon_state = "map_vent_out"; - use_power = 1 - }, -/turf/simulated/floor/bluegrid/server, -/area/server) -"adh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "cobweb1" - }, -/obj/structure/closet/secure_closet/freezer/meat{ - desc = "It looks like it has not been used for some time."; - name = "Dust-covered meat freezer" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"adi" = ( -/obj/item/reagent_containers/food/condiment/flour, -/obj/effect/decal/cleanable/flour, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"adj" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/trash/tray, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "messhallshutters"; - name = "Mess hall shutters" - }, -/obj/structure/bed/stool/padded/red, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"adk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/vault) -"adl" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/carpet/rubber, -/area/assembly/robotics/workshop) -"adm" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"adn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) - }, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"ado" = ( -/obj/structure/grille/broken, -/obj/structure/lattice, -/obj/item/material/shard, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"adp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"adq" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Security Lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Evidence Storage Maintenance"; - req_access = list(4); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/security/investigations_storage) -"adt" = ( -/turf/simulated/wall, -/area/security/investigations_storage) -"adu" = ( -/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/item/device/radio/intercom/west, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 1 - }, -/area/security/brig) -"adv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Security Lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/obj/machinery/door/airlock/glass_security{ - name = "Ore Retrieval"; - req_access = list(63); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"adw" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/carpet/rubber, -/area/server) -"adx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/engineering{ - name = "Security Substation"; - req_one_access = list(11,24); - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/security) -"ady" = ( -/obj/structure/closet/secure_closet/refrigerator/standard{ - desc = "It looks like it has not been used for some time."; - name = "Dust-covered refrigerator" - }, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/food/condiment/sugar{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/condiment/shaker/spacespice, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"adz" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "messhallshutters"; - name = "Mess hall shutters" - }, -/obj/structure/bed/stool/padded/red, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"adA" = ( -/obj/machinery/alarm/south, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"adB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/mob/living/simple_animal/rat/gray, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"adC" = ( -/obj/item/stack/rods, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"adD" = ( -/obj/machinery/atmospherics/unary/freezer{ - icon_state = "freezer_1"; - power_setting = 20; - set_temperature = 80; - use_power = 1 - }, -/obj/machinery/alarm/east, -/turf/simulated/floor/carpet/rubber, -/area/server) -"adE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/assembly/robotics/workshop) -"adF" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/structure/closet/crate, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"adG" = ( -/obj/structure/closet/walllocker/medical{ - pixel_y = 30 - }, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/bruise_pack, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet/west{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"adH" = ( -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"adI" = ( -/obj/structure/table/rack, -/obj/item/stack/material/plasteel{ - amount = 20; - pixel_y = 4; - randpixel = 0 - }, -/obj/item/stack/material/glass{ - amount = 50; - pixel_x = -1; - pixel_y = 2; - randpixel = 0 - }, -/obj/item/stack/material/steel{ - amount = 50; - pixel_x = 1; - pixel_y = -2; - randpixel = 0 - }, -/obj/item/stack/material/steel{ - amount = 50; - pixel_x = 1; - pixel_y = -2; - randpixel = 0 - }, -/obj/item/stack/material/steel{ - amount = 50; - pixel_x = 1; - pixel_y = -2; - randpixel = 0 - }, -/obj/item/device/radio/intercom/west, -/turf/simulated/floor/carpet/rubber, -/area/assembly/robotics/workshop) -"adJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"adK" = ( -/obj/structure/grille, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"adL" = ( -/obj/structure/grille/broken, -/obj/structure/lattice, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"adM" = ( -/obj/structure/cable{ - 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/plating, -/area/maintenance/security_starboard) -"adN" = ( -/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/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"adO" = ( -/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/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/machinery/newscaster/north, -/turf/simulated/floor/tiled, -/area/security/brig) -"adP" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"adQ" = ( -/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 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"adR" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"adS" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"adT" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"adU" = ( -/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/ramp/bottom{ - dir = 4 - }, -/area/security/brig) -"adV" = ( -/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/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/security/brig) -"adW" = ( -/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/security/brig) -"adY" = ( -/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/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/brig) -"adZ" = ( -/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 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aeb" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aec" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"aed" = ( -/obj/machinery/light_construct{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/security_starboard) -"aee" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aef" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/maintenance/security_starboard) -"aeg" = ( -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"aeh" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/obj/machinery/computer/guestpass{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"aei" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/constructable_frame/temp_deco, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"aej" = ( -/obj/item/stack/tile/floor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"aek" = ( -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 1 - }, -/obj/machinery/atm{ - pixel_y = 29 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"ael" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/maintenance/vault) -"aem" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"aen" = ( -/obj/item/material/shard, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"aeo" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"aep" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research - Entrance" - }, -/obj/structure/closet/firecloset, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"aeq" = ( -/obj/structure/closet/firecloset, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"aer" = ( -/obj/machinery/alarm/server/west, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/r_n_d/server/advanced/core, -/turf/simulated/floor/bluegrid/server, -/area/server) -"aes" = ( -/turf/simulated/floor/bluegrid/server, -/area/server) -"aet" = ( -/obj/item/material/shard{ - icon_state = "small" - }, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"aeu" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/folder/sec, -/turf/simulated/floor/tiled, -/area/security/brig) -"aev" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aew" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aex" = ( -/obj/machinery/door/airlock/security{ - name = "Interrogation Monitoring"; - req_access = list(1); - 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, -/area/security/brig) -"aey" = ( -/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/tiled, -/area/security/brig) -"aez" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/dark_blue, -/turf/simulated/floor/tiled, -/area/security/brig) -"aeA" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aeB" = ( -/obj/item/device/radio/intercom/north, -/turf/simulated/floor/tiled, -/area/janitor) -"aeC" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aeD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aeE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/security/brig) -"aeF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aeH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aeI" = ( -/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 = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aeJ" = ( -/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/security/brig) -"aeK" = ( -/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/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_access = list(63); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/security/brig) -"aeL" = ( -/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/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aeM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - 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 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aeN" = ( -/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/plating, -/area/maintenance/security_starboard) -"aeO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - 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 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aeP" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - 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/plating, -/area/maintenance/security_starboard) -"aeQ" = ( -/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/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/assembly/robotics/workshop) -"aeR" = ( -/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/carpet/rubber, -/area/assembly/robotics/workshop) -"aeS" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/bed/stool/chair/office/dark, -/turf/simulated/floor/carpet/rubber, -/area/server) -"aeT" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/obj/effect/landmark{ - name = "carpspawn" - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"aeU" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/random/loot, -/turf/simulated/floor/airless, -/area/mine/unexplored) -"aeV" = ( -/obj/structure/table/rack{ - dir = 1 - }, -/obj/item/clothing/suit/fire, -/obj/item/tank/oxygen, -/obj/item/clothing/mask/gas, -/obj/item/extinguisher, -/obj/item/clothing/head/hardhat/red, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aeW" = ( -/obj/structure/closet, -/obj/item/clothing/head/ushanka, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aeX" = ( -/obj/item/device/t_scanner, -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"aeY" = ( -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/pen, -/turf/simulated/floor/tiled, -/area/security/brig) -"aeZ" = ( -/obj/machinery/computer/security/telescreen{ - name = "Observation Screen"; - network = list("Interrogation"); - pixel_y = -32 - }, -/obj/structure/bed/stool/chair, -/turf/simulated/floor/tiled, -/area/security/brig) -"afa" = ( -/obj/structure/bed/stool/chair, -/obj/item/device/radio/intercom/interrogation/east, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"afb" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"afc" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/ringer/east{ - department = "Security"; - id = "brig_ringer"; - req_access = list(1) - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"afd" = ( -/turf/simulated/wall, -/area/security/main) -"afe" = ( -/turf/simulated/wall/r_wall, -/area/security/investigations_storage) -"afg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/carpet/rubber, -/area/server) -"afh" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 9 - }, -/obj/machinery/button/remote/airlock/screamer{ - channel = "Science"; - id = "server_door_lock"; - message = "The Server Room Airlock's ID lock toggle has been used."; - name = "Server Room Control"; - pixel_x = -24; - pixel_y = -24; - specialfunctions = 2 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"afi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "conpipe-c" - }, -/turf/simulated/floor/lino, -/area/security/forensics_office) -"afj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"afk" = ( -/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/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"afl" = ( -/obj/effect/decal/cleanable/flour, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"afm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access = list(47); - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"afn" = ( -/obj/structure/table/standard, -/obj/random/loot, -/turf/simulated/floor/tiled, -/area/maintenance/vault) -"afo" = ( -/turf/simulated/wall, -/area/maintenance/engineering) -"afp" = ( -/obj/machinery/door/airlock/external{ - welded = 1; - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/airless, -/area/maintenance/engineering) -"afq" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"afr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/brig) -"afs" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/brig) -"aft" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/brig) -"afu" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/closet/walllocker/emerglocker/west, -/turf/simulated/floor/tiled, -/area/security/brig) -"afv" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"afw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/security/main) -"afx" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/firealarm/north, -/obj/item/device/radio/sec, -/obj/item/device/radio/sec, -/obj/item/device/radio/sec, -/obj/item/device/radio/sec, -/obj/item/device/radio/sec, -/turf/simulated/floor/tiled, -/area/security/main) -"afy" = ( -/obj/structure/table/standard, -/obj/item/crowbar, -/obj/item/crowbar, -/obj/item/crowbar, -/obj/item/crowbar, -/obj/machinery/recharger/wallcharger{ - pixel_y = 22 - }, -/obj/machinery/recharger/wallcharger{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/crowbar, -/obj/item/crowbar, -/turf/simulated/floor/tiled, -/area/security/main) -"afz" = ( -/obj/structure/table/standard, -/obj/item/device/flashlight/maglight, -/obj/item/device/flashlight/maglight, -/obj/item/device/flashlight/maglight, -/obj/item/device/flashlight/maglight, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/item/device/flashlight/maglight, -/obj/item/device/flashlight/maglight, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/security/main) -"afA" = ( -/obj/machinery/vending/security, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/turf/simulated/floor/tiled, -/area/security/main) -"afB" = ( -/obj/structure/toilet, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/button/remote/airlock{ - id = "sec_unit_1"; - name = "Door Bolt Control"; - pixel_x = 5; - pixel_y = 25; - specialfunctions = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/main) -"afC" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/investigations_storage) -"afD" = ( -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/investigations_storage) -"afG" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - 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 - }, -/turf/simulated/floor/bluegrid/server, -/area/server) -"afH" = ( -/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/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/assembly/robotics/workshop) -"afI" = ( -/obj/structure/blocker, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"afJ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access = list(12); - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"afK" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/machinery/button/switch/windowtint{ - id = "Interro"; - pixel_x = -28; - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"afM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"afN" = ( -/obj/structure/grille, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "Interro" - }, -/obj/structure/window/reinforced/polarized{ - id = "Interro" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "Interro" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "Interro" - }, -/turf/simulated/floor/plating, -/area/security/brig) -"afO" = ( -/turf/simulated/wall, -/area/medical/exam_room) -"afP" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Equipment Storage"; - req_access = list(1); - dir = 4 - }, -/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/door/firedoor, -/turf/simulated/floor/tiled, -/area/security/main) -"afQ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/main) -"afR" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/main) -"afS" = ( -/turf/simulated/floor/tiled, -/area/security/main) -"afT" = ( -/obj/item/device/radio/intercom/east, -/obj/machinery/camera/network/security{ - c_tag = "Security - Equipment Storage"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/main) -"afU" = ( -/obj/machinery/door/airlock{ - id_tag = "sec_unit_1"; - name = "Unit 1"; - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/main) -"afV" = ( -/obj/machinery/door/airlock{ - id_tag = "sec_unit_2"; - name = "Unit 2"; - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/main) -"afW" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/security/forensics_morgue) -"afX" = ( -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/forensics_morgue) -"afY" = ( -/obj/machinery/bodyscanner{ - dir = 8 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/forensics_morgue) -"afZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"aga" = ( -/obj/machinery/computer/rdservercontrol, -/turf/simulated/floor/carpet/rubber, -/area/server) -"agb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"agc" = ( -/obj/item/stack/tile/floor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"agd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "6-9" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"age" = ( -/obj/machinery/computer/message_monitor, -/obj/structure/sign/nosmoking_1{ - pixel_y = -32 - }, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = -6 - }, -/turf/simulated/floor/carpet/rubber, -/area/server) -"agf" = ( -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"agg" = ( -/obj/structure/girder/displaced, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"agi" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/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/plating, -/area/maintenance/security_starboard) -"agj" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"agk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"agm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/security/main) -"agn" = ( -/obj/structure/table/standard, -/obj/item/device/hand_labeler, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/security/main) -"ago" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/security/main) -"agp" = ( -/obj/machinery/hologram/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/main) -"agq" = ( -/obj/machinery/disposal, -/obj/machinery/alarm/east, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/window/reinforced, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/main) -"agr" = ( -/turf/simulated/floor/tiled/freezer, -/area/security/main) -"ags" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/freezer, -/area/security/main) -"agt" = ( -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/freezer, -/area/security/main) -"agu" = ( -/obj/structure/table/standard, -/obj/item/storage/box/bodybags, -/obj/machinery/requests_console/west{ - department = "Autopsy"; - departmentType = 5 - }, -/obj/item/storage/box/bodybags, -/obj/item/device/healthanalyzer, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/forensics_morgue) -"agv" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/tray/autopsy, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/forensics_morgue) -"agx" = ( -/obj/effect/floor_decal/corner_wide/paleblue/full, -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"agy" = ( -/obj/structure/disposalpipe/segment, -/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/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"agz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"agA" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"agB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, -/obj/effect/floor_decal/corner_wide/mauve, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"agC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(58); - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"agD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/r_wall, -/area/maintenance/vault) -"agE" = ( -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"agF" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"agG" = ( -/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/sortjunction/flipped{ - dir = 8; - name = "Research and Development"; - sortType = "Research and Development" - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"agH" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"agI" = ( -/obj/structure/sign/vacuum{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"agJ" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"agK" = ( -/obj/item/stack/cable_coil, -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"agL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"agM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"agN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"agO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - 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/plating, -/area/maintenance/security_starboard) -"agQ" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"agR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"agS" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/main) -"agT" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 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{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/security/main) -"agU" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - 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/security/main) -"agV" = ( -/obj/effect/floor_decal/corner/dark_blue{ - 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, -/area/security/main) -"agW" = ( -/obj/machinery/door/airlock/security{ - name = "Shower"; - req_access = list(1); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/freezer, -/area/security/main) -"agX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/main) -"agY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/main) -"agZ" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/door/window/westleft, -/obj/structure/curtain/open/shower, -/obj/random/soap, -/turf/simulated/floor/tiled/freezer, -/area/security/main) -"aha" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/forensics_morgue) -"ahc" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"ahd" = ( -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"ahe" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/obj/machinery/shower{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"ahf" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"ahg" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/machinery/alarm/south, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"ahh" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research - Corridor Camera 2"; - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 8 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"ahi" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engine_waste) -"ahj" = ( -/turf/simulated/wall/r_wall, -/area/engineering/drone_fabrication) -"ahk" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/atmos_control) -"ahl" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/simulated/wall, -/area/maintenance/atmos_control) -"ahm" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ahn" = ( -/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/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"aho" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"ahp" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Atmospherics Connectors" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ahq" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ahr" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/meter{ - name = "Air to Pumps" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ahs" = ( -/obj/machinery/atmospherics/pipe/zpipe/down/cyan{ - dir = 8 - }, -/obj/structure/lattice/catwalk, -/obj/machinery/firealarm/east, -/turf/simulated/open, -/area/engineering/atmos) -"aht" = ( -/obj/effect/decal/cleanable/dirt, -/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" - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"ahu" = ( -/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/plating, -/area/maintenance/engineering) -"ahv" = ( -/obj/effect/decal/cleanable/dirt, -/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/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"ahw" = ( -/obj/effect/decal/cleanable/dirt, -/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/plating, -/area/maintenance/engineering) -"ahx" = ( -/obj/effect/decal/cleanable/dirt, -/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/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"ahy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/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/plating, -/area/maintenance/engineering) -"ahz" = ( -/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/plating, -/area/maintenance/engineering) -"ahA" = ( -/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/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"ahB" = ( -/obj/structure/cable{ - 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/plating, -/area/maintenance/security_starboard) -"ahC" = ( -/turf/simulated/wall/r_wall, -/area/security/brig) -"ahD" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/security/brig) -"ahE" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/security/main) -"ahF" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/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/tiled/dark, -/area/security/main) -"ahG" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/main) -"ahH" = ( -/obj/structure/closet/wardrobe/red, -/obj/structure/window/reinforced, -/obj/item/clothing/accessory/holster/waist, -/obj/item/clothing/accessory/holster/waist, -/obj/item/clothing/accessory/holster/waist, -/obj/item/clothing/accessory/holster/waist, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/low/east, -/turf/simulated/floor/tiled/dark, -/area/security/main) -"ahI" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 5 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/main) -"ahJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/freezer, -/area/security/main) -"ahK" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/towel, -/turf/simulated/floor/tiled/freezer, -/area/security/main) -"ahL" = ( -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/pen/red, -/obj/machinery/ringer/west{ - department = "Forensic Lab"; - id = "investigation_ringer"; - req_access = list(1) - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/forensics_morgue) -"ahM" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Forensics Autopsy Chamber"; - dir = 1 - }, -/obj/item/modular_computer/console/preset/security/investigations, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/forensics_morgue) -"ahN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/forensics_morgue) -"ahO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(4); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/security/forensics_office) -"ahP" = ( -/obj/structure/disposalpipe/segment, -/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/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"ahQ" = ( -/obj/structure/bed/stool/padded/red, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"ahR" = ( -/obj/structure/sink/kitchen{ - name = "sink"; - pixel_y = 26 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"ahS" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"ahT" = ( -/turf/simulated/wall/r_wall, -/area/rnd/strongroom) -"ahU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"ahW" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Engine Waste Handling" - }, -/obj/machinery/atmospherics/unary/freezer{ - icon_state = "freezer" - }, -/obj/effect/landmark/engine_setup/freezer, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"ahX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"ahY" = ( -/obj/machinery/computer/cryopod/robot{ - pixel_y = 30 - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"ahZ" = ( -/obj/machinery/drone_fabricator, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"aia" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"aib" = ( -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"aic" = ( -/obj/machinery/cryopod/robot, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"aid" = ( -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"aie" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "eng_fore_airlock"; - name = "interior access button"; - pixel_x = 24; - pixel_y = 24; - req_access = list(10,13) - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"aif" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"aig" = ( -/obj/machinery/alarm/north, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/atmos_control) -"aih" = ( -/obj/structure/closet, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"aii" = ( -/obj/structure/closet, -/obj/random/loot, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"aij" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/structure/closet/crate, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"aik" = ( -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"ail" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aim" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ain" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aio" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aip" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/meter{ - name = "Mix to Connectors" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aiq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"air" = ( -/obj/machinery/atmospherics/pipe/zpipe/down/yellow{ - dir = 8 - }, -/obj/structure/sign/drop{ - pixel_x = 32 - }, -/obj/structure/lattice/catwalk, -/turf/simulated/open, -/area/engineering/atmos) -"ais" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/dirt, -/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" - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"ait" = ( -/obj/structure/bed, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/security/brig) -"aiu" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/newscaster/east, -/turf/simulated/floor/plating, -/area/security/brig) -"aiv" = ( -/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{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aiw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aix" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/main) -"aiy" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/security/main) -"aiz" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/main) -"aiA" = ( -/obj/structure/closet/secure_closet/security_cadet, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/security/main) -"aiB" = ( -/obj/machinery/alarm/west, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/freezer, -/area/security/main) -"aiC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/security/main) -"aiF" = ( -/obj/structure/table/standard, -/obj/machinery/light/small, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/forensics_morgue) -"aiG" = ( -/obj/structure/table/standard, -/obj/item/storage/box/masks{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/box/gloves, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/forensics_morgue) -"aiI" = ( -/obj/structure/disposalpipe/up, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d1 = 16; - d2 = 0; - icon_state = "12-0" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"aiK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/arcade, -/turf/simulated/floor/wood, -/area/maintenance/vault) -"aiL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/maintenance/vault) -"aiM" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 2; - pixel_y = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"aiN" = ( -/turf/simulated/open/airless, -/area/mine/unexplored) -"aiO" = ( -/turf/simulated/wall/r_wall, -/area/security/nuke_storage) -"aiP" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"aiQ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"aiR" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/black, -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"aiS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"aiT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"aiU" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA" - }, -/turf/simulated/wall/r_wall, -/area/engineering/drone_fabrication) -"aiV" = ( -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"aiW" = ( -/obj/machinery/computer/drone_control, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"aiX" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"aiY" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"aiZ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"aja" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"ajb" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Atmospherics Maintenance Access"; - req_one_access = list(11,24); - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"ajc" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/landmark{ - name = "Revenant" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"ajd" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/power/apc/super/west, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aje" = ( -/obj/machinery/alarm/east, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"ajf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ajg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 5 - }, -/obj/machinery/light, -/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/engineering/atmos) -"ajh" = ( -/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/manifold4w/visible/red, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aji" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/meter{ - name = "Scrubbers to Filtering" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ajj" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ajk" = ( -/obj/machinery/atmospherics/pipe/zpipe/down/red{ - dir = 8 - }, -/obj/structure/lattice/catwalk, -/turf/simulated/open, -/area/engineering/atmos) -"ajl" = ( -/obj/effect/decal/cleanable/dirt, -/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" - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"ajm" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/hologram/holopad, -/obj/machinery/camera/network/prison{ - c_tag = "Security - Solitary Confinement 2"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/security/brig) -"ajn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/simulated/floor/plating, -/area/security/brig) -"ajo" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Solitary Confinement 2"; - req_access = list(2); - 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/plating, -/area/security/brig) -"ajp" = ( -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/security/main) -"ajq" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/main) -"ajr" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 5 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/freezer, -/area/security/main) -"ajs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/main) -"ajt" = ( -/obj/structure/closet/crate, -/obj/random/loot, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "cobweb1" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"ajy" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"ajz" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research - Break Room" - }, -/obj/machinery/firealarm/north, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"ajA" = ( -/obj/machinery/newscaster/north, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"ajB" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/glass/rag{ - pixel_y = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"ajC" = ( -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"ajD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"ajE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"ajF" = ( -/obj/machinery/power/apc/west, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Master Grid"; - name_tag = "Master" - }, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"ajG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"ajH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"ajI" = ( -/obj/structure/sink{ - pixel_y = 28 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"ajJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"ajK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"ajL" = ( -/turf/simulated/wall, -/area/engineering/storage_hard) -"ajM" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Atmospherics Maintenance Access"; - req_access = list(24); - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ajN" = ( -/obj/machinery/door/airlock/glass_atmos{ - name = "Port Station"; - req_access = list(24); - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ajO" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ajP" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ajQ" = ( -/turf/simulated/wall/r_wall, -/area/engineering/atmos/storage) -"ajR" = ( -/turf/simulated/wall/r_wall, -/area/security/armory) -"ajS" = ( -/obj/structure/table/standard, -/obj/item/paper, -/obj/item/pen, -/turf/simulated/floor/plating, -/area/security/brig) -"ajT" = ( -/obj/structure/bed/stool, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/security/brig) -"ajU" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/security/brig) -"ajV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/security/main) -"ajW" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Equipment Storage"; - req_access = list(1) - }, -/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, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/door/firedoor/multi_tile, -/turf/simulated/floor/tiled/dark, -/area/security/main) -"ajX" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/main) -"ajY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/security/main) -"ajZ" = ( -/obj/machinery/door/airlock/security{ - name = "Showers"; - req_access = list(63); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/freezer, -/area/security/main) -"aka" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/investigations_storage) -"akc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/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/vault) -"akd" = ( -/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/plating, -/area/maintenance/vault) -"ake" = ( -/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/plating, -/area/maintenance/vault) -"akf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"akg" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/obj/machinery/papershredder, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"akh" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/item/storage/slide_projector, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"aki" = ( -/obj/structure/safe/station, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"akj" = ( -/obj/machinery/alarm/north, -/obj/machinery/anti_bluespace, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"akk" = ( -/obj/machinery/alarm/west, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"akl" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"akm" = ( -/obj/machinery/atmospherics/binary/pump/high_power, -/obj/effect/landmark/engine_setup/pump_max, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"akn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"ako" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"akp" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Drone Fabrication/Engine Waste Handling"; - req_one_access = list(11,24); - dir = 4 - }, -/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/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"akq" = ( -/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/plating, -/area/engineering/drone_fabrication) -"akr" = ( -/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/plating, -/area/engineering/drone_fabrication) -"aks" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/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/engineering/drone_fabrication) -"akt" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"aku" = ( -/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 - }, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"akv" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Drone Fabrication"; - req_one_access = list(11,24); - dir = 4 - }, -/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/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"akw" = ( -/obj/structure/cable{ - 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/plating, -/area/maintenance/atmos_control) -"akx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/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/atmos_control) -"akz" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"akA" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/hydrogen, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"akB" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"akC" = ( -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Atmospherics Subgrid"; - name_tag = "Atmospherics Subgrid" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"akD" = ( -/obj/structure/table/standard, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"akE" = ( -/obj/structure/table/standard, -/obj/item/storage/bag/inflatable{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/bag/inflatable, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"akF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/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" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"akG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/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/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue, -/obj/effect/floor_decal/corner/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"akH" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"akI" = ( -/obj/structure/window/reinforced, -/turf/simulated/open, -/area/engineering/atmos/storage) -"akJ" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/machinery/requests_console/north{ - department = "Atmospherics"; - departmentType = 4; - name = "Atmos RC" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/pipedispenser, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"akK" = ( -/obj/machinery/newscaster/east, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/pipedispenser/disposal, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"akL" = ( -/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/plating, -/area/maintenance/engineering) -"akM" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/brig) -"akN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/security/security_office) -"akO" = ( -/obj/random/pottedplant, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/security/security_office) -"akP" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/security_office) -"akQ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/security_office) -"akR" = ( -/turf/simulated/floor/tiled, -/area/security/security_office) -"akS" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/security/security_office) -"akT" = ( -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled, -/area/security/security_office) -"akU" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/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/tiled, -/area/security/security_office) -"akV" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/security_office) -"akW" = ( -/obj/structure/morgue{ - dir = 1 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/investigations_storage) -"akZ" = ( -/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/plating, -/area/maintenance/vault) -"alc" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"ald" = ( -/obj/effect/landmark/start{ - name = "Xenobiologist" - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/bed/stool/chair/plastic, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"ale" = ( -/obj/item/device/radio/intercom/east, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = -10 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/obj/effect/landmark/start{ - name = "Lab Assistant" - }, -/obj/structure/bed/stool/chair/office/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"alf" = ( -/obj/structure/table/reinforced/steel, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/random/bad_ai{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/random/bad_ai, -/obj/random/bad_ai{ - pixel_x = 4; - pixel_y = -4 - }, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"alg" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"alh" = ( -/obj/machinery/porta_turret/stationary, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"ali" = ( -/obj/structure/table/reinforced/steel, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/hand_tele, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"alj" = ( -/obj/structure/table/reinforced/steel, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/random/rig_module{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/random/rig_module, -/obj/random/rig_module{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/machinery/camera/motion/security{ - c_tag = "Vault - Core"; - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"alk" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engine_room) -"all" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Engine Waste"; - req_access = null; - req_one_access = list(11,24) - }, -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 1 - }, -/obj/effect/landmark/engine_setup/pump_max, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"alm" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 5 - }, -/obj/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Engine Waste"; - req_access = null; - req_one_access = list(11,24) - }, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"aln" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Engine Waste"; - req_access = null; - req_one_access = list(11,24) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"alo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/power/apc/super/east, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine control room blast doors."; - id = "EngineEmitterPortWest"; - name = "Engine Room Blast Doors"; - pixel_y = -25; - req_access = list(11) - }, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"alp" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Research Hallway"; - req_access = list(47); - dir = 1 - }, -/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, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/effect/map_effect/door_helper/unres, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"alq" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(11); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/maintenance/atmos_control) -"alr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"als" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"alt" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Atmospherics"; - charge = 2000000; - input_attempt = 1; - output_attempt = 1 - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"alu" = ( -/obj/structure/fireaxecabinet/west, -/obj/structure/closet/crate/extinguisher_cartridges, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"alv" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"alw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"alx" = ( -/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/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"aly" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"alz" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/obj/machinery/vending/cola, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"alA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"alB" = ( -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"alC" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/dirt, -/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/plating, -/area/maintenance/engineering) -"alD" = ( -/obj/structure/closet/bombclosetsecurity, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"alE" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"alF" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Armory Fore"; - network = list("Security","Armory") - }, -/obj/structure/table/rack, -/obj/item/storage/lockbox/anti_augment, -/obj/item/storage/box/trackimp, -/obj/item/storage/box/chemimp{ - pixel_x = -4; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"alG" = ( -/obj/structure/table/rack, -/obj/item/device/magnetic_lock/security{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/item/device/magnetic_lock/security{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/item/device/magnetic_lock/security{ - pixel_x = -3; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"alH" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Riot Gear Storage"; - req_access = list(3) - }, -/obj/item/clothing/suit/armor/carrier/riot, -/obj/item/clothing/head/helmet/riot, -/obj/item/shield/riot, -/obj/item/clothing/accessory/holster/modular, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"alI" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"alJ" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = 22 - }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/machinery/camera/network/security{ - c_tag = "Armory - Riot Storage"; - network = list("Security","Armory") - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"alK" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "Weaponry (Laser Rifle)" - }, -/obj/item/gun/energy/rifle/laser, -/obj/item/gun/energy/rifle/laser, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"alL" = ( -/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/security/brig) -"alM" = ( -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 2; - name = "Security"; - sortType = "Security" - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"alN" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Office"; - req_access = list(63); - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/security_office) -"alO" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/security_office) -"alP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/security/security_office) -"alQ" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/effect/floor_decal/corner/dark_blue/full{ - 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/dark, -/area/security/security_office) -"alR" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/storage/box/fancy/cigarettes/dromedaryco, -/obj/item/clothing/glasses/sunglasses, -/turf/simulated/floor/tiled/dark, -/area/security/security_office) -"alS" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/folder/sec, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_office) -"alT" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_office) -"alU" = ( -/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/security/security_office) -"alV" = ( -/obj/machinery/vending/cigarette, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/security_office) -"ama" = ( -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 8 - }, -/obj/structure/closet/secure_closet/guncabinet/sci, -/turf/simulated/floor/tiled/dark, -/area/rnd/strongroom) -"amb" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/obj/machinery/power/apc/north{ - is_critical = 1 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/strongroom) -"amc" = ( -/obj/structure/bed/stool/padded/red, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"amd" = ( -/obj/machinery/alarm/south, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"ame" = ( -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 8 - }, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"amf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"amg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/reinforced/steel, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/random/vault_weapon, -/obj/item/rig/unathi, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"amh" = ( -/obj/structure/table/reinforced/steel, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/random/vault_rig{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/random/vault_rig, -/obj/random/vault_rig{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"ami" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"amj" = ( -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 1 - }, -/obj/machinery/mech_recharger, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/dark, -/area/rnd/strongroom) -"amk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"aml" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/dark, -/area/rnd/strongroom) -"amm" = ( -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for engine core."; - id = "EngineVent"; - name = "Engine Ventillatory Control"; - pixel_y = 24; - req_access = list(11) - }, -/obj/structure/window/basic, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"amn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "EngineEmitterPortWest"; - name = "Engine Waste Handling Access" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"amo" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "EngineEmitterPortWest"; - name = "Engine Waste Handling Access" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"amp" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"amq" = ( -/obj/structure/extinguisher_cabinet/north, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"amr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"ams" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/power/apc/west, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"amt" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"amu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"amv" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"amw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"amx" = ( -/obj/structure/disposalpipe/segment, -/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/power/apc/west, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/wood, -/area/lawoffice) -"amy" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/obj/item/device/multitool, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"amz" = ( -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"amA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"amB" = ( -/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/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"amC" = ( -/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/sortjunction/flipped{ - dir = 8; - name = "Research Conference Room"; - sortType = "Research Conference Room" - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"amD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"amE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"amF" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Maintenance"; - req_access = list(12,24); - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/storage) -"amG" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_research{ - name = "Conference Room and Lift"; - req_access = list(47); - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"amH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"amI" = ( -/obj/machinery/power/apc/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"amJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"amK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"amL" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/structure/closet/secure_closet/freezer/money, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"amM" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"amN" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"amO" = ( -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"amP" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"amQ" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "Weaponry (Ion Rifle)" - }, -/obj/item/gun/energy/rifle/ionrifle, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"amR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/wall, -/area/maintenance/security_starboard) -"amS" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"amT" = ( -/obj/structure/coatrack, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/security_office) -"amU" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced, -/obj/item/paper_bin, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_office) -"amV" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/folder/sec, -/obj/item/pen, -/turf/simulated/floor/tiled/dark, -/area/security/security_office) -"amW" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/device/radio/phone, -/turf/simulated/floor/tiled/dark, -/area/security/security_office) -"amX" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced, -/obj/item/paper_bin, -/turf/simulated/floor/tiled/dark, -/area/security/security_office) -"amY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/security_office) -"amZ" = ( -/obj/machinery/alarm/east, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/security_office) -"ana" = ( -/turf/simulated/wall, -/area/security/security_office) -"anb" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/tiled, -/area/security/training) -"anc" = ( -/obj/structure/stairs/north, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"and" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/simulated/floor/tiled, -/area/security/training) -"ane" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/structure/table/standard, -/obj/item/storage/box/cups, -/turf/simulated/floor/tiled, -/area/security/training) -"anf" = ( -/obj/effect/floor_decal/corner/dark_blue{ - 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" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/training) -"ang" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/closet/secure_closet/brig, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled, -/area/security/training) -"anh" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/closet/secure_closet/brig, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"ani" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/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/dark, -/area/rnd/strongroom) -"anj" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled/dark, -/area/rnd/strongroom) -"ank" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/strongroom) -"anl" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/rnd/strongroom) -"anm" = ( -/obj/effect/floor_decal/corner_wide/mauve/full, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"ann" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/synthesized_instrument/synthesizer/piano{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/bar) -"ano" = ( -/obj/machinery/chemical_dispenser/full{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"anp" = ( -/obj/machinery/door/firedoor{ - enable_smart_generation = 0 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"anq" = ( -/obj/structure/table/reinforced/steel, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/grenade/chem_grenade/large/phoroncleaner{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/grenade/chem_grenade/large/phoroncleaner{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/grenade/chem_grenade/large/phoroncleaner, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"anr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"ans" = ( -/obj/machinery/light/spot, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/bridge) -"ant" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/empty/phoron, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"anu" = ( -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"anv" = ( -/obj/structure/extinguisher_cabinet/north, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"anw" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"anx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"any" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"anz" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine control room blast doors."; - id = "EngineEmitterPortWest"; - name = "Engine Room Blast Doors"; - pixel_y = 25; - req_access = list(11) - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"anA" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engine_smes) -"anB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/corner_wide/mauve/full, -/obj/structure/extinguisher_cabinet/west, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"anC" = ( -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"anD" = ( -/obj/structure/closet/crate/solar, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"anE" = ( -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"anF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"anG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/shieldgen, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"anH" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"anI" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engine_monitoring) -"anJ" = ( -/turf/simulated/open, -/area/turbolift/engineering_station) -"anK" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Atmopsherics Storage"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"anL" = ( -/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/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"anM" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"anN" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"anO" = ( -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 2; - name = "Atmospherics"; - sortType = "Atmospherics" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"anP" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"anQ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access = list(12); - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"anR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"anS" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/armor/carrier/heavy/sec, -/obj/item/clothing/suit/armor/carrier/heavy/sec, -/obj/item/clothing/head/helmet/security/heavy, -/obj/item/clothing/head/helmet/security/heavy, -/obj/item/clothing/accessory/holster/modular, -/obj/item/clothing/accessory/holster/modular, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"anT" = ( -/obj/structure/table/rack, -/obj/item/reagent_containers/spray/pepper, -/obj/item/reagent_containers/spray/pepper, -/obj/item/reagent_containers/spray/pepper, -/obj/item/clothing/accessory/holster/modular, -/obj/item/clothing/accessory/holster/modular, -/obj/item/clothing/accessory/holster/modular, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"anU" = ( -/obj/structure/table/standard, -/obj/item/storage/box/evidence, -/obj/item/device/hand_labeler{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/structure/cable/green, -/obj/machinery/power/apc/low/south, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"anV" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Riot Gear Storage"; - req_access = list(3) - }, -/obj/item/clothing/suit/armor/carrier/riot, -/obj/item/clothing/head/helmet/riot, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/item/shield/riot, -/obj/item/clothing/accessory/holster/modular, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"anW" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"anX" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/structure/closet/secure_closet/guncabinet{ - name = "Weaponry (En. Carbine)" - }, -/obj/item/gun/energy/gun, -/obj/item/gun/energy/gun, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"anY" = ( -/obj/random/junk, -/obj/structure/reagent_dispensers/extinguisher, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"anZ" = ( -/obj/structure/bed/stool/chair, -/obj/item/device/radio/intercom/west, -/turf/simulated/floor/tiled, -/area/security/security_office) -"aoa" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/paper_bin, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_office) -"aob" = ( -/obj/item/handcuffs, -/obj/structure/table/standard, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_office) -"aoc" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/newspaper, -/obj/item/reagent_containers/food/drinks/coffee, -/turf/simulated/floor/tiled/dark, -/area/security/security_office) -"aod" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/paper_bin, -/turf/simulated/floor/tiled/dark, -/area/security/security_office) -"aoe" = ( -/obj/structure/noticeboard{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/security/security_office) -"aof" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"aog" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Second Floor Access"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"aoh" = ( -/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/security/training) -"aoi" = ( -/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, -/area/security/training) -"aoj" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/alarm/south, -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/tiled/dark, -/area/security/brig/processing) -"aok" = ( -/obj/machinery/requests_console/east{ - department = "Consular's Office"; - departmentType = 5 - }, -/obj/item/modular_computer/laptop/preset/representative{ - desc = "A portable computer belonging to the Consular's office."; - name = "consular's laptop" - }, -/obj/structure/table/wood, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Consular Office"; - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular) -"aol" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/strongroom) -"aom" = ( -/obj/structure/table/reinforced/steel, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/random/finances, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"aon" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"aoo" = ( -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"aop" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/security/nuke_storage) -"aoq" = ( -/turf/simulated/wall/r_wall, -/area/bridge) -"aor" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/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/bridge) -"aos" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/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" - }, -/turf/simulated/floor/plating, -/area/bridge) -"aot" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/bridge) -"aou" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/bridge) -"aov" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/bridge) -"aow" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/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/bridge) -"aox" = ( -/turf/simulated/mineral, -/area/mine/unexplored) -"aoy" = ( -/obj/machinery/atmospherics/omni/filter{ - tag_east = 4; - tag_north = 2; - tag_south = 1; - use_power = 0 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/landmark/engine_setup/filter, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aoz" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aoA" = ( -/obj/machinery/atmospherics/omni/filter{ - tag_north = 2; - tag_south = 1; - tag_west = 4; - use_power = 0 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/landmark/engine_setup/filter, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aoB" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aoC" = ( -/obj/machinery/power/breakerbox{ - RCon_tag = "Engineering Supermatter Grid Bypass" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_smes) -"aoD" = ( -/obj/machinery/alarm/north, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/landmark/engine_setup/smes, -/obj/machinery/power/smes/buildable/main_engine{ - RCon_tag = "Supermatter - Grid" - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"aoE" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/lights/mixed, -/obj/item/device/radio/intercom/north, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"aoF" = ( -/obj/structure/table/reinforced, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"aoG" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/device/multitool{ - pixel_x = 5 - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"aoH" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/simulated/wall/r_wall, -/area/engineering/engine_smes) -"aoI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/newscaster/east, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"aoJ" = ( -/obj/structure/closet/crate, -/obj/item/stack/material/phoron{ - amount = 25 - }, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"aoK" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"aoL" = ( -/obj/machinery/power/emitter, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"aoM" = ( -/obj/machinery/suit_cycler/engineering, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"aoN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/table/standard, -/obj/item/stack/material/steel{ - amount = 50; - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"aoO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"aoP" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"aoQ" = ( -/obj/structure/table/standard, -/obj/item/device/pipe_painter, -/obj/item/pipewrench, -/obj/item/pipewrench, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"aoR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/storage) -"aoS" = ( -/obj/machinery/requests_console/north{ - department = "Atmospherics"; - departmentType = 4; - name = "Atmos RC" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/closet/wardrobe/atmospherics_yellow, -/obj/item/clothing/shoes/workboots/toeless, -/obj/item/clothing/shoes/workboots/toeless, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"aoT" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm/north, -/obj/item/device/flashlight/heavy, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"aoU" = ( -/obj/structure/table/standard, -/obj/item/clothing/head/hardhat, -/obj/item/clothing/head/hardhat, -/obj/item/clothing/head/hardhat, -/obj/machinery/firealarm/north, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/item/device/hand_labeler, -/obj/effect/floor_decal/corner/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"aoV" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 4 - }, -/obj/item/device/radio/eng, -/obj/item/device/radio/eng, -/obj/item/device/radio/eng, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"aoW" = ( -/obj/structure/closet/walllocker/firecloset{ - pixel_x = -32 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"aoX" = ( -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"aoY" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"aoZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - 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/plating, -/area/maintenance/engineering) -"apa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - 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/structure/disposalpipe/segment, -/obj/structure/closet, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"apb" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/gas/half{ - pixel_x = -6; - pixel_y = -4 - }, -/obj/item/clothing/mask/gas/half{ - pixel_x = -6; - pixel_y = -4 - }, -/obj/item/clothing/mask/gas/half{ - pixel_x = -6; - pixel_y = -4 - }, -/obj/item/clothing/mask/gas/half{ - pixel_x = -6; - pixel_y = -4 - }, -/obj/item/clothing/mask/gas/alt{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas/alt{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas/alt, -/obj/item/clothing/mask/gas/alt, -/obj/item/clothing/mask/gas/alt{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/mask/gas/alt{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"apc" = ( -/obj/structure/table/rack, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/flashbangs{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"apd" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"ape" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Armory Section"; - req_access = list(3); - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"apf" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"apg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"aph" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "Weaponry (Shotgun)" - }, -/obj/item/gun/projectile/shotgun/pump, -/obj/item/gun/projectile/shotgun/pump, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"api" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/hologram/holopad, -/obj/machinery/camera/network/prison{ - c_tag = "Security - Solitary Confinement 1"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/security/brig) -"apj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/security/brig) -"apk" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Solitary Confinement 1"; - req_access = list(2); - 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/plating, -/area/security/brig) -"apl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"apm" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"apn" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/donut, -/obj/machinery/newscaster/west, -/turf/simulated/floor/tiled, -/area/security/security_office) -"apo" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_office) -"app" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/folder/sec, -/obj/item/pen, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_office) -"apq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/folder/sec, -/obj/item/pen, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_office) -"apr" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_office) -"aps" = ( -/obj/structure/table/standard, -/obj/item/material/ashtray, -/obj/item/stack/wrapping_paper, -/obj/item/stack/wrapping_paper, -/turf/simulated/floor/tiled, -/area/security/security_office) -"apt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/security/security_office) -"apu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/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/tiled, -/area/security/training) -"apv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"apw" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"apx" = ( -/obj/structure/extinguisher_cabinet/east, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/security/training) -"apy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2, -/obj/machinery/constructable_frame/temp_deco, -/turf/simulated/floor/wood, -/area/maintenance/vault) -"apz" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"apA" = ( -/obj/machinery/light, -/obj/machinery/power/apc/south, -/obj/structure/cable/green, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"apB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"apC" = ( -/obj/structure/table/reinforced/steel, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/random/finances, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"apE" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/machinery/alarm/west, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"apF" = ( -/obj/item/device/radio/intercom/west, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/papershredder, -/turf/simulated/floor/tiled, -/area/bridge) -"apG" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/bridge) -"apH" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/bed/stool/chair/padded/blue, -/turf/simulated/floor/tiled, -/area/bridge) -"apI" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/device/multitool, -/turf/simulated/floor/tiled, -/area/bridge) -"apJ" = ( -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Command Deck Fore" - }, -/obj/structure/fireaxecabinet/north, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/item/stack/packageWrap, -/obj/item/device/hand_labeler, -/obj/structure/table/reinforced, -/obj/item/stack/wrapping_paper, -/turf/simulated/floor/tiled, -/area/bridge) -"apK" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/regular, -/turf/simulated/floor/tiled, -/area/bridge) -"apL" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/bridge) -"apM" = ( -/obj/item/device/radio/intercom/east, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled, -/area/bridge) -"apN" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"apO" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"apP" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"apQ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"apR" = ( -/obj/machinery/button/remote/airlock{ - id = "engine_electrical_maintenance"; - name = "Door Bolt Control"; - pixel_x = -25; - pixel_y = 5; - req_access = list(10); - specialfunctions = 4 - }, -/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/tiled, -/area/engineering/engine_smes) -"apS" = ( -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"apT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"apU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"apV" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Camera Corridor 4"; - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"apW" = ( -/obj/structure/closet/crate, -/obj/item/circuitboard/smes, -/obj/item/circuitboard/smes, -/obj/item/smes_coil, -/obj/item/smes_coil, -/obj/item/smes_coil/super_capacity, -/obj/item/smes_coil/super_capacity, -/obj/item/smes_coil/super_io, -/obj/item/smes_coil/super_io, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"apX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"apY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/power/radial_floodlight, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"apZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/shieldwallgen, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"aqa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/shieldgen, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"aqb" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Atmospheric Voidsuits"; - req_access = list(24) - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/clothing/suit/space/void/atmos, -/obj/item/clothing/head/helmet/space/void/atmos, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"aqc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"aqd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"aqe" = ( -/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/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"aqf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"aqg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"aqh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"aqi" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Locker Room"; - req_access = list(24); - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"aqj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"aqk" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Atmospherics Locker Room"; - dir = 8 - }, -/obj/structure/closet/walllocker/medical{ - pixel_x = 32 - }, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/obj/item/reagent_containers/pill/kelotane, -/obj/item/reagent_containers/pill/perconol, -/obj/item/reagent_containers/pill/antitox, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"aql" = ( -/obj/structure/table/rack{ - dir = 1 - }, -/obj/item/clothing/suit/fire, -/obj/item/tank/oxygen, -/obj/item/clothing/mask/gas, -/obj/item/extinguisher, -/obj/item/clothing/head/hardhat/red, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"aqm" = ( -/obj/structure/closet, -/obj/item/clothing/head/ushanka, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"aqn" = ( -/obj/item/device/t_scanner, -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"aqo" = ( -/obj/effect/decal/cleanable/dirt, -/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/structure/disposalpipe/segment, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"aqp" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"aqq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"aqr" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"aqs" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Armory Section"; - req_access = list(3); - 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/dark, -/area/security/armory) -"aqt" = ( -/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 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"aqu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"aqv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"aqw" = ( -/obj/machinery/vending/coffee, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/security_office) -"aqx" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/security/security_office) -"aqy" = ( -/obj/machinery/requests_console/south{ - department = "Security"; - departmentType = 5 - }, -/turf/simulated/floor/tiled, -/area/security/security_office) -"aqz" = ( -/obj/machinery/camera/network/security{ - c_tag = "Security - Security Office"; - dir = 1; - network = list("Security","Armory") - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = -26 - }, -/obj/machinery/power/apc/low/south, -/turf/simulated/floor/tiled, -/area/security/security_office) -"aqA" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/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, -/area/security/security_office) -"aqB" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/security_office) -"aqC" = ( -/obj/random/pottedplant, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/security_office) -"aqD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/security/security_office) -"aqE" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"aqF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"aqG" = ( -/obj/effect/floor_decal/corner/dark_blue, -/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/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/security/training) -"aqH" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/item/device/radio/intercom/south, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled, -/area/security/training) -"aqI" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/table/standard, -/obj/item/roller, -/turf/simulated/floor/tiled, -/area/security/training) -"aqJ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/table/standard, -/obj/item/bodybag/cryobag, -/turf/simulated/floor/tiled, -/area/security/training) -"aqK" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/table/standard, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/regular, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/security/training) -"aqL" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/sign/drop{ - pixel_y = -32 - }, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"aqM" = ( -/obj/machinery/door/airlock/vault/bolted{ - req_access = list(20); - dir = 1 - }, -/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" - }, -/turf/simulated/floor/tiled, -/area/security/nuke_storage) -"aqN" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"aqO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge) -"aqP" = ( -/obj/item/modular_computer/console/preset/engineering, -/turf/simulated/floor/tiled, -/area/bridge) -"aqQ" = ( -/obj/machinery/chem_master{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"aqR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aqS" = ( -/turf/simulated/floor/tiled, -/area/bridge) -"aqT" = ( -/obj/item/device/radio/beacon, -/turf/simulated/floor/tiled, -/area/bridge) -"aqU" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aqV" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aqW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge) -"aqX" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/camera/network/reactor{ - c_tag = "Engineering - Engine Fore"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aqY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aqZ" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"ara" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"arb" = ( -/obj/machinery/door/airlock/hatch{ - icon_state = "door_locked"; - id_tag = "engine_electrical_maintenance"; - locked = 1; - name = "Electrical Maintenance"; - req_access = list(10); - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_smes) -"arc" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"ard" = ( -/obj/machinery/power/apc/south, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"are" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"arf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"arg" = ( -/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 = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"arh" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "SMES Access"; - req_access = list(11); - dir = 4 - }, -/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/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"ari" = ( -/obj/structure/cable{ - 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/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"arj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"ark" = ( -/obj/structure/closet/crate{ - name = "Camera Assembly Crate" - }, -/obj/item/camera_assembly, -/obj/item/camera_assembly, -/obj/item/camera_assembly, -/obj/item/camera_assembly, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"arl" = ( -/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/engineering/storage_hard) -"arm" = ( -/obj/machinery/light_switch{ - pixel_x = 6; - pixel_y = -28 - }, -/obj/machinery/shieldwallgen, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"arn" = ( -/obj/machinery/shieldgen, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"aro" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Atmospheric Voidsuits"; - req_access = list(24) - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/atmos, -/obj/item/clothing/head/helmet/space/void/atmos, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"arp" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"arq" = ( -/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/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/floor_decal/corner/dark_blue, -/obj/effect/floor_decal/corner/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"arr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"ars" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_blue, -/obj/effect/floor_decal/corner/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"art" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"aru" = ( -/obj/machinery/power/apc/super/south, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"arv" = ( -/obj/structure/closet/secure_closet/atmos_personal, -/obj/item/device/flashlight, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/device/gps/engineering, -/obj/item/storage/belt/utility, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"arw" = ( -/obj/structure/closet/secure_closet/atmos_personal, -/obj/item/device/flashlight, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/device/gps/engineering, -/obj/item/storage/belt/utility, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"arx" = ( -/obj/structure/closet/secure_closet/atmos_personal, -/obj/item/device/flashlight, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/device/gps/engineering, -/obj/item/storage/belt/utility, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"ary" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"arz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"arA" = ( -/obj/effect/decal/cleanable/dirt, -/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/structure/disposalpipe/segment, -/obj/structure/closet/crate, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"arB" = ( -/obj/machinery/deployable/barrier, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"arC" = ( -/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/sign/securearea{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"arD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"arE" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "Weaponry (.45 Pistol)" - }, -/obj/effect/decal/warning_stripes, -/obj/item/gun/projectile/sec, -/obj/item/gun/projectile/sec, -/obj/item/gun/projectile/sec, -/obj/item/gun/projectile/sec, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"arF" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "Ammunition (.45)" - }, -/obj/effect/decal/warning_stripes, -/obj/item/ammo_magazine/c45m/rubber, -/obj/item/ammo_magazine/c45m/rubber, -/obj/item/ammo_magazine/c45m/rubber, -/obj/item/ammo_magazine/c45m/rubber, -/obj/item/ammo_magazine/c45m/rubber, -/obj/item/ammo_magazine/c45m/rubber, -/obj/item/ammo_magazine/c45m/rubber, -/obj/item/ammo_magazine/c45m/rubber, -/obj/item/ammo_magazine/c45m/rubber, -/obj/item/ammo_magazine/c45m, -/obj/item/ammo_magazine/c45m, -/obj/item/ammo_magazine/c45m, -/obj/item/ammo_magazine/c45m, -/obj/item/ammo_magazine/c45m, -/obj/item/ammo_magazine/c45m, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"arG" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "Ammunition (shotgun less-than-lethal)" - }, -/obj/effect/decal/warning_stripes, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/storage/box/stunshells, -/obj/item/storage/box/flashshells{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/storage/box/beanbags{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/storage/box/beanbags{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/storage/box/trackingslugs, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"arH" = ( -/obj/structure/sign/securearea{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"arI" = ( -/obj/machinery/computer/sentencing/courtroom{ - pixel_y = 28 - }, -/obj/structure/table/standard, -/obj/item/paper/sentencing, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"arJ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/computer/sentencing/courtroom{ - pixel_y = 28 - }, -/obj/structure/table/standard, -/obj/item/folder/sec, -/obj/item/device/camera{ - pixel_x = 3; - pixel_y = 5 - }, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"arK" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/security/brig/processing) -"arL" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Processing 2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/brig/processing) -"arM" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/alarm/north, -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/tiled/dark, -/area/security/brig/processing) -"arN" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"arO" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"arP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/security/security_office) -"arQ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/security/security_office) -"arR" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Office"; - req_access = list(63); - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/security_office) -"arS" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/door/airlock/glass_security{ - name = "Training Wing"; - req_access = list(63); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"arT" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/security/training) -"arU" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/dark_blue{ - 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" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/glass_security{ - name = "Training Wing"; - req_access = list(63); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"arV" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/plating, -/area/security/training) -"arW" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/security/training) -"arX" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/security/training) -"arY" = ( -/obj/structure/disposalpipe/segment, -/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/ramp/bottom, -/area/maintenance/vault) -"arZ" = ( -/obj/structure/bed/stool/chair/office/bridge/generic, -/turf/simulated/floor/carpet/rubber, -/area/lawoffice/representative) -"asa" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/obj/structure/table/rack{ - dir = 8; - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/strongroom) -"asb" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/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 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/strongroom) -"asc" = ( -/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/door/firedoor, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/door/airlock/research{ - name = "Research storage"; - req_access = list(7); - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "RDStorage"; - name = "Storage lockdown"; - opacity = 0 - }, -/obj/machinery/button/remote/blast_door{ - id = "RDStorage"; - name = "Storage lockdown"; - pixel_x = 5; - pixel_y = 25; - req_access = list(30) - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/strongroom) -"asd" = ( -/obj/structure/table/rack, -/obj/item/storage/box/flashbangs{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/storage/box/teargas, -/obj/item/storage/box/firingpins, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"ase" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/nuke_storage) -"asf" = ( -/obj/machinery/porta_turret/stationary, -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"asg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge) -"ash" = ( -/obj/machinery/computer/security/engineering, -/turf/simulated/floor/tiled, -/area/bridge) -"asi" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"asj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"ask" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled, -/area/bridge) -"asl" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/bridge) -"asm" = ( -/obj/structure/window/reinforced, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/table/reinforced, -/obj/item/device/eftpos{ - eftpos_name = "Bridge EFTPOS scanner" - }, -/turf/simulated/floor/tiled, -/area/bridge) -"asn" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/structure/bed/stool/chair/office/bridge{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aso" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/item/modular_computer/console/preset/medical, -/turf/simulated/floor/tiled, -/area/bridge) -"asp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge) -"asq" = ( -/turf/simulated/wall/r_wall, -/area/mine/unexplored) -"asr" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"ass" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"ast" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"asu" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Supermatter - Containment"; - charge = 2000000; - input_attempt = 1; - input_level = 100000; - is_critical = 1; - output_attempt = 1; - output_level = 200000 - }, -/obj/structure/cable/orange{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"asv" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "SMES Access"; - req_access = list(11); - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"asw" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA" - }, -/turf/simulated/wall/r_wall, -/area/engineering/engine_monitoring) -"asx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"asy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"asz" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Hard Storage"; - req_access = list(11); - dir = 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/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"asA" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Hard Storage"; - req_access = list(11); - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"asB" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/storage) -"asC" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/storage) -"asD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/turf/simulated/wall, -/area/engineering/atmos/storage) -"asE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_atmos{ - name = "Atmospherics Storage"; - req_access = list(24); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"asF" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/engineering/atmos/storage) -"asG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_atmos{ - name = "Atmospherics Storage"; - req_access = list(24); - dir = 1 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"asH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/engineering/locker_room) -"asI" = ( -/turf/simulated/wall/r_wall, -/area/engineering/locker_room) -"asJ" = ( -/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 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"asK" = ( -/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/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"asL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/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/plating, -/area/maintenance/engineering) -"asM" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - 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, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"asN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/extinguisher_cabinet/east, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"asO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"asP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"asQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"asR" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"asS" = ( -/obj/machinery/newscaster/west, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"asT" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/security/brig/processing) -"asU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/security/brig/processing) -"asV" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/brig/processing) -"asW" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/security/brig/processing) -"asX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/random/pottedplant, -/obj/machinery/ringer/north{ - department = "Security"; - id = "brig_ringer"; - req_access = list(1) - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"asY" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/closet, -/turf/simulated/floor/tiled, -/area/security/brig) -"asZ" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Corridor Camera 8" - }, -/obj/machinery/alarm/north, -/obj/structure/closet, -/turf/simulated/floor/tiled, -/area/security/brig) -"ata" = ( -/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/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"atb" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"atc" = ( -/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/item/device/radio/intercom/north, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"atd" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"ate" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"atf" = ( -/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/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"atg" = ( -/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/security/brig) -"ath" = ( -/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 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"ati" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"atj" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/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/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"atk" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"atl" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/alarm/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"atm" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"atn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/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/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"ato" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/ringer/north{ - department = "Security"; - id = "brig_ringer"; - req_access = list(1) - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"atp" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"atq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"atr" = ( -/turf/simulated/wall, -/area/lawoffice) -"ats" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"att" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"atu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"atv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"atw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge) -"atx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/bridge) -"atz" = ( -/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, -/area/bridge) -"atA" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"atB" = ( -/obj/machinery/computer/message_monitor, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"atC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/item/modular_computer/console/preset/command, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"atD" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/machinery/computer/shuttle_control/multi/research, -/turf/simulated/floor/tiled, -/area/bridge) -"atE" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"atF" = ( -/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, -/area/bridge) -"atG" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/bridge) -"atH" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/modular_computer/console/preset/command, -/turf/simulated/floor/tiled, -/area/bridge) -"atI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge) -"atJ" = ( -/obj/structure/sign/securearea{ - name = "\improper DANGER: REACTOR VENT SHAFT" - }, -/turf/simulated/wall/r_wall, -/area/engineering/engine_waste) -"atK" = ( -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "SupermatterPort"; - name = "Reactor Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"atL" = ( -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "SupermatterPort"; - name = "Reactor Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"atM" = ( -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "SupermatterPort"; - name = "Reactor Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"atN" = ( -/obj/structure/sign/nosmoking_2, -/turf/simulated/wall/r_wall, -/area/engineering/engine_room) -"atO" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"atP" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"atQ" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"atR" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "EngineBlast"; - name = "Engine Monitoring Room Blast Doors"; - opacity = 0 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_monitoring) -"atS" = ( -/obj/machinery/computer/general_air_control/supermatter_core{ - input_tag = "cooling_in"; - name = "Engine Cooling Control"; - output_tag = "cooling_out"; - sensors = list("engine_sensor"="Engine Core") - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_monitoring) -"atT" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"atU" = ( -/obj/machinery/alarm/north, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"atV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"atW" = ( -/obj/structure/table/reinforced, -/obj/machinery/ringer/north{ - department = "Engineering"; - id = "engie_ringer"; - req_access = list(10) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"atX" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_monitoring) -"atY" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/alarm/south, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_airlock) -"atZ" = ( -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"aua" = ( -/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/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"aub" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"auc" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"aud" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Corridor Camera 2" - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"aue" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"auf" = ( -/turf/simulated/wall/r_wall, -/area/engineering/atmos/monitoring) -"aug" = ( -/obj/machinery/computer/security/engineering, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"auh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"aui" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/north, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Atmospherics Monitoring" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"auj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"auk" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/locker_room) -"aul" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"aum" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Atmospherics Entrance" - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/device/radio/intercom/north, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"aun" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"auo" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/locker_room) -"aup" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/device/flashlight, -/obj/item/device/gps/engineering, -/obj/item/storage/belt/utility, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"auq" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/device/flashlight, -/obj/item/device/gps/engineering, -/obj/machinery/alarm/north, -/obj/item/storage/belt/utility, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"aur" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/device/flashlight, -/obj/item/device/gps/engineering, -/obj/item/storage/belt/utility, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"aus" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/device/flashlight, -/obj/item/device/gps/engineering, -/obj/item/storage/belt/utility, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"aut" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"auu" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"auv" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/light, -/obj/machinery/camera/network/security{ - c_tag = "Security - Armory Aft"; - dir = 1; - network = list("Security","Armory") - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"auw" = ( -/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/security/armory) -"aux" = ( -/obj/machinery/anti_bluespace, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"auy" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"auz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"auA" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"auB" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/bed/stool/chair, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"auC" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"auD" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/bed/stool/chair, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"auE" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/security/brig/processing) -"auF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"auG" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"auH" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_security{ - name = "Processing Cubicle #2"; - req_access = list(2); - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/brig/processing) -"auI" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/tiled/dark, -/area/security/brig/processing) -"auJ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/security/brig/processing) -"auK" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/door/airlock/glass_security{ - name = "Processing Cubicle #2"; - req_access = list(2); - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/brig/processing) -"auL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"auM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/dark_blue, -/turf/simulated/floor/tiled, -/area/security/brig) -"auN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"auO" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"auP" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"auQ" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"auR" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/door_timer/cell_1{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"auS" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"auT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/brig) -"auU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/door_timer/cell_2{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"auV" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/tiled, -/area/security/brig) -"auW" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"auX" = ( -/obj/machinery/firealarm/east, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"auY" = ( -/obj/structure/cable{ - 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, -/turf/simulated/floor/carpet, -/area/lawoffice) -"auZ" = ( -/obj/structure/bed/stool/chair/padded/black{ - dir = 1; - icon_state = "chair_padding_over" - }, -/obj/machinery/light_switch{ - pixel_x = -20; - pixel_y = -14 - }, -/turf/simulated/floor/carpet/rubber, -/area/lawoffice/representative) -"ava" = ( -/obj/machinery/chem_master{ - dir = 8 - }, -/obj/effect/floor_decal/corner/orange{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"avb" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/newscaster/west, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"avc" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"avd" = ( -/turf/simulated/wall, -/area/hallway/primary/starboard) -"ave" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance{ - name = "Research Division Maintenance"; - req_access = list(47); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/research) -"avf" = ( -/turf/simulated/wall/r_wall, -/area/hallway/primary/starboard) -"avg" = ( -/obj/machinery/porta_turret/stationary, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"avh" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/bridge) -"avi" = ( -/turf/simulated/wall, -/area/bridge) -"avj" = ( -/obj/structure/table/reinforced, -/obj/machinery/alarm/west, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Command Deck Port"; - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/device/taperecorder, -/turf/simulated/floor/tiled, -/area/bridge) -"avk" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/table/reinforced, -/obj/machinery/case_button/shuttle, -/turf/simulated/floor/tiled, -/area/bridge) -"avl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/bed/stool/chair/office/bridge{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"avm" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/remote/blast_door{ - id = "bridge blast"; - name = "Bridge Lockdown"; - req_access = list(19) - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"avn" = ( -/obj/structure/table/reinforced, -/obj/item/device/radio/intercom/east, -/obj/item/device/paicard, -/obj/item/aicard, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Command Deck Starboard"; - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"avo" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/bridge) -"avp" = ( -/turf/simulated/open/airless, -/area/engineering/engine_waste) -"avq" = ( -/obj/machinery/door/blast/regular{ - id = "EngineVent"; - name = "Reactor Vent" - }, -/turf/simulated/floor/airless, -/area/engineering/engine_waste) -"avr" = ( -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"avs" = ( -/obj/machinery/camera/network/reactor{ - c_tag = "Engine Core West"; - dir = 4 - }, -/turf/simulated/floor/greengrid/nitrogen{ - icon = 'icons/turf/flooring/plating.dmi'; - icon_state = "plating" - }, -/area/engineering/engine_room) -"avt" = ( -/turf/simulated/floor/greengrid/nitrogen{ - icon = 'icons/turf/flooring/plating.dmi'; - icon_state = "plating" - }, -/area/engineering/engine_room) -"avu" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 4; - frequency = 1438; - id = "cooling_in"; - name = "Coolant Injector"; - pixel_y = 1; - power_rating = 30000; - use_power = 1; - volume_rate = 700 - }, -/turf/simulated/floor/greengrid/nitrogen{ - icon = 'icons/turf/flooring/plating.dmi'; - icon_state = "plating" - }, -/area/engineering/engine_room) -"avv" = ( -/obj/machinery/door/airlock/hatch{ - icon_state = "door_locked"; - id_tag = "engine_access_hatch"; - locked = 1; - req_access = list(11); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"avw" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"avx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"avy" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"avz" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "EngineBlast"; - name = "Engine Monitoring Room Blast Doors"; - opacity = 0 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_monitoring) -"avA" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/item/modular_computer/console/preset/engineering, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_monitoring) -"avB" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"avC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"avD" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"avE" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_monitoring) -"avF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"avG" = ( -/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, -/area/engineering/engineering_hallway_main) -"avH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"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/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"avJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"avK" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Hallway"; - req_one_access = list(10); - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"avL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/drop{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"avM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"avN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"avO" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/alarm/east, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"avP" = ( -/obj/machinery/computer/atmos_alert, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"avQ" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"avR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"avS" = ( -/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/cyan{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"avT" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/locker_room) -"avU" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"avV" = ( -/obj/machinery/meter, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"avW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"avX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Locker Room"; - req_access = list(11); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"avY" = ( -/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, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"avZ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"awa" = ( -/obj/structure/closet/walllocker/medical{ - pixel_x = 32 - }, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/item/reagent_containers/pill/kelotane, -/obj/item/reagent_containers/pill/perconol, -/obj/item/reagent_containers/pill/antitox, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"awb" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"awc" = ( -/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/security{ - name = "Armory"; - req_access = list(3); - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"awd" = ( -/obj/structure/table/standard, -/obj/machinery/recharger, -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/obj/machinery/camera/network/security{ - c_tag = "Armory - Emergency Entrance"; - dir = 4; - network = list("Security","Armory") - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"awe" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"awf" = ( -/obj/machinery/flasher/portable, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"awg" = ( -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"awh" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/door/window/brigdoor{ - name = "Secure Holding Cell"; - req_access = list(2) - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"awi" = ( -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/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, -/area/security/brig/processing) -"awj" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/security/brig/processing) -"awk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"awl" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Processing Corridor"; - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"awm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/security/brig) -"awn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"awo" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/turf/simulated/floor/tiled, -/area/security/brig) -"awp" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"awq" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/brig) -"awr" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/security/prison) -"aws" = ( -/turf/simulated/wall, -/area/security/prison) -"awt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - id_tag = "prisonexit"; - name = "Brig Exit"; - req_access = list(2); - dir = 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, -/turf/simulated/floor/tiled, -/area/security/prison) -"awu" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Brig Lockdown"; - name = "Brig Lockdown Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/prison) -"awv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/northright{ - id = "Cell 1"; - name = "Cell 1"; - req_access = list(2) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Brig Lockdown"; - name = "Brig Lockdown Door"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aww" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/northright{ - id = "Cell 2"; - name = "Cell 2"; - req_access = list(2) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Brig Lockdown"; - name = "Brig Lockdown Door"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"awx" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/ramp/bottom, -/area/security/brig) -"awy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/security/brig) -"awz" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"awA" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/security/brig) -"awB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"awC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"awD" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/wood, -/area/lawoffice/representative) -"awE" = ( -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/pen{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/structure/table/wood{ - table_reinf = "wood" - }, -/turf/simulated/floor/carpet/rubber, -/area/lawoffice/representative) -"awF" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/lawoffice/representative) -"awG" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/disposal/small/north, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/lawoffice/representative) -"awH" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/coatrack, -/turf/simulated/floor/wood, -/area/lawoffice/representative) -"awI" = ( -/obj/item/device/radio/intercom/east{ - pixel_y = 16 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/recharger{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/table/wood, -/turf/simulated/floor/wood, -/area/lawoffice/representative) -"awJ" = ( -/obj/structure/table/wood, -/obj/item/stamp{ - name = "consular stamp"; - pixel_x = -4 - }, -/obj/item/stamp/denied{ - pixel_x = 5; - pixel_y = 6 - }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular) -"awK" = ( -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"awL" = ( -/obj/structure/extinguisher_cabinet/north, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"awM" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/item/modular_computer/console/preset/security, -/turf/simulated/floor/tiled, -/area/bridge) -"awN" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"awO" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/sign/flag/scc, -/turf/simulated/floor/tiled, -/area/bridge) -"awP" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"awQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/bridge) -"awR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"awS" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/sign/flag/scc, -/turf/simulated/floor/tiled, -/area/bridge) -"awT" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"awU" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/structure/table/reinforced, -/obj/item/paper_scanner, -/turf/simulated/floor/tiled, -/area/bridge) -"awV" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/open/airless, -/area/engineering/engine_waste) -"awW" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "EngineVent"; - name = "Reactor Vent" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/engineering/engine_room) -"awX" = ( -/turf/simulated/floor/greengrid/nitrogen, -/area/engineering/engine_room) -"awY" = ( -/obj/machinery/mass_driver{ - dir = 8; - id = "enginecore" - }, -/obj/machinery/power/supermatter{ - }, -/obj/effect/landmark/engine_setup/core, -/turf/simulated/floor/greengrid/nitrogen, -/area/engineering/engine_room) -"awZ" = ( -/obj/machinery/air_sensor{ - frequency = 1438; - id_tag = "engine_sensor"; - output = 63 - }, -/turf/simulated/floor/greengrid/nitrogen{ - icon = 'icons/turf/flooring/plating.dmi'; - icon_state = "plating" - }, -/area/engineering/engine_room) -"axa" = ( -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "SupermatterPort"; - name = "Reactor Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"axb" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"axc" = ( -/obj/machinery/power/emitter{ - anchored = 1; - dir = 8; - id = "EngineEmitter"; - state = 2 - }, -/obj/structure/cable/orange{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"axd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"axe" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"axf" = ( -/obj/structure/cable/orange{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/camera/network/reactor{ - c_tag = "Engineering - Engine Starboard"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"axg" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "EngineBlast"; - name = "Engine Monitoring Room Blast Doors"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_monitoring) -"axh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Engine Monitoring"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/item/modular_computer/console/preset/engineering, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_monitoring) -"axi" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine control room blast doors."; - id = "EngineBlast"; - name = "Engine Monitoring Room Blast Doors"; - pixel_y = -3; - req_access = list(10) - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine charging port."; - id = "SupermatterPort"; - name = "Reactor Blast Doors"; - pixel_x = -6; - pixel_y = 7; - req_access = list(10) - }, -/obj/machinery/button/remote/emitter{ - desc = "A remote control-switch for the engine emitter."; - id = "EngineEmitter"; - name = "Engine Emitter"; - pixel_x = 6; - pixel_y = 7; - req_access = list(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 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"axj" = ( -/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 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"axk" = ( -/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 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"axl" = ( -/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/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"axm" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Engine Monitoring Room"; - req_access = list(11); - dir = 4 - }, -/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 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"axn" = ( -/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/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"axo" = ( -/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/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"axp" = ( -/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, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"axq" = ( -/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 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"axr" = ( -/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/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"axs" = ( -/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/machinery/door/airlock/glass_engineering{ - name = "Engineering Hallway"; - req_one_access = list(10); - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"axt" = ( -/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/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"axu" = ( -/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/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"axv" = ( -/obj/structure/table/rack, -/obj/item/pickaxe{ - pixel_x = 8 - }, -/obj/item/pickaxe, -/obj/item/pickaxe{ - pixel_x = -8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Corridor Camera 1"; - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/power/apc/high/east, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"axw" = ( -/obj/item/modular_computer/console/preset/engineering, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"axx" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"axy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"axz" = ( -/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/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"axA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/locker_room) -"axB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"axC" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"axD" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"axE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/locker_room) -"axF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"axG" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"axH" = ( -/obj/structure/table/standard, -/obj/item/clothing/head/hardhat, -/obj/item/clothing/head/hardhat, -/obj/item/device/hand_labeler, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"axI" = ( -/obj/structure/closet/radiation, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"axJ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"axK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"axL" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"axM" = ( -/obj/machinery/alarm/north, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"axN" = ( -/turf/simulated/wall, -/area/security/armory) -"axO" = ( -/obj/item/modular_computer/console/preset/security/armory, -/obj/machinery/requests_console/north{ - department = "Security"; - departmentType = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"axP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Armory Entrance" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/storage/box/firingpins, -/obj/structure/table/rack, -/obj/item/storage/box/securitypins, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"axQ" = ( -/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/machinery/light_switch{ - pixel_x = 23 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"axR" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Ablative Armor Storage"; - req_access = list(3) - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/item/clothing/suit/armor/carrier/ablative, -/obj/item/clothing/suit/armor/carrier/ablative, -/obj/item/clothing/head/helmet/ablative, -/obj/item/clothing/head/helmet/ablative, -/obj/item/clothing/accessory/holster/modular, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"axS" = ( -/obj/machinery/flasher/portable, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"axT" = ( -/obj/machinery/alarm/west, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Holding Cell"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"axU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"axV" = ( -/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 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"axW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Security Processing"; - req_access = list(2); - 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, -/area/security/brig/processing) -"axX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"axY" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"axZ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_security{ - name = "Processing Cubicle #1"; - req_access = list(2); - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/brig/processing) -"aya" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/device/radio/intercom/north, -/obj/machinery/camera/network/security{ - c_tag = "Security - Processing 1" - }, -/turf/simulated/floor/tiled/dark, -/area/security/brig/processing) -"ayb" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/brig/processing) -"ayc" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/door/airlock/glass_security{ - name = "Processing Cubicle #1"; - req_access = list(2); - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/brig/processing) -"ayd" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/southright{ - name = "Brig N2O Access"; - req_access = list(3) - }, -/obj/machinery/portable_atmospherics/canister/sleeping_agent, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/brig) -"aye" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/security/prison) -"ayf" = ( -/obj/machinery/flasher{ - id = "permentryflash"; - name = "Floor mounted flash" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/walllocker/emerglocker/north, -/turf/simulated/floor/tiled, -/area/security/prison) -"ayg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green, -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"ayh" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"ayi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"ayj" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/sign/nosmoking_1{ - pixel_x = 32 - }, -/obj/machinery/camera/network/prison{ - c_tag = "Security - Brig Cell 1"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"ayk" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/sign/nosmoking_1{ - pixel_x = 32 - }, -/obj/machinery/camera/network/prison{ - c_tag = "Security - Brig Cell 2"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"ayl" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/reinforced, -/area/security/brig) -"aym" = ( -/turf/simulated/floor/reinforced, -/area/security/brig) -"ayn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/security/brig) -"ayo" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/gloves/latex/nitrile/tajara, -/obj/item/clothing/gloves/latex/nitrile/tajara, -/obj/item/clothing/gloves/latex/nitrile/unathi, -/obj/item/clothing/gloves/latex/nitrile/unathi, -/obj/item/storage/box/gloves, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"ayp" = ( -/obj/structure/extinguisher_cabinet/west{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"ayq" = ( -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 24 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"ayr" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/cable/green, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "rep_inner" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "rep_inner" - }, -/obj/structure/window/reinforced/polarized{ - id = "rep_inner" - }, -/turf/simulated/floor/plating, -/area/lawoffice/representative) -"ays" = ( -/obj/machinery/chemical_dispenser{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"ayt" = ( -/obj/structure/table/wood, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/ringer/east{ - department = "Consular"; - id = "Consular" - }, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/pen{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/carpet, -/area/lawoffice/consular) -"ayu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"ayv" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/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_switch{ - pixel_x = 25; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/strongroom) -"ayw" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/requests_console/west{ - department = "Telescience Lab"; - departmentType = 2; - name = "Telescience Requests Console" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"ayx" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/camera/motion/security{ - c_tag = "Vault - Interior"; - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"ayy" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"ayz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/security/nuke_storage) -"ayA" = ( -/obj/machinery/light/small/emergency, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"ayB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled, -/area/security/nuke_storage) -"ayC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/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/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge) -"ayD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/ringer/east{ - department = "R&D Laboratory"; - id = "sci_ringer"; - req_access = list(7) - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"ayE" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/bed/stool/chair/office/bridge{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"ayF" = ( -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 8 - }, -/area/bridge) -"ayG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/hologram/holopad/long_range, -/turf/simulated/floor/tiled, -/area/bridge) -"ayH" = ( -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/bridge) -"ayI" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/structure/bed/stool/chair/office/bridge{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"ayJ" = ( -/obj/machinery/computer/robotics, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"ayK" = ( -/obj/machinery/atmospherics/unary/vent_pump/engine{ - dir = 4; - external_pressure_bound = 100; - external_pressure_bound_default = 0; - frequency = 1438; - icon_state = "map_vent_in"; - id_tag = "cooling_out"; - initialize_directions = 1; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/greengrid/nitrogen{ - icon = 'icons/turf/flooring/plating.dmi'; - icon_state = "plating" - }, -/area/engineering/engine_room) -"ayL" = ( -/obj/machinery/door/airlock/hatch{ - icon_state = "door_locked"; - id_tag = "engine_access_hatch"; - locked = 1; - req_access = list(11); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"ayM" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"ayN" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"ayO" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Supermatter Output"; - name_tag = "SM Output" - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"ayP" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Supermatter Containment"; - name_tag = "SM Containment" - }, -/obj/structure/cable/orange, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"ayQ" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"ayR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"ayS" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"ayT" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_monitoring) -"ayU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Corridor Camera 3"; - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"ayV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"ayW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"ayX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"ayY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"ayZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Hallway"; - req_one_access = list(10); - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"aza" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"azb" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"azc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"azd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/yellow, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"aze" = ( -/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/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"azf" = ( -/obj/item/shovel{ - pixel_x = 8 - }, -/obj/item/shovel{ - pixel_x = -8 - }, -/obj/item/shovel, -/obj/structure/table/rack, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"azg" = ( -/obj/machinery/computer/general_air_control{ - frequency = 1441; - name = "Tank Monitor"; - sensors = list("n2_sensor"="Nitrogen","o2_sensor"="Oxygen","co2_sensor"="Carbon Dioxide","ph_sensor"="Phoron","air_sensor"="Air Tank") - }, -/obj/machinery/requests_console/west{ - department = "Atmospherics"; - departmentType = 1; - name = "Atmos RC" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"azh" = ( -/obj/machinery/computer/general_air_control{ - frequency = 1441; - level = 3; - name = "Distribution and Waste Monitor"; - sensors = list("mair_in_meter"="Mixed Air In","air_sensor"="Mixed Air Supply Tank","mair_out_meter"="Mixed Air Out","dloop_atm_meter"="Distribution Line","wloop_atm_meter"="Waste Line") - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"azi" = ( -/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/effect/floor_decal/corner/dark_blue, -/obj/effect/floor_decal/corner/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"azj" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/engineering/locker_room) -"azk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"azl" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"azm" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/substation/engineering) -"azn" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/radiation, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"azo" = ( -/obj/structure/reagent_dispensers/extinguisher, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"azp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"azq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"azr" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"azs" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"azt" = ( -/obj/machinery/door/window/brigdoor/southright{ - dir = 4; - name = "Distribution Post"; - req_access = list(3) - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"azu" = ( -/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/alarm/east, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"azv" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Bulletproof Armor Storage"; - req_access = list(3) - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/clothing/suit/armor/carrier/ballistic, -/obj/item/clothing/suit/armor/carrier/ballistic, -/obj/item/clothing/head/helmet/ballistic, -/obj/item/clothing/head/helmet/ballistic, -/obj/item/clothing/accessory/holster/modular, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"azw" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"azx" = ( -/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/security/brig/processing) -"azy" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/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" - }, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"azz" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"azA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/brig/processing) -"azB" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/security/brig/processing) -"azC" = ( -/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/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"azD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/turf/simulated/floor/tiled, -/area/security/brig) -"azE" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/turf/simulated/floor/tiled, -/area/security/brig) -"azF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/security/brig) -"azG" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/security/prison) -"azH" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled, -/area/security/prison) -"azI" = ( -/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/security/prison) -"azJ" = ( -/obj/structure/toilet{ - dir = 4; - pixel_y = 5 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"azK" = ( -/turf/simulated/floor/tiled, -/area/security/prison) -"azL" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 1"; - name = "Cell 1 Locker" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"azM" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 2"; - name = "Cell 2 Locker" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"azN" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/greengrid, -/area/security/brig) -"azO" = ( -/obj/machinery/computer/area_atmos, -/turf/simulated/floor/reinforced, -/area/security/brig) -"azP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/security/brig) -"azQ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/alarm/east, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"azR" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"azS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/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/white, -/area/crew_quarters/sleep/research) -"azT" = ( -/obj/item/storage/box/drinkingglasses{ - pixel_x = 15; - pixel_y = 12 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_y = 17 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = -7; - pixel_y = 17 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_y = 13 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = -7; - pixel_y = 13 - }, -/obj/item/storage/box/fancy/cookiesnack{ - pixel_x = 10 - }, -/obj/structure/table/wood, -/obj/item/reagent_containers/glass/beaker/pitcher{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/simulated/floor/carpet, -/area/lawoffice) -"azU" = ( -/obj/item/device/radio/intercom/west{ - pixel_y = -1 - }, -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/button/remote/blast_door{ - id = "chamber_b"; - name = "Chamber B Lockdown"; - pixel_x = -24; - pixel_y = 12; - req_access = list(7) - }, -/obj/effect/floor_decal/corner_wide/mauve/full, -/obj/item/paper_scanner, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"azV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/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/white, -/area/crew_quarters/sleep/research) -"azW" = ( -/obj/machinery/computer/telescience{ - starting_crystals = 4 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"azX" = ( -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"azY" = ( -/obj/structure/table/reinforced, -/obj/item/device/gps/science, -/obj/item/device/gps/science, -/obj/item/device/gps/science, -/obj/item/device/gps/science, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"azZ" = ( -/obj/random/junk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"aAa" = ( -/obj/item/modular_computer/console/preset/security/armory, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aAb" = ( -/obj/effect/floor_decal/corner/dark_blue/full, -/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/bridge) -"aAc" = ( -/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/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aAd" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 6; - pixel_y = -32 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 8 - }, -/area/bridge) -"aAe" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/bridge) -"aAf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/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/tiled, -/area/bridge) -"aAg" = ( -/obj/machinery/requests_console/south{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aAh" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/bridge) -"aAi" = ( -/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/sign/nosmoking_2{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aAj" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aAk" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/item/modular_computer/console/preset/research, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aAl" = ( -/obj/structure/sign/vacuum, -/turf/simulated/wall/r_wall, -/area/engineering/engine_waste) -"aAm" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine charging port."; - id = "SupermatterPort"; - name = "Reactor Blast Doors"; - pixel_x = -25; - pixel_y = -5; - req_access = list(10) - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine control room blast doors."; - id = "EngineBlast"; - name = "Engine Monitoring Room Blast Doors"; - pixel_x = -25; - pixel_y = 5; - req_access = list(10) - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aAn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aAo" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aAp" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "EngineBlast"; - name = "Engine Monitoring Room Blast Doors"; - opacity = 0 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_monitoring) -"aAq" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/computer/security/engineering, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_monitoring) -"aAr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"aAs" = ( -/obj/item/device/radio/intercom/south{ - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"aAt" = ( -/obj/machinery/newscaster/south{ - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"aAu" = ( -/obj/structure/closet/radiation, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"aAv" = ( -/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/sign/nosmoking_2{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"aAw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/storage_eva) -"aAx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering EVA Storage"; - req_one_access = list(11,24); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aAy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/storage_eva) -"aAz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/storage_eva) -"aAA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/storage_eva) -"aAB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/engineering/engine_monitoring) -"aAC" = ( -/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, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Hallway"; - req_one_access = list(10); - dir = 1 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"aAD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/engineering/engine_monitoring) -"aAE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/monitoring) -"aAF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/monitoring) -"aAG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_atmos{ - name = "Atmospherics Monitoring Room"; - req_access = list(24); - dir = 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/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"aAH" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/engineering/locker_room) -"aAI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Hallway"; - req_one_access = list(10); - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"aAJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/locker_room) -"aAK" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/locker_room) -"aAL" = ( -/turf/simulated/floor/plating, -/area/maintenance/substation/engineering) -"aAM" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Engineering Subgrid"; - name_tag = "Engineering Subgrid" - }, -/obj/machinery/alarm/north, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Engineering Substation" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/engineering) -"aAN" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Engineering Main" - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/engineering) -"aAO" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Engineering Main Substation Bypass" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/engineering) -"aAP" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/simulated/wall/r_wall, -/area/maintenance/substation/engineering) -"aAQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"aAR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"aAS" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/bed/stool/chair/office/dark, -/obj/machinery/recharger/wallcharger{ - pixel_x = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"aAT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/table/reinforced/steel, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"aAU" = ( -/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/machinery/firealarm/east, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"aAV" = ( -/obj/structure/coatrack{ - pixel_x = -9 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"aAW" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"aAX" = ( -/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/security/brig/processing) -"aAY" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"aAZ" = ( -/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/machinery/alarm/south, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"aBa" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/item/modular_computer/console/preset/security, -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"aBb" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/security/brig/processing) -"aBc" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/machinery/alarm/south, -/obj/structure/table/standard, -/obj/machinery/requests_console/east{ - department = "Security"; - departmentType = 5 - }, -/obj/item/paper_bin{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/item/pen, -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"aBd" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/alarm/east, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aBe" = ( -/turf/simulated/wall, -/area/security/warden) -"aBf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Warden's Office"; - req_access = list(3); - dir = 1 - }, -/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/security/warden) -"aBg" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/security/warden) -"aBh" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced/steel, -/obj/item/paper_bin{ - pixel_x = 5 - }, -/obj/item/pen, -/obj/machinery/door/window/brigdoor/southright{ - name = "Warden's Desk"; - req_access = list(3) - }, -/obj/machinery/door/window/brigdoor/northleft{ - name = "Warden's Desk" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/security/warden) -"aBi" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall, -/area/security/warden) -"aBj" = ( -/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/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Brig Lockdown"; - name = "Brig Lockdown Door"; - opacity = 0 - }, -/obj/machinery/door/airlock/glass_security{ - id_tag = "prisonentry"; - name = "Brig Entry"; - req_access = list(2); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aBk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/prison) -"aBl" = ( -/obj/machinery/door/blast/regular{ - id = "Cell 1"; - name = "Cell Door" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/security/prison) -"aBm" = ( -/obj/machinery/door/blast/regular{ - id = "Cell 2"; - name = "Cell Door" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/security/prison) -"aBn" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/door_timer/cell_3{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aBo" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aBp" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - 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 - }, -/turf/simulated/floor/carpet, -/area/lawoffice) -"aBq" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "consular" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "consular" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "consular" - }, -/turf/simulated/floor/plating, -/area/lawoffice/consular) -"aBr" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/disposal/small/east, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -20; - pixel_y = 21 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/lawoffice/consular) -"aBs" = ( -/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/effect/landmark/start{ - name = "Roboticist" - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/bed/stool/chair/plastic{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"aBt" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Roboticist" - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/bed/stool/chair/plastic{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"aBu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"aBv" = ( -/turf/simulated/wall/r_wall, -/area/teleporter) -"aBw" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(17); - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/teleporter) -"aBx" = ( -/turf/simulated/wall, -/area/teleporter) -"aBy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/bridge) -"aBz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/bridge) -"aBA" = ( -/obj/machinery/door/airlock/glass_command{ - id_tag = ""; - name = "Bridge"; - req_access = list(19); - dir = 1 - }, -/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/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aBB" = ( -/turf/simulated/wall, -/area/crew_quarters/captain) -"aBC" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/captain) -"aBD" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"aBE" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"aBF" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"aBG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aBH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aBI" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aBJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aBK" = ( -/obj/structure/cable/orange, -/obj/machinery/power/apc/super/critical/east, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aBL" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engine_airlock) -"aBM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"aBN" = ( -/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/engineering/engineering_hallway_main) -"aBO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/storage_eva) -"aBP" = ( -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/rods, -/obj/structure/table/rack, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aBQ" = ( -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aBR" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/engineering_welding, -/obj/item/clothing/glasses/welding, -/obj/item/clothing/glasses/welding, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aBS" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/item/device/debugger, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aBT" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger{ - pixel_y = 4 - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aBU" = ( -/obj/machinery/vending/engivend, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aBV" = ( -/obj/machinery/vending/tool{ - random_itemcount = 0 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aBW" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Sublevel EVA" - }, -/obj/random/pottedplant, -/obj/structure/extinguisher_cabinet/west, -/obj/effect/floor_decal/corner/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aBX" = ( -/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/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aBY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aBZ" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aCa" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aCb" = ( -/obj/item/toy/figure/journalist, -/obj/random/pottedplant, -/obj/machinery/alarm/east, -/turf/simulated/floor/wood, -/area/journalistoffice) -"aCc" = ( -/obj/machinery/papershredder, -/obj/effect/floor_decal/corner/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aCd" = ( -/obj/machinery/vending/snack, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aCe" = ( -/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/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aCf" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - id = "ExamR2" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "ExamR2" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/exam_room2) -"aCg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aCh" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Substation"; - req_one_access = list(11,24); - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/maintenance/substation/engineering) -"aCi" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/engineering) -"aCj" = ( -/obj/structure/cable/green, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/power/apc/south, -/turf/simulated/floor/plating, -/area/maintenance/substation/engineering) -"aCk" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/engineering) -"aCl" = ( -/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/substation/engineering) -"aCm" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Substation"; - req_one_access = list(11,24); - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/substation/engineering) -"aCn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/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" - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"aCo" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced/steel, -/obj/machinery/door/window/brigdoor/southright{ - name = "Armory Distribution"; - req_access = list(2) - }, -/obj/machinery/door/window/brigdoor/southright{ - dir = 1; - name = "Armory Distribution"; - req_access = list(3) - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"aCp" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/security/armory) -"aCq" = ( -/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_security{ - name = "Armory"; - req_access = list(3); - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"aCr" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "armory"; - name = "Emergency Access" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"aCs" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "armory"; - name = "Emergency Access" - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory) -"aCt" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/security/brig/processing) -"aCu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Holding Cell"; - req_access = list(2); - 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" - }, -/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/tiled, -/area/security/brig/processing) -"aCv" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/security/brig/processing) -"aCw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/security/brig) -"aCx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/security/brig) -"aCy" = ( -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/low/west, -/turf/simulated/floor/tiled, -/area/security/warden) -"aCz" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/clipboard, -/obj/item/paper{ - info = "\[center]\[Large]\[b]NSS Exodus\[/b]\[/large]\[br] \[small]Armory Inventory\[/small]\[/center] \[hr] \[hr] \[br] \[b]Weaponry\[/b]\[br] \[field] Energy Gun(s)\[br] \[field] Laser Gun(s)\[br] \[field] Ion Rifle(s)\[br] \[field] Combat Shotgun(s) \[hr] \[b]Armor\[/b]\[br] \[field] Bulletproof Vest(s)\[br] \[field] Abalative Vest(s)\[br] \[field] Biohazard Suit(s)\[br] \[field] Bomb Suit(s) \[hr] \[b]Auxiliary Equipment\[/b]\[br] \[field] Gasmask(s)\[br] \[field] box(es) of Flashbangs\[br] \[field] box(es) of Handcuffs\[br] \[field] box(es) of R.O.B.U.S.T. Cartridges \[hr] \[b]Riot Equipment\[/b]\[br] \[field] Stun Baton(s)\[br] \[field] Riot Suit(s)\[br] \[field] Riot Shield(s) \[hr] \[b]Tactical Equipment\[/b]\[br] \[field] Tactical Armor(s)\[br] \[field] Tactical Helmet(s)\[br] \[field] Tactical Jumpsuit(s)\[br] \[field] Green Balaclava(s)\[br] \[field] Tactical HUD(s)\[br] \[field] Combat Belt(s)\[br] \[field] Black Glove(s)\[br] \[field] Jackboot(s) \[hr] \[b]Implants\[/b]\[br] \[field] Tracking Implant Box(es)\[br] \[field] Chemical Implant Box(es) \[hr] \[b]Defense Systems\[/b]\[br] \[field] Deployable Barrier(s)\[br] \[field] Portable Flasher(s) \[hr] \[b]Other\[/b]\[br] \[field] Holobadge Box(es) \[hr] \[b]\[center]Warden's's Signature:\[/b] \[field]\[/center] \[hr]"; - name = "Armory Inventory" - }, -/obj/item/paper_scanner, -/turf/simulated/floor/tiled, -/area/security/warden) -"aCA" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 - }, -/obj/machinery/button/remote/airlock{ - id = "prisonentry"; - name = "Entry Doors"; - pixel_x = -28; - pixel_y = 26; - req_access = list(2) - }, -/obj/machinery/button/flasher{ - id = "permentryflash"; - name = "entry flash"; - pixel_x = -38; - pixel_y = 26; - req_access = list(2) - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/button/remote/airlock{ - id = "prisonexit"; - name = "Entry Doors"; - pixel_x = -28; - pixel_y = 36; - req_access = list(2) - }, -/turf/simulated/floor/tiled, -/area/security/warden) -"aCB" = ( -/obj/item/modular_computer/console/preset/security, -/obj/machinery/computer/security/telescreen{ - name = "Armory Cameras"; - network = list("Armory"); - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/security/warden) -"aCC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Brig Lockdown"; - name = "Brig Lockdown Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/warden) -"aCD" = ( -/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, -/area/security/prison) -"aCE" = ( -/obj/item/device/radio/intercom/north, -/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 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aCF" = ( -/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, -/area/security/prison) -"aCG" = ( -/obj/machinery/computer/arcade, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/prison) -"aCH" = ( -/obj/machinery/computer/arcade, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/prison) -"aCI" = ( -/obj/structure/table/standard, -/obj/machinery/librarycomp, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/prison) -"aCJ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aCK" = ( -/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, -/area/security/prison) -"aCL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/prison) -"aCM" = ( -/obj/structure/toilet{ - pixel_y = 5 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aCN" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/security/prison) -"aCO" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Brig Lockdown"; - name = "Brig Lockdown Door"; - opacity = 0 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/security/prison) -"aCP" = ( -/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, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aCQ" = ( -/obj/effect/floor_decal/corner_wide/mauve/full, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"aCR" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"aCS" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "chamber_a"; - name = "Chamber A Lockdown"; - pixel_x = -22; - pixel_y = -22; - req_access = list(7) - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"aCT" = ( -/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/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/sign/a, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"aCU" = ( -/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 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"aCV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/lawoffice) -"aCW" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/lawoffice/consular) -"aCX" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular) -"aCY" = ( -/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/high/south, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"aCZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"aDa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/sign/b, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"aDb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"aDc" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"aDd" = ( -/obj/structure/table/standard, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/obj/item/hand_tele, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"aDe" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/simulated/floor/tiled, -/area/teleporter) -"aDf" = ( -/obj/item/device/radio/beacon, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Teleporter" - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"aDg" = ( -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/teleporter) -"aDh" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/north, -/turf/simulated/floor/tiled, -/area/teleporter) -"aDi" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled, -/area/teleporter) -"aDj" = ( -/obj/structure/flora/ausbushes/grassybush{ - pixel_x = 16; - pixel_y = 4 - }, -/obj/structure/flora/ausbushes/grassybush{ - pixel_x = 34; - pixel_y = 4 - }, -/obj/structure/flora/ausbushes/grassybush{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/structure/flora/ausbushes/sunnybush, -/turf/simulated/floor/grass, -/area/bridge) -"aDk" = ( -/turf/simulated/floor/grass, -/area/bridge) -"aDl" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/bridge) -"aDm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner_wide/paleblue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aDn" = ( -/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/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner_wide/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aDo" = ( -/obj/effect/floor_decal/corner/dark_blue/full, -/turf/simulated/floor/tiled, -/area/bridge) -"aDp" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/captain) -"aDq" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/captain) -"aDr" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album, -/obj/item/device/camera, -/obj/item/reagent_containers/food/drinks/flask{ - pixel_x = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aDs" = ( -/obj/structure/table/rack, -/obj/item/tank/jetpack/oxygen, -/obj/item/clothing/suit/space/void/captain, -/obj/item/clothing/head/helmet/space/void/captain, -/obj/item/clothing/shoes/magboots, -/obj/machinery/alarm/north, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Captain's Quarters" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aDt" = ( -/obj/structure/closet/secure_closet/captains, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aDu" = ( -/obj/machinery/atm{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/mob/living/simple_animal/corgi/fox/Chauncey, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aDv" = ( -/obj/structure/ladder/up, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'ACCESS RESTRICTED - ONLY AUTHORIZED PERSONNEL'."; - name = "\improper ACCESS RESTRICTED"; - pixel_y = 32 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aDw" = ( -/obj/structure/table/wood, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/item/modular_computer/laptop/preset/command/captain, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aDx" = ( -/obj/structure/table/wood, -/obj/item/paper/monitorkey, -/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/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aDy" = ( -/obj/structure/table/wood, -/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/item/card/id/captains_spare, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aDz" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"aDA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/camera/network/reactor{ - c_tag = "Engineering - Engine Aft"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aDB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aDC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aDD" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aDE" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/landmark/engine_setup/pump_max, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aDF" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/landmark/engine_setup/coolant_canister, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aDG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "engine_airlock_control"; - name = "Engine Access Console"; - pixel_x = 26; - tag_exterior_door = "engine_airlock_exterior"; - tag_interior_door = "engine_airlock_interior" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aDH" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/shower{ - pixel_y = 15 - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/engineering/engine_airlock) -"aDI" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/shower{ - pixel_y = 15 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_airlock) -"aDJ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/shower{ - pixel_y = 15 - }, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = -6 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_airlock) -"aDK" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "engine_airlock_control"; - name = "Engine Access Console"; - pixel_x = -26; - tag_exterior_door = "engine_airlock_exterior"; - tag_interior_door = "engine_airlock_interior" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"aDL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"aDM" = ( -/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/engineering/engineering_hallway_main) -"aDN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/storage_eva) -"aDO" = ( -/obj/item/stack/material/plasteel{ - amount = 10 - }, -/obj/item/stack/material/plasteel{ - amount = 10 - }, -/obj/item/stack/material/plasteel{ - amount = 10 - }, -/obj/item/stack/material/glass/phoronrglass{ - amount = 20 - }, -/obj/item/stack/material/plastic{ - amount = 50 - }, -/obj/item/stack/material/plastic{ - amount = 50 - }, -/obj/structure/table/rack, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aDP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aDQ" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/east, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aDR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/closet/wardrobe/engineering_yellow, -/obj/item/clothing/shoes/workboots/toeless, -/obj/item/clothing/shoes/workboots/toeless, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aDS" = ( -/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 = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aDT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/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, -/area/engineering/foyer) -"aDU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aDV" = ( -/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/engineering/foyer) -"aDW" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aDX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aDY" = ( -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aDZ" = ( -/obj/structure/table/standard, -/obj/machinery/ringer/east{ - department = "Engineering"; - id = "engie_ringer"; - req_access = list(10) - }, -/obj/machinery/chemical_dispenser/bar_soft/full, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aEa" = ( -/turf/simulated/wall/r_wall, -/area/ai_monitored/storage/eva) -"aEb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "E.V.A. Maintenance"; - req_access = list(12,18); - dir = 1 - }, -/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" - }, -/turf/simulated/floor/plating, -/area/ai_monitored/storage/eva) -"aEc" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/ai_monitored/storage/eva) -"aEd" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Camera Corridor 5"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aEe" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aEf" = ( -/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/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aEg" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aEh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aEi" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aEj" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/ringer/north{ - department = "Security"; - id = "brig_ringer"; - req_access = list(1) - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aEk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aEl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/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 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aEm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aEn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled, -/area/security/brig) -"aEo" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aEp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/security/brig) -"aEq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aEr" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aEs" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aEt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aEu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/button/remote/blast_door{ - id = "Cell 1"; - name = "Cell 1 Door"; - pixel_w = -38; - pixel_y = 10; - req_access = list(3) - }, -/obj/machinery/button/remote/blast_door{ - id = "Cell 2"; - name = "Cell 2 Door"; - pixel_w = -38; - pixel_y = 1; - req_access = list(3) - }, -/obj/machinery/button/remote/blast_door{ - id = "Cell 3"; - name = "Cell 3 Door"; - pixel_w = -38; - pixel_y = -8; - req_access = list(3) - }, -/obj/machinery/button/remote/blast_door{ - id = "Cell 4"; - name = "Cell 4 Door"; - pixel_w = -28; - pixel_y = 10; - req_access = list(3) - }, -/obj/machinery/button/remote/blast_door{ - id = "Cell 5"; - name = "Cell 5 Door"; - pixel_w = -28; - pixel_y = 1; - req_access = list(3) - }, -/obj/machinery/button/remote/blast_door{ - id = "Brig Lockdown"; - name = "Brig Lockdown"; - pixel_w = -28; - pixel_y = -8; - req_access = list(3) - }, -/turf/simulated/floor/tiled, -/area/security/warden) -"aEv" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/folder/sec, -/obj/item/stamp{ - name = "warden's rubber stamp" - }, -/turf/simulated/floor/tiled, -/area/security/warden) -"aEw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/security/warden) -"aEx" = ( -/obj/structure/bed/stool/chair/remote/robot/warden{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/warden) -"aEy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Brig Lockdown"; - name = "Brig Lockdown Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/warden) -"aEz" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/prison) -"aEA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aEB" = ( -/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/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/prison) -"aEC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aED" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aEE" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "Cell 3"; - name = "Cell Door" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/security/prison) -"aEF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aEG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Brig Lockdown"; - name = "Brig Lockdown Door"; - opacity = 0 - }, -/obj/machinery/door/window/brigdoor/eastright{ - id = "Cell 3"; - name = "Cell 3"; - req_access = list(2) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/prison) -"aEH" = ( -/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, -/area/security/brig) -"aEI" = ( -/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/effect/landmark/start{ - name = "Scientist" - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/bed/stool/chair/plastic{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"aEJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"aEK" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"aEL" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/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/window/westleft{ - name = "Robotics Workshop"; - req_access = list(29) - }, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/assembly/robotics/workshop) -"aEM" = ( -/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/carpet/rubber, -/area/assembly/robotics/workshop) -"aEN" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-22" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/lawoffice) -"aEO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - id_tag = "consular_office"; - name = "Consular Office"; - req_access = list(72); - dir = 4 - }, -/turf/simulated/floor/wood, -/area/lawoffice/consular) -"aEP" = ( -/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 - }, -/turf/simulated/floor/carpet/rubber, -/area/assembly/robotics/workshop) -"aEQ" = ( -/obj/structure/bed/stool/padded/red, -/turf/simulated/floor/carpet/rubber, -/area/assembly/robotics/workshop) -"aER" = ( -/obj/machinery/door/airlock/highsecurity{ - id_tag = "bunker1"; - name = "Vault Access"; - req_access = list(19); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/security/nuke_storage) -"aES" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"aET" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"aEU" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"aEV" = ( -/obj/machinery/shieldwallgen, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"aEW" = ( -/obj/machinery/shieldwallgen, -/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, -/area/teleporter) -"aEX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"aEY" = ( -/obj/structure/flora/ausbushes/leafybush{ - pixel_x = -2; - pixel_y = -5 - }, -/obj/structure/flora/ausbushes/reedbush, -/turf/simulated/floor/grass, -/area/bridge) -"aEZ" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/turf/simulated/floor/carpet/rubber, -/area/assembly/robotics/workshop) -"aFa" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/bridge) -"aFb" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_wide/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aFc" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aFd" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/machinery/shower{ - dir = 4; - pixel_y = -8 - }, -/obj/item/bikehorn/rubberducky, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/captain) -"aFe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/captain) -"aFf" = ( -/obj/machinery/door/airlock{ - id_tag = "captain_washroom"; - name = "Private Restroom"; - 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/captain) -"aFg" = ( -/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/captain) -"aFh" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aFi" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/captain, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aFj" = ( -/obj/machinery/papershredder, -/obj/item/storage/secure/safe{ - pixel_x = -28 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aFk" = ( -/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/bed/stool/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Captain" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aFl" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/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 = 8; - icon_state = "2-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aFm" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"aFn" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/crew_quarters/captain) -"aFo" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aFp" = ( -/obj/machinery/atmospherics/binary/circulator{ - anchored = 1; - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aFq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aFr" = ( -/obj/machinery/atmospherics/valve/digital{ - dir = 1; - name = "Emergency Cooling Valve 1" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aFs" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aFt" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "engine_airlock_interior"; - locked = 1; - name = "Engine Airlock Interior"; - req_access = list(11); - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "engine_airlock_control"; - name = "Engine Access Button"; - pixel_y = -24; - req_access = list(11) - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_airlock) -"aFu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_airlock) -"aFv" = ( -/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, -/area/engineering/engine_airlock) -"aFw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/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/engineering/engine_airlock) -"aFx" = ( -/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_hatch{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "engine_airlock_exterior"; - locked = 1; - name = "Engine Airlock Exterior"; - req_access = list(11); - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "engine_airlock_control"; - name = "Engine Access Button"; - pixel_y = -24; - req_access = list(11) - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_airlock) -"aFy" = ( -/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/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"aFz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/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/engineering/engineering_hallway_main) -"aFA" = ( -/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/tiled, -/area/engineering/engineering_hallway_main) -"aFB" = ( -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - EVA Storage"; - dir = 4 - }, -/obj/structure/table/rack, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aFC" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aFD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aFE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aFF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering EVA Storage"; - req_one_access = list(11,24); - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aFG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aFH" = ( -/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/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/engineering/foyer) -"aFI" = ( -/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/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/yellow, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aFJ" = ( -/obj/structure/bed/stool/padded/red, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Atmospheric Technician" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aFK" = ( -/obj/structure/bed/stool/padded/red, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aFL" = ( -/obj/structure/bed/stool/padded/red, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Engineering Apprentice" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aFM" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aFN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - name = "Engineering"; - sortType = "Engineering" - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aFO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aFP" = ( -/obj/structure/table/standard, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = 1; - pixel_y = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aFQ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aFR" = ( -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aFS" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Voidsuits"; - req_one_access = list(5); - dir = 4 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aFT" = ( -/obj/machinery/power/apc/north, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aFU" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/firealarm/north, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aFV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aFW" = ( -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aFX" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aFY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Security Voidsuits"; - req_access = list(2); - dir = 4 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aFZ" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/security, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/security, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aGa" = ( -/obj/effect/floor_decal/corner/dark_blue/full, -/turf/simulated/floor/tiled, -/area/security/brig) -"aGb" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aGc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aGd" = ( -/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/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/plaque{ - desc = "Charles Hall Memorial Hall
Charles Hall was the 2nd victim of the infamous Odin Killer. From beginnings as an orphan, he rose to Head of Security and dedicated his life to ensuring security was robust and effective. He will be missed.
March 2425 - June 2460" - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aGe" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aGf" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aGg" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aGh" = ( -/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/disposalpipe/sortjunction{ - name = "HoS Office"; - sortType = "HoS Office" - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aGi" = ( -/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/light, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/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, -/area/security/brig) -"aGj" = ( -/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/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aGk" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aGl" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/computer/guestpass{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aGm" = ( -/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" - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aGn" = ( -/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/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/brig) -"aGo" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aGp" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aGq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/newscaster/security_unit/west, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/security/warden) -"aGr" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled, -/area/security/warden) -"aGs" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/security/warden) -"aGt" = ( -/obj/structure/closet/secure_closet/warden, -/obj/item/device/megaphone/sec, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/device/radio, -/obj/item/device/multitool, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/warden) -"aGu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Brig Lockdown"; - name = "Brig Lockdown Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/warden) -"aGv" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/southleft{ - name = "Brig Delivery Door"; - req_access = null - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/prison) -"aGw" = ( -/obj/machinery/flasher{ - id = "permflash"; - name = "Floor mounted flash" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/prison) -"aGx" = ( -/obj/structure/bed/stool/padded/red, -/turf/simulated/floor/tiled, -/area/security/prison) -"aGy" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aGz" = ( -/obj/structure/table/standard, -/obj/item/newspaper, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aGA" = ( -/obj/structure/bed/stool/padded/red, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aGB" = ( -/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/unary/outlet_injector{ - dir = 8; - frequency = 1441; - pixel_y = 1; - use_power = 1 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aGC" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 3"; - name = "Cell 3 Locker" - }, -/obj/machinery/light/small, -/obj/structure/sign/nosmoking_1{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aGD" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera/network/prison{ - c_tag = "Security - Brig Cell 3"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aGE" = ( -/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/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/brig) -"aGF" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aGG" = ( -/obj/structure/table/steel, -/obj/structure/closet/crate/autakh{ - pixel_y = -4; - tablestatus = -1 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/carpet/rubber, -/area/assembly/robotics/workshop) -"aGH" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/bluegrid/server, -/area/server) -"aGI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/wood, -/area/lawoffice) -"aGJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/power/apc/high/north, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/carpet/rubber, -/area/server) -"aGK" = ( -/obj/effect/floor_decal/corner_wide/paleblue/full{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"aGL" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "consular" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "consular" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "consular" - }, -/obj/structure/window/reinforced/polarized{ - id = "consular" - }, -/turf/simulated/floor/plating, -/area/lawoffice/consular) -"aGM" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-18"; - pixel_x = -4 - }, -/turf/simulated/floor/wood, -/area/lawoffice/consular) -"aGN" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching security cameras."; - name = "Office Cameras"; - network = list("Rep_Office"); - pixel_x = 31; - pixel_y = -2 - }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular) -"aGO" = ( -/obj/machinery/turretid/lethal{ - ailock = 1; - check_synth = 1; - desc = "A firewall prevents AIs from interacting with this device."; - name = "Vault lethal turret control"; - pixel_x = -28; - req_access = list(20) - }, -/obj/structure/sign/securearea{ - name = "\improper ONLY COMMAND STAFF"; - pixel_y = 32 - }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/nuke_storage) -"aGP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/nuke_storage) -"aGQ" = ( -/obj/structure/sign/securearea{ - name = "\improper ONLY COMMAND STAFF"; - pixel_y = 32 - }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/nuke_storage) -"aGR" = ( -/obj/structure/table/standard, -/obj/item/modular_computer/laptop/preset/command/teleporter, -/turf/simulated/floor/plating, -/area/teleporter) -"aGS" = ( -/obj/item/modular_computer/console/preset/command/teleporter, -/turf/simulated/floor/plating, -/area/teleporter) -"aGT" = ( -/obj/machinery/teleport/pad, -/obj/effect/decal/warning_stripes, -/turf/simulated/floor/plating, -/area/teleporter) -"aGU" = ( -/obj/structure/table/rack, -/obj/item/tank/oxygen, -/obj/item/clothing/mask/gas, -/turf/simulated/floor/plating, -/area/teleporter) -"aGV" = ( -/obj/machinery/shieldwallgen, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"aGW" = ( -/obj/machinery/shieldwallgen, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/teleporter) -"aGX" = ( -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = -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, -/area/teleporter) -"aGY" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/obj/random/pottedplant, -/obj/structure/sign/poster{ - icon_state = "tcflposter2"; - pixel_y = 32; - poster_type = "/datum/poster/bay_68" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"aGZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/bluegrid/server, -/area/server) -"aHa" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/bridge) -"aHb" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_wide/paleblue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aHc" = ( -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Command Deck Entrance"; - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/paleblue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aHd" = ( -/obj/structure/curtain/open/shower, -/obj/random/soap, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/captain) -"aHe" = ( -/obj/item/device/radio/intercom/south, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "captain_washroom"; - name = "Door Bolt Control"; - pixel_x = 22; - pixel_y = 8; - specialfunctions = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/captain) -"aHf" = ( -/obj/structure/table/wood, -/obj/item/storage/box/fancy/cigarettes/cigar, -/obj/item/flame/lighter/zippo, -/obj/item/hand_tele, -/obj/item/device/radio/intercom/west, -/obj/machinery/firealarm/south, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aHg" = ( -/obj/structure/table/wood, -/obj/item/pinpointer, -/obj/item/disk/nuclear, -/obj/machinery/newscaster/security_unit/south, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aHh" = ( -/obj/structure/displaycase/captain_laser, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aHi" = ( -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aHj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aHk" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters"; - req_access = list(20); - dir = 4 - }, -/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/captain) -"aHl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aHm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aHn" = ( -/obj/structure/table/wood, -/obj/machinery/photocopier/faxmachine{ - department = "Captain's Office" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aHo" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"aHp" = ( -/obj/machinery/atmospherics/valve/digital{ - dir = 1; - name = "Emergency Cooling Valve 2" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aHq" = ( -/obj/machinery/power/generator{ - anchored = 1 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aHr" = ( -/obj/machinery/power/generator{ - anchored = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aHs" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aHt" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aHu" = ( -/obj/machinery/alarm/east, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aHv" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/power/apc/south, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/engineering/engine_airlock) -"aHw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/device/radio/intercom/south{ - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_airlock) -"aHx" = ( -/obj/structure/closet/radiation, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"aHy" = ( -/obj/machinery/light, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"aHz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/storage_eva) -"aHA" = ( -/obj/structure/table/standard, -/obj/item/device/flashlight/heavy, -/obj/item/device/radio/eng, -/obj/item/device/radio/eng, -/obj/item/device/radio/eng, -/obj/item/device/radio/eng, -/obj/item/device/radio/eng, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aHB" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aHC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aHD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aHE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aHF" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - id = "ExamR2" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "ExamR2" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "ExamR2" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/exam_room2) -"aHG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering EVA Storage"; - req_one_access = list(11,24); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aHH" = ( -/obj/structure/table/standard, -/obj/item/modular_computer/laptop/preset/medical, -/turf/simulated/floor/carpet/cyan, -/area/medical/exam_room) -"aHI" = ( -/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/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aHJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aHK" = ( -/obj/machinery/recharger, -/obj/structure/table/wood/gamblingtable, -/turf/simulated/floor/lino, -/area/engineering/foyer) -"aHL" = ( -/obj/item/device/flashlight/lamp/green, -/obj/structure/table/wood/gamblingtable, -/turf/simulated/floor/lino, -/area/engineering/foyer) -"aHM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/carpet/rubber, -/area/server) -"aHN" = ( -/obj/structure/bed/stool/padded/red, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aHO" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aHP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"aHQ" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aHR" = ( -/obj/structure/table/rack{ - dir = 8; - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/medical, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/medical, -/obj/effect/floor_decal/corner/dark_blue/full, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aHS" = ( -/obj/structure/table/rack{ - dir = 8; - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/medical, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/medical, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aHT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/ai_monitored/storage/eva) -"aHU" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/head/welding, -/obj/item/storage/belt/utility, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aHV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aHW" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aHX" = ( -/obj/structure/table/reinforced, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/ladder_mobile, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aHY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/ai_monitored/storage/eva) -"aHZ" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/security, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/security, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aIa" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/heads/hos) -"aIb" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "HoS Windows" - }, -/obj/structure/window/reinforced/polarized{ - id = "HoS Windows" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "HoS Windows" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/hos) -"aIc" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "HoS Windows" - }, -/obj/structure/window/reinforced/polarized{ - id = "HoS Windows" - }, -/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/hos) -"aId" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "HoS Windows" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "HoS Windows" - }, -/obj/structure/window/reinforced/polarized{ - id = "HoS Windows" - }, -/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/hos) -"aIe" = ( -/obj/machinery/door/airlock/command{ - desc = "It opens and closes. It does not look very robust."; - id_tag = "HoSdoor"; - name = "Head of Security's Office"; - req_access = list(58); - dir = 1 - }, -/obj/machinery/door/firedoor, -/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/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hos) -"aIf" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "HoS Windows" - }, -/obj/structure/window/reinforced/polarized{ - id = "HoS Windows" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "HoS Windows" - }, -/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/hos) -"aIg" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "HoS Windows" - }, -/obj/structure/window/reinforced/polarized{ - id = "HoS Windows" - }, -/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/hos) -"aIh" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "HoS Windows" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "HoS Windows" - }, -/obj/structure/window/reinforced/polarized{ - id = "HoS Windows" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/hos) -"aIi" = ( -/turf/simulated/wall/r_wall, -/area/security/lobby) -"aIj" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Security Lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/obj/machinery/door/airlock/glass_security{ - id_tag = "BrigFoyer"; - name = "Security Wing"; - req_access = list(63); - dir = 1 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aIk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Security Lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/security/lobby) -"aIl" = ( -/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/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Security Lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/obj/machinery/door/airlock/glass_security{ - id_tag = "BrigFoyer"; - name = "Security Wing"; - req_access = list(63); - dir = 1 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aIm" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/security/brig/control_room) -"aIn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/northleft{ - name = "Security Office" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"aIo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/northright{ - name = "Security Office" - }, -/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/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"aIp" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/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/security/brig/control_room) -"aIq" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/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/security/brig/control_room) -"aIr" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/security/brig/control_room) -"aIs" = ( -/obj/structure/sign/nosmoking_2, -/turf/simulated/wall, -/area/security/brig/control_room) -"aIt" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = -32; - pixel_y = -6 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -30; - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/warden) -"aIu" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/warden) -"aIv" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/warden) -"aIw" = ( -/obj/machinery/button/flasher{ - id = "permflash"; - name = "Brig flashes"; - pixel_x = 28; - pixel_y = 28; - req_access = list(2) - }, -/obj/machinery/atmospherics/valve{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/warden) -"aIx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Brig Lockdown"; - name = "Brig Lockdown Door"; - opacity = 0 - }, -/obj/machinery/door/airlock/glass_security{ - name = "Warden's Office"; - req_access = list(3); - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/warden) -"aIy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aIz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aIA" = ( -/obj/structure/bed/stool/padded/red, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aIB" = ( -/obj/structure/table/standard, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aIC" = ( -/obj/structure/table/standard, -/obj/item/toy/blink, -/turf/simulated/floor/tiled, -/area/security/prison) -"aID" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aIE" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/obj/machinery/camera/network/prison{ - c_tag = "Security - Communal Cell"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aIF" = ( -/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/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/door_timer/cell_4{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aIG" = ( -/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/effect/landmark/start{ - name = "Scientist" - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/bed/stool/chair/plastic{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"aII" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Xenobiologist" - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/bed/stool/chair/plastic{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"aIJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Teleport Access"; - req_access = list(17); - 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/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"aIK" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/bridge) -"aIL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/bridge) -"aIM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/bridge) -"aIN" = ( -/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/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/door/airlock/glass_command{ - id_tag = ""; - name = "Bridge"; - req_access = list(19); - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/paleblue/diagonal, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aIO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/bridge) -"aIP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aIQ" = ( -/obj/item/modular_computer/console/preset/command/account, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aIR" = ( -/obj/machinery/atmospherics/binary/circulator{ - anchored = 1; - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aIS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aIT" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aIU" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aIV" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aIW" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/obj/effect/landmark/engine_setup/pump_max, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aIX" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(11); - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"aIY" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/engineering/engineering_hallway_main) -"aIZ" = ( -/obj/structure/table/standard, -/obj/item/storage/bag/inflatable{ - pixel_x = -3 - }, -/obj/item/storage/bag/inflatable{ - pixel_y = 3 - }, -/obj/item/storage/bag/inflatable{ - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/alarm/west, -/obj/machinery/ringer/south{ - department = "Engineering"; - id = "engie_ringer"; - req_access = list(10) - }, -/obj/item/device/pipe_painter, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aJa" = ( -/obj/machinery/firealarm/south, -/obj/structure/table/standard, -/obj/item/storage/bag/circuits/basic, -/obj/item/device/paint_sprayer, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aJb" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/sign/nosmoking_2{ - pixel_y = -30 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aJc" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aJd" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/void/engineering, -/obj/item/clothing/head/helmet/space/void/engineering, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Engineering Voidsuits"; - req_access = list(11) - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aJe" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/void/engineering, -/obj/item/clothing/head/helmet/space/void/engineering, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Engineering Voidsuits"; - req_access = list(11) - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aJf" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/void/engineering, -/obj/item/clothing/head/helmet/space/void/engineering, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Engineering Voidsuits"; - req_access = list(11) - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aJg" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/suit_cycler/engineering, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"aJh" = ( -/obj/machinery/newscaster/west, -/obj/structure/table/rack, -/obj/item/hoist_kit, -/obj/item/ladder_mobile, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aJi" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aJj" = ( -/obj/structure/bed/stool/padded/red, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/landmark/start{ - name = "Chief Engineer" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aJk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aJl" = ( -/obj/structure/bed/stool/padded/red, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/effect/landmark/start{ - name = "Engineering Apprentice" - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aJm" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aJn" = ( -/obj/structure/bookcase/manuals/engineering, -/obj/item/book/manual/atmospipes, -/obj/item/book/manual/wiki/engineering_guide, -/obj/item/book/manual/supermatter_engine, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aJo" = ( -/obj/machinery/requests_console/west{ - department = "EVA" - }, -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/device/multitool, -/obj/machinery/camera/network/security{ - c_tag = "EVA - Port Camera"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aJp" = ( -/obj/structure/table/reinforced, -/obj/machinery/camera/network/security{ - c_tag = "EVA - Starboard Camera"; - dir = 8 - }, -/obj/item/stack/material/glass/reinforced{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aJq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/ai_monitored/storage/eva) -"aJr" = ( -/obj/machinery/suit_cycler/security, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aJs" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"aJt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"aJu" = ( -/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/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"aJv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/papershredder, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"aJw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/suit_cycler/hos, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"aJx" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/east, -/obj/random/pottedplant, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"aJy" = ( -/obj/structure/bookcase/manuals, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/book/manual/wiki/station_procedure, -/obj/item/book/manual/wiki/station_procedure, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aJz" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aJA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aJB" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aJC" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aJD" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/sign/flag/scc, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aJE" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Security Lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/brig/control_room) -"aJF" = ( -/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/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/item/modular_computer/console/preset/security, -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"aJG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"aJH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/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, -/area/security/brig/control_room) -"aJI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/stack/packageWrap, -/obj/item/device/hand_labeler, -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"aJJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"aJK" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Warden's Office"; - req_access = list(3); - 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, -/area/security/brig/control_room) -"aJL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled, -/area/security/warden) -"aJM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/item/device/radio/intercom/south, -/obj/machinery/light_switch{ - pixel_x = 16; - pixel_y = -23 - }, -/turf/simulated/floor/tiled, -/area/security/warden) -"aJN" = ( -/obj/structure/table/standard, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/device/eftpos{ - eftpos_name = "Brig EFTPOS scanner" - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/security/warden) -"aJO" = ( -/obj/machinery/requests_console/south{ - department = "Warden's Desk"; - departmentType = 5 - }, -/obj/machinery/computer/area_atmos, -/turf/simulated/floor/tiled, -/area/security/warden) -"aJP" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Brig Delivery Chute" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/security/warden) -"aJQ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/green, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Brig Lockdown"; - name = "Brig Lockdown Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/warden) -"aJR" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge{ - name = "Communal Air Scrubber" - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aJS" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/prison) -"aJT" = ( -/obj/structure/bed/stool/padded/red, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/security/prison) -"aJU" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/toy/mech/deathripley{ - desc = "This is Johnny 5. Is he alive?"; - name = "Johnny 5" - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aJV" = ( -/obj/structure/table/standard, -/obj/item/stack/dice, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aJW" = ( -/obj/structure/bed/stool/padded/red, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aJX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aJY" = ( -/obj/structure/table/standard, -/obj/item/storage/box/cups, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aJZ" = ( -/obj/structure/table/standard, -/obj/item/device/radio{ - anchored = 1; - canhear_range = 1; - frequency = 1487; - icon_state = "red_phone"; - name = "Examination Room Emergency Phone"; - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/paper_scanner, -/turf/simulated/floor/carpet/cyan, -/area/medical/exam_room2) -"aKa" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - id_tag = ""; - name = "Security Starboard Entrance"; - req_access = list(63); - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Security Lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aKb" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=S4"; - location = "S3" - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aKc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aKd" = ( -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aKe" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aKf" = ( -/obj/machinery/atm{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aKg" = ( -/obj/structure/sign/directions/evac{ - dir = 8; - pixel_y = 24 - }, -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_y = 32 - }, -/obj/structure/sign/directions/com{ - dir = 4; - pixel_y = 40 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aKh" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aKi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aKj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aKk" = ( -/obj/machinery/door/airlock/glass_command{ - id_tag = "sbridgedoor"; - name = "Bridge"; - req_one_access = list(19,38,72); - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aKl" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aKm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner_wide/paleblue/full, -/turf/simulated/floor/tiled, -/area/bridge) -"aKn" = ( -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 8; - name = "HoP Office"; - sortType = "HoP Office" - }, -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aKo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aKp" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/newscaster/north, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aKq" = ( -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Corridor Camera 3"; - network = list("Command","Capt_Office") - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aKr" = ( -/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/effect/floor_decal/corner_wide/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aKs" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aKt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 10 - }, -/obj/structure/sign/flag/scc/large/north, -/turf/simulated/floor/tiled, -/area/bridge) -"aKu" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aKv" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aKw" = ( -/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/effect/floor_decal/corner_wide/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aKx" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aKy" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 - }, -/obj/machinery/newscaster/north, -/turf/simulated/floor/tiled, -/area/bridge) -"aKz" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "cap" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "cap" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "cap" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"aKA" = ( -/obj/structure/bed/stool/chair/padded/brown, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aKB" = ( -/obj/structure/bed/stool/chair/padded/brown, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aKC" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aKD" = ( -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Captain's Office West" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aKE" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/briefcase, -/obj/machinery/alarm/north, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aKF" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aKG" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/computer/security/telescreen{ - name = "Access Monitor"; - network = list("Capt_Office"); - pixel_y = 30 - }, -/obj/item/paper_scanner{ - pixel_x = 6; - pixel_y = -2 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aKH" = ( -/obj/structure/filingcabinet, -/obj/machinery/requests_console/north{ - announcementConsole = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain RC" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aKI" = ( -/obj/machinery/suit_cycler/captain, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aKJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aKK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aKL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aKM" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aKN" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aKO" = ( -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aKP" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/structure/cable{ - d1 = 16; - d2 = 0; - icon_state = "12-0" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/engineering_ladder) -"aKQ" = ( -/obj/structure/ladder/up{ - pixel_y = 16 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/engineering_ladder) -"aKR" = ( -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/down/supply, -/obj/structure/cable{ - d1 = 32; - d2 = 2; - icon_state = "11-2" - }, -/obj/structure/lattice/catwalk, -/turf/simulated/open, -/area/maintenance/engineering_ladder) -"aKS" = ( -/obj/structure/ladder{ - pixel_y = 16 - }, -/turf/simulated/open, -/area/maintenance/engineering_ladder) -"aKT" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/research_port) -"aKU" = ( -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"aKV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"aKW" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"aKX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/alarm/west, -/obj/machinery/photocopier, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aKY" = ( -/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, -/area/engineering/foyer) -"aKZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aLa" = ( -/obj/structure/bed/stool/padded/red, -/obj/effect/landmark/start{ - name = "Engineering Apprentice" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aLb" = ( -/obj/structure/bed/stool/padded/red, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aLc" = ( -/obj/structure/bed/stool/padded/red, -/obj/effect/landmark/start{ - name = "Atmospheric Technician" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aLd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aLe" = ( -/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, -/area/engineering/foyer) -"aLf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aLg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aLh" = ( -/obj/structure/table/standard, -/obj/item/folder/yellow, -/obj/machinery/requests_console/east{ - department = "Engineering"; - departmentType = 1; - name = "Engineering RC" - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aLi" = ( -/obj/structure/table/rack{ - dir = 8; - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/engineering, -/obj/item/clothing/head/helmet/space/void/engineering, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aLj" = ( -/obj/structure/table/rack{ - dir = 8; - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/atmos, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/atmos, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aLk" = ( -/obj/structure/table/reinforced, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/signaler, -/obj/item/device/flashlight/heavy, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aLl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aLm" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aLn" = ( -/obj/structure/table/reinforced, -/obj/structure/extinguisher_cabinet/east, -/obj/item/stack/material/plasteel{ - amount = 10 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aLo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"aLp" = ( -/obj/structure/filingcabinet, -/obj/machinery/recharger/wallcharger{ - pixel_x = -24 - }, -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = -7 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"aLq" = ( -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"aLr" = ( -/obj/structure/table/wood, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"aLs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"aLt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"aLu" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"aLv" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/flask/barflask, -/obj/item/device/flashlight/heavy, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"aLw" = ( -/obj/machinery/newscaster/west, -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/pen, -/obj/item/storage/box/cups, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aLx" = ( -/turf/simulated/floor/tiled, -/area/security/lobby) -"aLy" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aLz" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/window/brigdoor/westright{ - name = "Security Office" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Security Lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"aLA" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control switch for the brig foyer."; - id = "BrigFoyer"; - name = "Brig Foyer Doors"; - pixel_x = -28; - pixel_y = 7 - }, -/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/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"aLB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"aLC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"aLD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"aLE" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/noticeboard{ - pixel_x = 32; - pixel_y = 2 - }, -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"aLF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/computer/cryopod{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aLG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/security/prison) -"aLH" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/security/prison) -"aLI" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "Cell 4"; - name = "Cell Door" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/security/prison) -"aLJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Brig Lockdown"; - name = "Brig Lockdown Door"; - opacity = 0 - }, -/obj/machinery/door/window/brigdoor/eastright{ - id = "Cell 4"; - name = "Cell 4"; - req_access = list(2) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/prison) -"aLK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/firealarm/south, -/obj/structure/table/steel, -/obj/item/device/multitool, -/turf/simulated/floor/carpet/rubber, -/area/server) -"aLL" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/mob/living/simple_animal/hostile/commanded/baby_harvester, -/turf/simulated/floor/tiled, -/area/rnd/rdoffice) -"aLM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Security Lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/security/brig) -"aLN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"aLO" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aLP" = ( -/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, -/area/hallway/primary/starboard) -"aLQ" = ( -/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/starboard) -"aLR" = ( -/obj/structure/cable{ - 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, -/area/hallway/primary/starboard) -"aLS" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/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/effect/floor_decal/plaque{ - desc = "Mikail Ivanovich Memorial
The 3rd Victim of the Odin Killer. Mikail Ivanovich had an unparalleled work ethic and an unbreakable drive to end corruption. Struck down too soon.
May 2419 - June 2460" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aLT" = ( -/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/starboard) -"aLU" = ( -/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/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aLV" = ( -/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/machinery/door/firedoor{ - enable_smart_generation = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aLW" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/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/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aLX" = ( -/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, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aLY" = ( -/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/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=S3"; - location = "Com" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aLZ" = ( -/obj/machinery/hologram/holopad, -/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/starboard) -"aMa" = ( -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Starboard Corridor - Camera 4"; - dir = 8; - network = list("Civilian Main","Capt_Office") - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aMb" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aMc" = ( -/obj/machinery/computer/guestpass{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner_wide/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aMd" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_wide/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aMe" = ( -/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 = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner_wide/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aMf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aMg" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aMh" = ( -/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/effect/floor_decal/corner_wide/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aMi" = ( -/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 = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aMj" = ( -/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/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner_wide/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aMk" = ( -/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/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/effect/floor_decal/corner_wide/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aMl" = ( -/obj/machinery/hologram/holopad, -/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" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner_wide/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aMm" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/table/wood, -/turf/simulated/floor/tiled, -/area/bridge) -"aMn" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "cap" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "cap" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"aMo" = ( -/obj/structure/table/wood, -/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/light{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aMp" = ( -/obj/structure/table/wood, -/obj/item/storage/box/fancy/donut, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aMq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aMr" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aMs" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/stamp/captain, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aMt" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 8 - }, -/obj/machinery/button/switch/windowtint{ - id = "cap"; - pixel_x = -28; - pixel_y = 16 - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control-switch for the office door."; - id = "captaindoor"; - name = "Office Door Control"; - pixel_x = -26; - pixel_y = -16; - req_access = list(20) - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control-switch for the starboard bridge doors."; - id = "sbridgedoor"; - name = "Bridge Door Control"; - pixel_x = -37; - pixel_y = -16; - req_access = list(20) - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aMu" = ( -/obj/machinery/photocopier, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Captain's Office East"; - dir = 8 - }, -/obj/machinery/case_button/shuttle{ - pixel_x = 32 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aMv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aMw" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aMx" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aMy" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 10 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aMz" = ( -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 1 - }, -/obj/effect/landmark/engine_setup/pump_max, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aMA" = ( -/obj/structure/closet/walllocker/emerglocker/south, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aMB" = ( -/obj/structure/closet/walllocker/firecloset{ - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aMC" = ( -/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/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"aMD" = ( -/obj/random/junk, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"aME" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"aMF" = ( -/obj/structure/table/rack, -/obj/random/loot, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"aMG" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"aMH" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/heads/chief) -"aMI" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/item/clothing/suit/fire/atmos, -/obj/item/clothing/head/hardhat/firefighter/chief, -/obj/item/rig/ce/equipped{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"aMJ" = ( -/obj/structure/table/reinforced, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/window/brigdoor/southright{ - req_access = list(56) - }, -/obj/item/rfd/construction, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"aMK" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/southright{ - req_access = list(56) - }, -/obj/effect/decal/warning_stripes, -/mob/living/simple_animal/carp/fluff/ginny, -/turf/simulated/floor/reinforced, -/area/crew_quarters/heads/chief) -"aML" = ( -/obj/machinery/power/apc/high/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) -"aMM" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/machinery/firealarm/north, -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) -"aMN" = ( -/obj/machinery/alarm/north, -/obj/machinery/photocopier, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) -"aMO" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/item/device/radio/intercom/north, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) -"aMP" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4 - }, -/obj/structure/window/reinforced/polarized{ - dir = 1 - }, -/obj/structure/window/reinforced/polarized{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/chief) -"aMQ" = ( -/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/engineering/foyer) -"aMR" = ( -/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" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aMS" = ( -/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, -/area/engineering/foyer) -"aMT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aMU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aMV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aMW" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/computer/guestpass{ - pixel_x = 32 - }, -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aMX" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue/full, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aMY" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Voidsuits"; - req_one_access = list(11,24); - dir = 4 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aMZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aNa" = ( -/obj/item/storage/bag/inflatable{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/item/storage/bag/inflatable{ - pixel_y = 3 - }, -/obj/item/storage/bag/inflatable{ - pixel_x = -3 - }, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aNb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aNc" = ( -/obj/structure/table/rack{ - dir = 8; - }, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/clothing/shoes/magboots, -/obj/item/device/suit_cooling_unit, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aNd" = ( -/obj/structure/table/rack{ - dir = 8; - }, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/clothing/shoes/magboots, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/item/device/suit_cooling_unit, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aNe" = ( -/obj/structure/sign/goldenplaque{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/item/modular_computer/console/preset/security/hos, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"aNf" = ( -/obj/structure/bed/stool/chair/padded/red{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "Security Lockdown"; - name = "Security Lockdown"; - pixel_x = 38; - pixel_y = 38; - req_access = list(58) - }, -/obj/machinery/button/remote/airlock{ - id = "HoSdoor"; - name = "Office Door"; - pixel_x = 27; - pixel_y = 38 - }, -/obj/machinery/button/switch/windowtint{ - id = "HoS Windows"; - pixel_x = 26; - pixel_y = 28; - req_access = list(58) - }, -/obj/machinery/button/remote/blast_door{ - id = "armory"; - name = "Armory Shutters"; - pixel_x = 38; - pixel_y = 28; - req_access = list(58) - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"aNg" = ( -/obj/structure/table/wood, -/obj/item/folder/sec, -/obj/item/pen/blue{ - pixel_x = -5 - }, -/obj/item/pen/red, -/obj/item/stamp/hos{ - pixel_x = -5; - pixel_y = 7 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"aNh" = ( -/obj/structure/bed/stool/chair/padded/black{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"aNi" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"aNj" = ( -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"aNk" = ( -/obj/structure/table/wood, -/obj/item/device/megaphone/sec, -/obj/item/device/radio, -/obj/item/device/taperecorder, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/tranqcabinet{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"aNl" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aNm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aNn" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/window/brigdoor/westleft{ - name = "Security Office" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Security Lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"aNo" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/obj/machinery/button/remote/airlock{ - id = "visitdoor"; - name = "Visitation Access"; - pixel_x = -28; - pixel_y = -7 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"aNp" = ( -/obj/structure/bed/stool/chair/office/dark, -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"aNq" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/filingcabinet, -/obj/machinery/newscaster/east, -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"aNr" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/prison) -"aNs" = ( -/obj/machinery/door/airlock{ - desc = "It opens and closes. A repulsive smell eminates from the door."; - name = "Brig Toilet"; - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/prison) -"aNt" = ( -/turf/simulated/floor/tiled/freezer, -/area/security/prison) -"aNu" = ( -/obj/item/toy/figure/warden, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/freezer, -/area/security/prison) -"aNv" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/structure/curtain/open/shower, -/obj/random/soap, -/turf/simulated/floor/tiled/freezer, -/area/security/prison) -"aNw" = ( -/obj/structure/cryofeed{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/security/prison) -"aNx" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/security/prison) -"aNy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aNz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/security/prison) -"aNA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aNB" = ( -/obj/machinery/flasher{ - id = "permflash"; - name = "Floor mounted flash" - }, -/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/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/prison) -"aNC" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 4"; - name = "Cell 4 Locker" - }, -/obj/machinery/light/small, -/obj/structure/sign/nosmoking_1{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aND" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera/network/prison{ - c_tag = "Security - Brig Cell 4"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aNE" = ( -/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, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aNF" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aNG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aNH" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Com"; - location = "S2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aNI" = ( -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aNK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "kitchenshutters02"; - name = "Kitchen Shutters" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/stone/marble, -/turf/simulated/floor/lino, -/area/crew_quarters/kitchen) -"aNL" = ( -/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, -/area/hallway/primary/starboard) -"aNM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - name = "Server Room" - }, -/obj/machinery/door/window/eastleft{ - name = "Server Room" - }, -/obj/structure/plasticflaps/airtight, -/turf/simulated/floor/tiled/dark, -/area/server) -"aNN" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aNO" = ( -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aNP" = ( -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aNQ" = ( -/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/starboard) -"aNR" = ( -/obj/machinery/camera/network/security{ - c_tag = "Vault - Entrance"; - dir = 1; - network = list("Security","Armory") - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aNS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aNT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aNU" = ( -/obj/machinery/door/airlock/glass_command{ - id_tag = "sbridgedoor"; - name = "Bridge"; - req_one_access = list(19,38,72); - dir = 4 - }, -/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/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aNV" = ( -/obj/effect/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" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aNW" = ( -/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/effect/floor_decal/corner_wide/paleblue/full{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aNX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aNY" = ( -/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/firealarm/south, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aNZ" = ( -/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/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aOa" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aOb" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aOc" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aOd" = ( -/obj/structure/closet/walllocker/medical{ - pixel_y = -32 - }, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aOe" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_wide/paleblue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aOf" = ( -/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/effect/floor_decal/corner_wide/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aOg" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aOh" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "cap" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "cap" - }, -/obj/structure/window/reinforced/polarized{ - id = "cap" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"aOi" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 1 - }, -/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/carpet, -/area/crew_quarters/captain) -"aOj" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aOk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aOl" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aOm" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aOn" = ( -/obj/item/modular_computer/console/preset/command/captain, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aOo" = ( -/obj/structure/table/wood, -/obj/item/device/megaphone/command, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aOp" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/map_effect/window_spawner/borosilicate/reinforced/firedoor, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aOq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/map_effect/window_spawner/borosilicate/reinforced/firedoor, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aOr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"aOs" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/alarm/south, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics_cyborgification) -"aOt" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/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/engineering_ladder) -"aOu" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access = list(12); - dir = 4 - }, -/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/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"aOv" = ( -/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 = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"aOw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"aOx" = ( -/obj/machinery/requests_console/west{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 6; - name = "Chief Engineer RC" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) -"aOy" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) -"aOz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) -"aOA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) -"aOB" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) -"aOC" = ( -/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, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4 - }, -/obj/structure/window/reinforced/polarized{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/chief) -"aOD" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aOE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aOF" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aOG" = ( -/obj/structure/disposalpipe/junction/yjunction, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aOH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aOI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Lobby Aft"; - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = 6; - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aOJ" = ( -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 8; - name = "Engineering Break Room"; - sortType = "Engineering Break Room" - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aOK" = ( -/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/engineering/foyer) -"aOL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aOM" = ( -/obj/item/device/radio/intercom/east, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aON" = ( -/obj/item/device/radio/intercom/west, -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aOO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aOP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aOQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - name = "E.V.A."; - req_one_access = list(18); - dir = 4 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aOR" = ( -/obj/machinery/keycard_auth{ - pixel_x = -28 - }, -/obj/item/modular_computer/console/preset/security, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"aOS" = ( -/obj/structure/table/wood, -/obj/item/modular_computer/laptop/preset/security/hos, -/obj/item/storage/slide_projector{ - pixel_y = 12 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"aOT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"aOU" = ( -/obj/machinery/alarm/east, -/obj/structure/table/wood, -/obj/machinery/photocopier/faxmachine{ - department = "Head of Security's Office" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"aOV" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aOW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aOX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aOY" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aOZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aPa" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Security Lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/obj/structure/sign/nosmoking_2, -/turf/simulated/floor/plating, -/area/security/brig/control_room) -"aPb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/item/modular_computer/console/preset/security, -/obj/machinery/power/apc/low/south, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"aPc" = ( -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"aPd" = ( -/obj/machinery/papershredder, -/obj/machinery/light_switch{ - pixel_y = -23 - }, -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"aPe" = ( -/obj/machinery/recharger/wallcharger{ - pixel_y = -26 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"aPf" = ( -/obj/machinery/recharger/wallcharger{ - pixel_y = -26 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/table/standard, -/obj/item/folder/sec, -/obj/item/paper_scanner, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"aPg" = ( -/obj/machinery/alarm/south, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"aPh" = ( -/obj/structure/toilet/noose{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/prison) -"aPi" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 5 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Communal Bathroom"; - dir = 4; - network = list("Prison") - }, -/turf/simulated/floor/tiled/freezer, -/area/security/prison) -"aPj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/freezer, -/area/security/prison) -"aPk" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/structure/cryofeed{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/security/prison) -"aPl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/prison) -"aPm" = ( -/obj/structure/window/reinforced, -/obj/structure/bed/stool/chair/remote/robot/prison, -/obj/machinery/door/window/brigdoor/northright{ - id = "Remote Chair"; - name = "Remote Chair"; - req_access = list(2) - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aPn" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"aPo" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"aPp" = ( -/obj/machinery/newscaster/east, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/security/prison) -"aPq" = ( -/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 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/door_timer/cell_5{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aPr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aPs" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_command{ - id_tag = "server_door_lock"; - name = "Server Room"; - req_access = list(30); - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/server) -"aPt" = ( -/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, -/area/hallway/primary/starboard) -"aPu" = ( -/turf/simulated/wall, -/area/journalistoffice) -"aPv" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "journalist" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "journalist" - }, -/obj/structure/window/reinforced/polarized{ - id = "journalist" - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/journalistoffice) -"aPw" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "journalist" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "journalist" - }, -/obj/structure/window/reinforced/polarized{ - id = "journalist" - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/journalistoffice) -"aPx" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock{ - name = "Journalist's Office"; - req_access = list(70); - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/journalistoffice) -"aPy" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "journalist" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "journalist" - }, -/obj/structure/window/reinforced/polarized{ - id = "journalist" - }, -/obj/structure/grille, -/turf/simulated/floor, -/area/journalistoffice) -"aPz" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "journalist" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "journalist" - }, -/obj/structure/window/reinforced/polarized{ - id = "journalist" - }, -/obj/structure/grille, -/turf/simulated/floor, -/area/journalistoffice) -"aPA" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 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/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/primary/starboard) -"aPB" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/ringer_button{ - id = "hop_ringer"; - pixel_x = 26; - pixel_y = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aPC" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/heads/hop) -"aPD" = ( -/turf/simulated/wall, -/area/crew_quarters/heads/hop) -"aPE" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access = list(57); - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"aPF" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - id = "conference" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "conference" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "conference" - }, -/turf/simulated/floor/plating, -/area/bridge/meeting_room) -"aPG" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "conference" - }, -/obj/structure/window/reinforced/polarized{ - id = "conference" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "conference" - }, -/turf/simulated/floor/plating, -/area/bridge/meeting_room) -"aPH" = ( -/turf/simulated/wall, -/area/bridge/meeting_room) -"aPI" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - id = "conference" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "conference" - }, -/turf/simulated/floor/plating, -/area/bridge/meeting_room) -"aPJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aPK" = ( -/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 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner_wide/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aPL" = ( -/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/effect/floor_decal/corner_wide/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aPM" = ( -/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, -/area/bridge) -"aPN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - id_tag = "captaindoor"; - name = "Captain's Office"; - req_access = list(20); - 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/wood, -/area/crew_quarters/captain) -"aPO" = ( -/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 = 8; - icon_state = "2-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/wood, -/area/crew_quarters/captain) -"aPP" = ( -/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/wood, -/area/crew_quarters/captain) -"aPQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aPR" = ( -/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/wood, -/area/crew_quarters/captain) -"aPS" = ( -/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/wood, -/area/crew_quarters/captain) -"aPT" = ( -/obj/item/toy/figure/captain, -/obj/random/pottedplant, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aPU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"aPV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"aPW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aPX" = ( -/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/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aPY" = ( -/obj/structure/table/wood, -/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 = 8; - icon_state = "2-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/storage/slide_projector, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aPZ" = ( -/obj/structure/sign/drop{ - pixel_y = -32 - }, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/zpipe/down/black{ - dir = 1 - }, -/turf/simulated/open, -/area/engineering/engine_room) -"aQa" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/zpipe/down/green{ - dir = 1 - }, -/turf/simulated/open, -/area/engineering/engine_room) -"aQb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/machinery/meter{ - name = "Scrubbers" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"aQc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/machinery/meter{ - name = "Air supply" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"aQd" = ( -/obj/machinery/button/remote/driver{ - id = "enginecore"; - name = "Emergency Core Eject"; - pixel_x = -20 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"aQe" = ( -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/chief) -"aQf" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/food/drinks/flask/barflask{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/device/radio/off, -/obj/item/flame/lighter/zippo, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/chief) -"aQg" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/paper_scanner{ - pixel_x = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/chief) -"aQh" = ( -/obj/structure/table/standard, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/modular_computer/laptop/preset/engineering/ce, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/chief) -"aQi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) -"aQj" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) -"aQk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4 - }, -/obj/structure/window/reinforced/polarized{ - dir = 8 - }, -/obj/structure/window/reinforced/polarized, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/chief) -"aQl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aQm" = ( -/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/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aQn" = ( -/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/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aQo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction{ - name = "CE Office"; - sortType = "CE Office" - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aQp" = ( -/obj/structure/table/rack, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/item/storage/box/lights/mixed, -/obj/machinery/power/apc/high/east, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aQq" = ( -/turf/simulated/wall, -/area/engineering/foyer) -"aQr" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aQs" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aQt" = ( -/obj/item/modular_computer/console/preset/engineering, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aQu" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aQv" = ( -/obj/machinery/button/remote/blast_door{ - id = "Singuloth"; - name = "Engineering delivery Control"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aQw" = ( -/obj/machinery/suit_cycler/medical, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aQx" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aQy" = ( -/obj/structure/table/reinforced, -/obj/item/hoist_kit, -/obj/item/ladder_mobile, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aQz" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/ai_monitored/storage/eva) -"aQA" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aQB" = ( -/obj/structure/closet/secure_closet/hos, -/obj/item/device/multitool, -/obj/item/reagent_containers/spray/pepper, -/obj/item/clothing/suit/space/void/hos, -/obj/item/clothing/head/helmet/space/void/hos, -/obj/item/clothing/shoes/magboots, -/obj/item/tank/oxygen, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"aQC" = ( -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"aQD" = ( -/obj/machinery/newscaster/security_unit/south, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"aQE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"aQF" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/northleft{ - req_access = list(58) - }, -/mob/living/simple_animal/hostile/commanded/dog/columbo, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"aQG" = ( -/obj/machinery/photocopier, -/obj/machinery/requests_console/south{ - announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security RC" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"aQH" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/storage/secure/safe{ - pixel_x = 5; - pixel_y = -30 - }, -/obj/item/paper_scanner, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"aQI" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aQJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aQK" = ( -/obj/machinery/ringer_button{ - id = "brig_ringer"; - pixel_x = 24; - pixel_y = 6 - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aQL" = ( -/turf/simulated/wall/r_wall, -/area/security/prison) -"aQM" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/urinal{ - dir = 4; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/prison) -"aQN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/prison) -"aQO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/prison) -"aQP" = ( -/obj/machinery/door/airlock{ - name = "Brig Showers"; - 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/prison) -"aQQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled/white, -/area/security/prison) -"aQR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aQS" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - use_power = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/security/prison) -"aQT" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/mopbucket, -/obj/item/mop, -/turf/simulated/floor/tiled, -/area/security/prison) -"aQU" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/vending/hydronutrients, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/prison) -"aQV" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/seed_storage, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/prison) -"aQW" = ( -/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/bed/stool/padded/red, -/turf/simulated/floor/tiled, -/area/security/prison) -"aQX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/tiled, -/area/security/prison) -"aQY" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/airlock/medical{ - id_tag = "EXdoor2"; - name = "Examination Room 2"; - req_one_access = list(5); - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room2) -"aQZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "journalist" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "journalist" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "journalist" - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/journalistoffice) -"aRa" = ( -/obj/random/pottedplant, -/turf/simulated/floor/wood, -/area/journalistoffice) -"aRb" = ( -/turf/simulated/floor/wood, -/area/journalistoffice) -"aRc" = ( -/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" - }, -/turf/simulated/floor/wood, -/area/journalistoffice) -"aRd" = ( -/obj/structure/disposalpipe/segment, -/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" - }, -/turf/simulated/floor/wood, -/area/journalistoffice) -"aRe" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/wood, -/area/journalistoffice) -"aRf" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aRg" = ( -/obj/item/device/t_scanner, -/obj/structure/table/steel, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"aRh" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"aRi" = ( -/turf/simulated/wall, -/area/maintenance/maintcentral) -"aRj" = ( -/obj/effect/decal/cleanable/dirt, -/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/plating, -/area/maintenance/maintcentral) -"aRk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aRl" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aRm" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aRn" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - name = "Head of Personnel's Desk"; - req_access = list(57) - }, -/obj/machinery/door/window/northleft{ - dir = 8; - name = "Reception Window" - }, -/obj/structure/noticeboard{ - pixel_y = 27 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "hop_office_desk"; - name = "HoP Office Privacy Shutters"; - opacity = 0 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aRo" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/obj/machinery/requests_console/north{ - announcementConsole = 1; - department = "Head of Personnel's Desk"; - departmentType = 5; - name = "Head of Personnel RC" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aRp" = ( -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for shutters."; - id = "hop_office_desk"; - name = "Desk Privacy Shutter"; - pixel_y = 36 - }, -/obj/machinery/light_switch{ - pixel_x = -5; - pixel_y = 24 - }, -/obj/machinery/button/switch/windowtint{ - id = "hop"; - pixel_x = 5; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aRq" = ( -/obj/machinery/computer/guestpass{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aRr" = ( -/obj/machinery/keycard_auth{ - pixel_x = 24 - }, -/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/wood, -/area/crew_quarters/heads/hop) -"aRs" = ( -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"aRt" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/sign/flag/scc, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"aRu" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"aRv" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"aRw" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"aRx" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "conference" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "conference" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "conference" - }, -/turf/simulated/floor/plating, -/area/bridge/meeting_room) -"aRy" = ( -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Corridor Camera 2"; - dir = 4; - network = list("Command","Capt_Office") - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aRz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner_wide/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aRA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aRB" = ( -/obj/random/pottedplant, -/turf/simulated/floor/tiled, -/area/bridge) -"aRC" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "cap" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "cap" - }, -/obj/structure/window/reinforced/polarized{ - id = "cap" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "cap" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"aRD" = ( -/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/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/table/wood, -/obj/item/stack/packageWrap, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aRE" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/table/wood, -/obj/item/device/hand_labeler, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aRF" = ( -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/sign/flag/scc, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aRG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aRH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/device/radio/intercom/south, -/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/wood, -/area/crew_quarters/captain) -"aRI" = ( -/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/light, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aRJ" = ( -/obj/machinery/door/window{ - dir = 8; - icon_state = "right"; - name = "Captain's Desk Access"; - req_access = list(20) - }, -/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/carpet, -/area/crew_quarters/captain) -"aRK" = ( -/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/carpet, -/area/crew_quarters/captain) -"aRL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aRM" = ( -/obj/machinery/keycard_auth{ - pixel_y = -24 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aRN" = ( -/obj/machinery/disposal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aRO" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"aRP" = ( -/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, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"aRQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"aRR" = ( -/obj/machinery/keycard_auth{ - pixel_x = -24 - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for engine core."; - id = "EngineVent"; - name = "Engine Ventillatory Control"; - pixel_x = -24; - pixel_y = 10; - req_access = list(10) - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control-switch for the engine core airlock hatch bolts."; - id = "engine_access_hatch"; - name = "Engine Hatch Bolt Control"; - pixel_x = -24; - pixel_y = -10; - req_access = list(10); - specialfunctions = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/chief) -"aRS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/chief) -"aRT" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/button/switch/windowtint{ - pixel_x = 26; - pixel_y = -20; - range = 9 - }, -/obj/machinery/button/remote/airlock{ - id = "CEdoor"; - name = "Office Door Control"; - pixel_x = 36; - pixel_y = -20; - req_access = list(56) - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/chief) -"aRU" = ( -/obj/structure/table/standard, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/folder/yellow, -/obj/item/stamp/ce, -/obj/item/storage/slide_projector{ - pixel_y = 12 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/chief) -"aRV" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/chief) -"aRW" = ( -/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 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) -"aRX" = ( -/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" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) -"aRY" = ( -/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/command{ - id_tag = "CEdoor"; - name = "Chief Engineer's Office"; - req_access = list(56); - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) -"aRZ" = ( -/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/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aSa" = ( -/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/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aSb" = ( -/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 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aSc" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/obj/item/clothing/shoes/workboots/toeless, -/obj/item/clothing/shoes/workboots/toeless, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aSd" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/full, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aSe" = ( -/obj/machinery/computer/security/engineering{ - name = "Drone Monitoring Cameras" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aSf" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aSg" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aSh" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "Engie Delivery"; - name = "Engineering Conveyor" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aSi" = ( -/obj/machinery/conveyor{ - backwards = 1; - id = "Engie Delivery" - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aSj" = ( -/obj/machinery/suit_cycler/engineering, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aSk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - name = "E.V.A. Cycler Access"; - req_one_access = list(18); - dir = 4 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aSl" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/ai_monitored/storage/eva) -"aSm" = ( -/obj/structure/table/rack{ - dir = 8; - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/item/clothing/suit/space/void/skrell/white, -/obj/item/clothing/head/helmet/space/void/skrell/white, -/obj/item/clothing/shoes/magboots, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aSn" = ( -/obj/item/device/radio/intercom/west, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "conpipe-c" - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aSo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aSp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aSq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/power/apc/north{ - is_critical = 1 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aSr" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aSs" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "visit_blast"; - name = "Privacy Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/lobby) -"aSt" = ( -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aSu" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "visit_blast"; - name = "Privacy Shutters"; - pixel_x = 8; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aSv" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor{ - dir = 8; - name = "Visitation Window"; - req_access = list(2) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Security Lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aSw" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aSx" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/security/prison) -"aSy" = ( -/obj/machinery/washing_machine, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/white, -/area/security/prison) -"aSz" = ( -/obj/structure/table/standard, -/obj/structure/bedsheetbin, -/obj/item/toy/figure/hos, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/white, -/area/security/prison) -"aSA" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "Cell 5"; - name = "Cell Door" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/security/prison) -"aSB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Brig Lockdown"; - name = "Brig Lockdown Door"; - opacity = 0 - }, -/obj/machinery/door/window/brigdoor/eastright{ - id = "Cell 5"; - name = "Cell 5"; - req_access = list(2) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/prison) -"aSC" = ( -/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 = 9 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aSD" = ( -/obj/machinery/power/apc/west, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Starboard Corridor - Camera 3"; - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aSE" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "journalist" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "journalist" - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/journalistoffice) -"aSF" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/wood, -/area/journalistoffice) -"aSG" = ( -/obj/structure/bed/stool/chair, -/turf/simulated/floor/wood, -/area/journalistoffice) -"aSH" = ( -/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/hologram/holopad, -/turf/simulated/floor/wood, -/area/journalistoffice) -"aSI" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/journalistoffice) -"aSJ" = ( -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = -4 - }, -/obj/structure/table/wood, -/obj/item/glass_jar/peter, -/turf/simulated/floor/wood, -/area/journalistoffice) -"aSK" = ( -/obj/structure/closet, -/obj/item/clothing/head/ushanka, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"aSL" = ( -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"aSM" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"aSN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/loading/yellow, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/extinguisher_cabinet/west, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aSO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/starboard) -"aSP" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aSQ" = ( -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "hop" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "hop" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "hop" - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/hop) -"aSR" = ( -/obj/item/modular_computer/console/preset/command, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aSS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aST" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aSU" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/table/reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Head of Personnel's Office" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aSV" = ( -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"aSW" = ( -/obj/structure/table/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/item/book/manual/wiki/security_space_law, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"aSX" = ( -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"aSY" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/pen, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"aSZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "conference" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "conference" - }, -/turf/simulated/floor/plating, -/area/bridge/meeting_room) -"aTa" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aTb" = ( -/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/effect/floor_decal/corner_wide/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aTc" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/effect/floor_decal/corner_wide/paleblue/full, -/turf/simulated/floor/tiled, -/area/bridge) -"aTd" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "cap" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "cap" - }, -/obj/structure/window/reinforced/polarized{ - id = "cap" - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"aTe" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "cap" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "cap" - }, -/obj/structure/window/reinforced/polarized{ - id = "cap" - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"aTf" = ( -/turf/simulated/wall/r_wall, -/area/bridge/ailobby) -"aTg" = ( -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"aTh" = ( -/obj/structure/table/standard, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/rxglasses, -/obj/item/cane/crutch, -/obj/item/cane/crutch, -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) - }, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/syringes, -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"aTi" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/device/gps/engineering, -/obj/item/pipewrench, -/obj/item/grenade/chem_grenade/large/phoroncleaner, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) -"aTj" = ( -/obj/machinery/light_switch{ - pixel_y = -28 - }, -/obj/item/modular_computer/console/preset/engineering/ce, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/chief) -"aTk" = ( -/obj/item/modular_computer/console/preset/engineering, -/obj/machinery/newscaster/south{ - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/chief) -"aTl" = ( -/obj/structure/table/standard, -/obj/item/clothing/glasses/welding/superior{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/chief) -"aTm" = ( -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/chief) -"aTn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/photocopier/faxmachine{ - department = "Chief Engineer's Office" - }, -/obj/structure/table/standard, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) -"aTo" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized, -/obj/structure/window/reinforced/polarized{ - dir = 8 - }, -/obj/structure/window/reinforced/polarized{ - dir = 4 - }, -/obj/structure/window/reinforced/polarized{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/chief) -"aTp" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/floor_decal/corner/yellow/full, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aTq" = ( -/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/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aTr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aTs" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aTt" = ( -/obj/structure/closet/crate, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/firealarm/east, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aTu" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/engineering/foyer) -"aTv" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/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/engineering/foyer) -"aTw" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/door/window/brigdoor/northleft{ - name = "Engineering Desk"; - req_access = list(32) - }, -/obj/machinery/door/firedoor, -/obj/machinery/ringer_button{ - id = "engie_ringer"; - pixel_x = 5; - pixel_y = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aTx" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/engineering/foyer) -"aTy" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/engineering/foyer) -"aTz" = ( -/obj/machinery/conveyor{ - backwards = 1; - id = "Engie Delivery" - }, -/obj/structure/plasticflaps, -/obj/machinery/door/blast/shutters{ - id = "Singuloth"; - name = "Engineering delivery" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/foyer) -"aTA" = ( -/obj/machinery/suit_cycler/mining, -/obj/effect/floor_decal/corner/dark_blue/full, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aTB" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aTC" = ( -/obj/structure/reagent_dispensers/extinguisher, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aTD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue/full, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aTE" = ( -/obj/structure/dispenser/oxygen, -/obj/machinery/camera/network/security{ - c_tag = "EVA - Aft Camera"; - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aTF" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aTG" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/ai_monitored/storage/eva) -"aTH" = ( -/obj/structure/table/rack{ - dir = 8; - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/item/clothing/suit/space/void/skrell/black, -/obj/item/clothing/head/helmet/space/void/skrell/black, -/obj/item/clothing/shoes/magboots, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aTI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"aTJ" = ( -/obj/machinery/alarm/south, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled, -/area/bridge/minibar) -"aTK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"aTL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"aTM" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/security/lobby) -"aTN" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aTO" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aTP" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aTQ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aTR" = ( -/obj/machinery/alarm/south, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aTS" = ( -/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, -/area/security/lobby) -"aTT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aTU" = ( -/obj/machinery/door/airlock{ - id_tag = "visitdoor"; - name = "Visitation Area"; - req_access = list(1); - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aTV" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/prison{ - c_tag = "Security - Visitation Area"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aTW" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Security Lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/prison) -"aTX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera/network/prison{ - c_tag = "Security - Visitation"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aTY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aTZ" = ( -/obj/machinery/door/airlock{ - name = "Visitation Area"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Brig Lockdown"; - name = "Brig Lockdown Door"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/alarm/north, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUe" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUf" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUg" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/machinery/camera/network/prison{ - c_tag = "Security - Communal Brig Aft"; - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUh" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/toy/figure/secofficer{ - pixel_x = -3; - pixel_y = -1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/item/crowbar, -/obj/item/storage/bag/trash{ - pixel_x = 4 - }, -/obj/item/storage/bag/trash{ - pixel_x = 8 - }, -/obj/item/storage/bag/trash{ - pixel_x = 12 - }, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash{ - pixel_x = -4; - pixel_y = -2 - }, -/obj/item/storage/bag/trash{ - pixel_x = -9; - pixel_y = 2 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUi" = ( -/obj/structure/table/standard, -/obj/item/material/minihoe, -/obj/item/device/analyzer/plant_analyzer, -/obj/item/clothing/head/bandana/hydro, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUj" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 5"; - name = "Cell 5 Locker" - }, -/obj/machinery/light/small, -/obj/structure/sign/nosmoking_1{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUk" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera/network/prison{ - c_tag = "Security - Brig Cell 5"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUl" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aUm" = ( -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/security/brig) -"aUn" = ( -/obj/structure/table/wood, -/obj/item/folder/white, -/obj/item/folder/red, -/obj/item/folder/yellow, -/obj/item/folder/blue, -/obj/item/folder, -/turf/simulated/floor/carpet, -/area/journalistoffice) -"aUo" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/turf/simulated/floor/carpet, -/area/journalistoffice) -"aUp" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/pen/blue, -/obj/item/pen/red, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/item/paper_scanner{ - pixel_x = -8 - }, -/turf/simulated/floor/carpet, -/area/journalistoffice) -"aUq" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/item/device/taperecorder, -/obj/item/storage/photo_album, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/carpet, -/area/journalistoffice) -"aUr" = ( -/obj/structure/closet, -/turf/simulated/floor/wood, -/area/journalistoffice) -"aUs" = ( -/obj/structure/table/rack{ - dir = 1 - }, -/obj/item/clothing/suit/fire, -/obj/item/tank/oxygen, -/obj/item/clothing/mask/gas, -/obj/item/extinguisher, -/obj/item/clothing/head/hardhat/red, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"aUt" = ( -/obj/random/junk, -/obj/structure/closet/walllocker/firecloset{ - pixel_x = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"aUu" = ( -/obj/item/device/radio/intercom/west, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aUv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/starboard) -"aUw" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aUx" = ( -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "hop" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "hop" - }, -/obj/structure/grille, -/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/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/hop) -"aUy" = ( -/obj/item/modular_computer/console/preset/command/hop, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aUz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aUA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/closet/secure_closet, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aUB" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 4 - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Conference Room"; - dir = 4 - }, -/obj/machinery/button/switch/windowtint{ - id = "conference"; - pixel_x = 28; - pixel_y = -16 - }, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"aUC" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/item/storage/slide_projector{ - pixel_y = 16 - }, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"aUD" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/machinery/hologram/holopad/long_range, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"aUE" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"aUF" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "conference" - }, -/obj/structure/window/reinforced/polarized{ - id = "conference" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "conference" - }, -/turf/simulated/floor/plating, -/area/bridge/meeting_room) -"aUG" = ( -/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/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner_wide/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aUH" = ( -/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/effect/floor_decal/corner_wide/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aUI" = ( -/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/effect/floor_decal/corner_wide/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aUJ" = ( -/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/light{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/bridge) -"aUK" = ( -/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 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aUL" = ( -/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/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aUM" = ( -/obj/machinery/door/airlock/glass_command{ - name = "B Lift Access"; - req_access = list(19); - dir = 4 - }, -/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/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/ailobby) -"aUN" = ( -/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/machinery/firealarm/north, -/turf/simulated/floor/tiled, -/area/bridge/ailobby) -"aUO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/bridge/ailobby) -"aUP" = ( -/obj/machinery/alarm/north, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/ailobby) -"aUQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/bridge/ailobby) -"aUR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/newscaster/north, -/turf/simulated/floor/tiled, -/area/bridge/ailobby) -"aUS" = ( -/turf/simulated/floor/tiled, -/area/bridge/ailobby) -"aUT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Cyborg Station"; - req_access = list(19); - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/ailobby) -"aUU" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/computer/cryopod/robot{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/bridge/ailobby) -"aUV" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/bridge/ailobby) -"aUW" = ( -/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" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"aUX" = ( -/turf/simulated/wall/r_wall, -/area/janitor) -"aUY" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized, -/obj/structure/window/reinforced/polarized{ - dir = 8 - }, -/obj/structure/window/reinforced/polarized{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/chief) -"aUZ" = ( -/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/cable/green, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized, -/obj/structure/window/reinforced/polarized{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/chief) -"aVa" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized, -/obj/structure/window/reinforced/polarized{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/chief) -"aVb" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized, -/obj/structure/window/reinforced/polarized{ - dir = 4 - }, -/obj/structure/window/reinforced/polarized{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/chief) -"aVc" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/engineering/foyer) -"aVd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/engineering/foyer) -"aVe" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Hallway"; - req_one_access = list(10); - dir = 1 - }, -/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/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aVf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Hallway"; - req_one_access = list(10); - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aVg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/engineering/foyer) -"aVh" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall, -/area/engineering/foyer) -"aVi" = ( -/obj/machinery/alarm/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"aVj" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aVk" = ( -/obj/machinery/alarm/south, -/obj/structure/bed/stool/chair/plastic{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"aVl" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/ai_monitored/storage/eva) -"aVm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/sign/securearea, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/ai_monitored/storage/eva) -"aVn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - name = "E.V.A."; - req_one_access = list(18); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"aVo" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/sign/securearea, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/ai_monitored/storage/eva) -"aVp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/ai_monitored/storage/eva) -"aVq" = ( -/turf/simulated/wall, -/area/hallway/primary/port) -"aVr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/port) -"aVs" = ( -/turf/simulated/wall, -/area/hallway/primary/central_one) -"aVt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - desc = "It opens and closes. Hazardous lifeforms ahead. Caution advised!"; - name = "Security Lobby"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"aVu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/security/lobby) -"aVv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Security Lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/obj/machinery/door/airlock/glass_security{ - id_tag = ""; - name = "Security Aft Entrance"; - req_access = list(63); - dir = 1 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aVw" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aVx" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "journalist" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "journalist" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - id = "journalist" - }, -/turf/simulated/floor/plating, -/area/journalistoffice) -"aVy" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/journalistoffice) -"aVz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/journalistoffice) -"aVA" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Corporate Reporter" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet, -/area/journalistoffice) -"aVB" = ( -/obj/structure/table/wood, -/obj/item/device/camera_film, -/obj/item/device/camera, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/journalistoffice) -"aVC" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/journalistoffice) -"aVD" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/simulated/floor/wood, -/area/journalistoffice) -"aVE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aVF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/hallway/primary/starboard) -"aVG" = ( -/obj/structure/table/reinforced, -/obj/item/modular_computer/laptop/preset/command, -/obj/item/paper_scanner{ - pixel_x = 4; - pixel_y = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aVH" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aVI" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aVJ" = ( -/obj/structure/closet/secure_closet, -/obj/item/storage/box/partypopper, -/obj/item/book/manual/wiki/security_space_law, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aVK" = ( -/obj/machinery/alarm/west, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"aVL" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"aVM" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/pen{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/pen, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"aVN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"aVO" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/pen, -/obj/item/pen{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"aVP" = ( -/obj/structure/extinguisher_cabinet/south, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aVQ" = ( -/obj/machinery/power/apc/south, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/bridge) -"aVR" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aVS" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_command{ - name = "B Lift Access"; - req_access = list(19); - dir = 4 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/ailobby) -"aVT" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc/south, -/turf/simulated/floor/tiled, -/area/bridge/ailobby) -"aVU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/bridge/ailobby) -"aVV" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/bridge/ailobby) -"aVW" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/bridge/ailobby) -"aVX" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/bridge/ailobby) -"aVY" = ( -/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/plating, -/area/maintenance/research_port) -"aVZ" = ( -/obj/structure/sign/double/map/left{ - pixel_y = 32 - }, -/obj/machinery/power/apc/west, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/janitor) -"aWa" = ( -/obj/structure/bed/stool, -/obj/structure/sign/double/map/right{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"aWb" = ( -/obj/structure/table/steel, -/obj/item/deck/cards, -/obj/item/key/janicart, -/obj/item/device/radio/intercom/north, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"aWc" = ( -/obj/vehicle/train/cargo/trolley/pussywagon, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/dark, -/area/janitor) -"aWd" = ( -/obj/vehicle/train/cargo/engine/pussywagon, -/turf/simulated/floor/tiled/dark, -/area/janitor) -"aWe" = ( -/obj/machinery/button/remote/blast_door{ - id = "mopinator"; - name = "Custodial Garage"; - pixel_y = 32; - req_access = list(26) - }, -/turf/simulated/floor/tiled/dark, -/area/janitor) -"aWf" = ( -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "mopinator"; - name = "Custodial Garage" - }, -/turf/simulated/floor/tiled/dark, -/area/janitor) -"aWg" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aWh" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aWi" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aWj" = ( -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aWk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Port Corridor - Engineering Entrance" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aWl" = ( -/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/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aWm" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aWn" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/alarm/south, -/obj/machinery/bodyscanner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/medical/gen_treatment) -"aWo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Hallway"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aWq" = ( -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = 40 - }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = 32 - }, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aWr" = ( -/obj/item/device/radio/intercom/north, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aWs" = ( -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aWt" = ( -/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" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aWu" = ( -/obj/structure/table/standard, -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"aWv" = ( -/obj/structure/extinguisher_cabinet/north, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aWw" = ( -/obj/machinery/power/apc/north{ - is_critical = 1 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/medical) -"aWx" = ( -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aWy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aWz" = ( -/obj/machinery/door/firedoor{ - enable_smart_generation = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aWA" = ( -/obj/machinery/door/airlock/glass{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aWB" = ( -/obj/machinery/door/firedoor{ - enable_smart_generation = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWC" = ( -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = 40 - }, -/obj/structure/sign/directions/science{ - pixel_y = 32 - }, -/obj/structure/sign/directions/civ{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWD" = ( -/obj/structure/sign/directions/cryo{ - pixel_y = 28 - }, -/obj/structure/sign/directions/evac{ - pixel_y = 36 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWE" = ( -/obj/structure/sign/directions/security{ - dir = 4; - pixel_y = 24 - }, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_y = 32 - }, -/obj/structure/sign/directions/com{ - dir = 4; - pixel_y = 40 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWF" = ( -/obj/structure/sign/double/map/left{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWG" = ( -/obj/structure/sign/double/map/right{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWH" = ( -/obj/machinery/newscaster/north, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWI" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWJ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 40 - }, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_y = 32 - }, -/obj/structure/sign/directions/evac{ - dir = 8; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWK" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWL" = ( -/obj/structure/extinguisher_cabinet/north, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWN" = ( -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = 40 - }, -/obj/structure/sign/directions/science{ - dir = 8; - pixel_y = 32 - }, -/obj/structure/sign/directions/security{ - dir = 8; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWO" = ( -/obj/structure/sign/directions/evac{ - dir = 8; - pixel_y = 36 - }, -/obj/structure/sign/directions/cryo{ - dir = 8; - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWP" = ( -/obj/structure/sign/directions/civ{ - pixel_y = 24 - }, -/obj/structure/sign/directions/com{ - dir = 4; - pixel_y = 40 - }, -/obj/structure/sign/directions/medical{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWQ" = ( -/obj/machinery/door/airlock/glass{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aWR" = ( -/obj/machinery/camera/network/civilian_main{ - c_tag = "Starboard Corridor - Camera 1" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aWS" = ( -/obj/item/device/radio/intercom/north, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aWT" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aWU" = ( -/obj/machinery/newscaster/north, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aWV" = ( -/obj/machinery/atm{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aWW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aWX" = ( -/obj/machinery/camera/network/civilian_main{ - c_tag = "Starboard Corridor - Camera 2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aWY" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/item/device/radio/intercom/north, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aWZ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aXa" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/machinery/door/firedoor{ - enable_smart_generation = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aXb" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Eng"; - location = "S4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aXc" = ( -/obj/machinery/requests_console/west{ - department = "Journalist's Office" - }, -/obj/machinery/newscaster/south, -/turf/simulated/floor/carpet, -/area/journalistoffice) -"aXd" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/structure/noticeboard{ - desc = "A board for uncovering hidden conspiracies."; - dir = 1; - name = "corkboard"; - pixel_y = -32 - }, -/turf/simulated/floor/carpet, -/area/journalistoffice) -"aXe" = ( -/obj/machinery/power/apc/south, -/obj/structure/cable/green, -/turf/simulated/floor/carpet, -/area/journalistoffice) -"aXf" = ( -/obj/machinery/button/switch/windowtint{ - id = "journalist"; - pixel_y = -24 - }, -/turf/simulated/floor/carpet, -/area/journalistoffice) -"aXg" = ( -/obj/machinery/camera/network/civilian_main{ - c_tag = "Starboard Corridor - Journalist's Office"; - dir = 1 - }, -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/wood, -/area/journalistoffice) -"aXh" = ( -/obj/structure/reagent_dispensers/extinguisher, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"aXi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"aXj" = ( -/obj/effect/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/maintcentral) -"aXk" = ( -/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 = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"aXl" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aXm" = ( -/obj/structure/sign/nosmoking_1{ - pixel_y = -32 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Bridge - Head of Personnel Processing"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aXn" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aXo" = ( -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "hop" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "hop" - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced/polarized{ - id = "hop" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/hop) -"aXp" = ( -/obj/structure/table/reinforced, -/obj/item/device/eftpos{ - eftpos_name = "HoP EFTPOS scanner" - }, -/obj/item/toy/figure/corgi, -/obj/item/device/megaphone/command, -/obj/item/storage/slide_projector{ - pixel_y = 12 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aXq" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aXr" = ( -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Head of Personnel Desk"; - dir = 8 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aXs" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"aXt" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/sign/flag/scc, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"aXu" = ( -/obj/effect/floor_decal/corner/grey{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"aXv" = ( -/obj/machinery/alarm/south, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"aXw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/orange{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"aXx" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "conference" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "conference" - }, -/obj/structure/window/reinforced/polarized{ - id = "conference" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "conference" - }, -/turf/simulated/floor/plating, -/area/bridge/meeting_room) -"aXy" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aXz" = ( -/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/effect/floor_decal/corner_wide/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aXA" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner_wide/paleblue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aXB" = ( -/turf/simulated/wall, -/area/crew_quarters/heads/cryo) -"aXC" = ( -/turf/simulated/wall, -/area/bridge/ailobby) -"aXD" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/ailobby) -"aXE" = ( -/obj/structure/table/reinforced, -/obj/item/device/radio/intercom/south, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - AI Core Lift"; - dir = 1 - }, -/obj/structure/sign/drop{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/bridge/ailobby) -"aXF" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/ailobby) -"aXG" = ( -/obj/machinery/cryopod/robot, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/bridge/ailobby) -"aXH" = ( -/obj/structure/cable{ - 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{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"aXI" = ( -/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/door/airlock/maintenance{ - name = "Custodial Maintenance"; - req_access = list(26); - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"aXJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 8; - name = "Janitor Closet"; - sortType = "Janitor Closet" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/janitor) -"aXK" = ( -/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/bed/stool, -/obj/effect/landmark/start{ - name = "Janitor" - }, -/turf/simulated/floor/tiled, -/area/janitor) -"aXL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/steel, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"aXM" = ( -/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/item/reagent_containers/glass/bucket, -/turf/simulated/floor/tiled/dark, -/area/janitor) -"aXN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Janitor" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/janitor) -"aXO" = ( -/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, -/area/janitor) -"aXP" = ( -/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/door/blast/shutters{ - dir = 4; - id = "mopinator"; - name = "Custodial Garage" - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/janitor) -"aXQ" = ( -/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/effect/floor_decal/industrial/loading/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aXR" = ( -/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/port) -"aXS" = ( -/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/tiled, -/area/hallway/primary/port) -"aXT" = ( -/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 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aXU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aXV" = ( -/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 = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aXW" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "EXdoor2"; - name = "Office Door Control"; - pixel_x = 36; - pixel_y = -14; - req_access = list(5) - }, -/obj/machinery/button/switch/windowtint{ - id = "ExamR2"; - pixel_x = 28; - pixel_y = -14; - req_access = list(5) - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Examination Room 2"; - dir = 4 - }, -/obj/machinery/power/apc/west, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/carpet/cyan, -/area/medical/exam_room2) -"aXX" = ( -/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/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aXY" = ( -/obj/structure/cable{ - 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, -/area/hallway/primary/port) -"aXZ" = ( -/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/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aYa" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/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/plating, -/area/hallway/primary/port) -"aYb" = ( -/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/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Port Corridor - Camera 2"; - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aYc" = ( -/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, -/area/hallway/primary/port) -"aYd" = ( -/obj/structure/cable{ - 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{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aYe" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - 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 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aYf" = ( -/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, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aYg" = ( -/obj/structure/cable{ - 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 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aYh" = ( -/obj/machinery/alarm/east, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"aYi" = ( -/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/machinery/door/firedoor{ - enable_smart_generation = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aYj" = ( -/obj/machinery/door/airlock/glass{ - dir = 4 - }, -/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, -/area/hallway/primary/port) -"aYk" = ( -/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/machinery/door/firedoor{ - enable_smart_generation = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aYl" = ( -/obj/structure/table/standard, -/obj/item/folder/white, -/obj/item/pen, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/carpet/cyan, -/area/medical/exam_room2) -"aYm" = ( -/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{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aYn" = ( -/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, -/area/hallway/primary/central_one) -"aYo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aYp" = ( -/obj/machinery/door/airlock/glass{ - dir = 4 - }, -/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, -/area/hallway/primary/starboard) -"aYq" = ( -/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/machinery/door/firedoor{ - enable_smart_generation = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aYr" = ( -/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{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aYs" = ( -/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/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aYt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aYu" = ( -/obj/structure/sign/directions/evac{ - dir = 8; - pixel_x = 32 - }, -/obj/structure/sign/directions/com{ - dir = 1; - pixel_x = 32; - pixel_y = 8 - }, -/obj/structure/sign/directions/medical{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aYv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(70); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/journalistoffice) -"aYw" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"aYx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"aYy" = ( -/turf/simulated/wall, -/area/maintenance/substation/command) -"aYz" = ( -/obj/machinery/door/airlock/engineering{ - name = "Command Substation"; - req_one_access = list(11,24); - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/substation/command) -"aYA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - id_tag = "hopdoor"; - name = "Head of Personnel's Office"; - req_access = list(57); - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aYB" = ( -/obj/effect/floor_decal/corner_wide/mauve/full, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/reinforced{ - table_mat = "steel"; - table_reinf = "mhydrogen" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/strongroom) -"aYC" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aYD" = ( -/obj/machinery/recharger, -/obj/structure/table/reinforced, -/obj/machinery/ringer/east{ - department = "Head of Personnel's Office"; - id = "hop_ringer"; - req_access = list(57) - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aYE" = ( -/turf/simulated/floor/tiled/ramp/bottom, -/area/bridge/meeting_room) -"aYF" = ( -/obj/machinery/vending/coffee, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aYG" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aYH" = ( -/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, -/area/bridge/meeting_room) -"aYI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/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, -/area/bridge/meeting_room) -"aYJ" = ( -/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; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aYK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Conference Room"; - req_access = list(19); - 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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aYL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aYM" = ( -/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/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner_wide/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aYN" = ( -/obj/structure/table/standard, -/obj/machinery/recharger, -/obj/machinery/alarm/south, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"aYO" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/cryo) -"aYP" = ( -/obj/machinery/computer/cryopod{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/cryo) -"aYQ" = ( -/obj/machinery/cryopod, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/cryo) -"aYR" = ( -/obj/structure/cryofeed, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/cryo) -"aYS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(19); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/bridge/ailobby) -"aYT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"aYU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/newscaster/west, -/turf/simulated/floor/tiled, -/area/janitor) -"aYV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/janitor) -"aYW" = ( -/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, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"aYX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access = list(26); - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"aYY" = ( -/obj/machinery/button/remote/blast_door{ - id = "mopinator"; - name = "Custodial Garage"; - pixel_y = -32; - req_access = list(26) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aYZ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/noticeboard{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aZa" = ( -/obj/structure/extinguisher_cabinet/south, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aZb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aZc" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=CP1"; - location = "Eng" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aZd" = ( -/obj/machinery/light, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aZf" = ( -/obj/machinery/power/apc/south, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aZg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aZh" = ( -/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/hallway/primary/port) -"aZi" = ( -/obj/structure/table/standard, -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/obj/structure/sign/flag/scc{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"aZj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/alarm/south, -/obj/machinery/light, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"aZk" = ( -/obj/machinery/door/firedoor{ - enable_smart_generation = 0 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aZl" = ( -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"aZm" = ( -/obj/machinery/door/airlock/glass{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aZo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aZp" = ( -/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/navbeacon{ - codes_txt = "patrol;next_patrol=CP2"; - location = "CP1" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aZq" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aZr" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aZs" = ( -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aZt" = ( -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aZu" = ( -/obj/item/device/radio/intercom/south, -/obj/machinery/light, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Central Corridor - Security Entrance"; - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aZw" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aZx" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aZy" = ( -/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/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=S1"; - location = "CS2" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aZz" = ( -/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/central_one) -"aZA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - enable_smart_generation = 0 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aZB" = ( -/obj/machinery/door/airlock/glass{ - 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/starboard) -"aZC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - enable_smart_generation = 0 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aZD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/closet/walllocker/emerglocker/south, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aZE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aZF" = ( -/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/starboard) -"aZG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm/south, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aZH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/device/radio/intercom/south, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aZI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/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/starboard) -"aZJ" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aZL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aZM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Starboard Corridor - Medbay Entrance"; - dir = 1 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aZN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=S2"; - location = "S1" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aZO" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(12,66); - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"aZP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"aZQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"aZR" = ( -/obj/effect/decal/cleanable/generic, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"aZS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm/north, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"aZT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"aZU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - 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" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"aZV" = ( -/obj/machinery/power/apc/west, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/maintenance/substation/command) -"aZW" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Command Subgrid"; - name_tag = "Command Subgrid" - }, -/obj/structure/sign/electricshock{ - pixel_x = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/command) -"aZX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aZY" = ( -/obj/machinery/door/window/brigdoor{ - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - name = "Head of Personnel's Desk"; - req_access = list(57) - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aZZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"baa" = ( -/obj/machinery/photocopier, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"bab" = ( -/obj/machinery/power/apc/south, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"bac" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"bad" = ( -/obj/machinery/requests_console/south{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"bae" = ( -/obj/machinery/lapvend, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"baf" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/light, -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = 7 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"bag" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"bah" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/cryo) -"bai" = ( -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/cryo) -"baj" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/alarm/south, -/turf/simulated/floor/grass, -/area/hydroponics) -"bak" = ( -/obj/structure/cryofeed, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/cryo) -"bal" = ( -/turf/simulated/open, -/area/turbolift/ai_station) -"bam" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/maintcentral) -"ban" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bao" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"bap" = ( -/obj/machinery/camera/network/service{ - c_tag = "Janitor - Garage"; - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"baq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"bar" = ( -/obj/structure/closet/crate/trashcart, -/obj/machinery/requests_console/south{ - department = "Janitorial"; - departmentType = 1 - }, -/obj/item/storage/bag/trash, -/turf/simulated/floor/tiled, -/area/janitor) -"bas" = ( -/obj/machinery/vending/coffee, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/janitor) -"bat" = ( -/obj/machinery/vending/cigarette, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/janitor) -"bau" = ( -/turf/simulated/wall, -/area/janitor) -"bav" = ( -/obj/machinery/newscaster/south{ - }, -/obj/effect/floor_decal/corner/yellow/full, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"baw" = ( -/obj/machinery/firealarm/south, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"bax" = ( -/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/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"bay" = ( -/obj/item/device/radio/intercom/south, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"baz" = ( -/obj/machinery/vending/zora, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"baA" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"baB" = ( -/obj/machinery/atm{ - pixel_y = -32 - }, -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"baC" = ( -/obj/machinery/vending/cigarette, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"baD" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled, -/area/hydroponics) -"baE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/conveyor{ - dir = 4; - id = "Robocompo" - }, -/obj/structure/plasticflaps/mining, -/turf/simulated/floor/tiled, -/area/assembly/robotics/workshop) -"baF" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/machinery/door/firedoor{ - enable_smart_generation = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"baG" = ( -/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/door/firedoor{ - enable_smart_generation = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"baH" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/door/firedoor{ - enable_smart_generation = 0 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"baI" = ( -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) -"baJ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/door/firedoor{ - enable_smart_generation = 0 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"baK" = ( -/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/structure/disposalpipe/segment, -/obj/machinery/door/firedoor{ - enable_smart_generation = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"baL" = ( -/turf/simulated/wall/r_wall, -/area/medical/pharmacy) -"baM" = ( -/turf/simulated/wall, -/area/medical/medbay) -"baN" = ( -/turf/simulated/wall, -/area/medical/icu) -"baO" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/cola, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"baP" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"baQ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"baS" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/sign/greencross, -/turf/simulated/floor/plating, -/area/hallway/primary/starboard) -"baT" = ( -/turf/simulated/wall, -/area/crew_quarters/medbreak) -"baU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/door/airlock/maintenance{ - req_access = list(66); - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/medbreak) -"baV" = ( -/obj/effect/decal/cleanable/dirt, -/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/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"baW" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/machinery/alarm/west, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Bridge Substation"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/command) -"baX" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Command Main" - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/command) -"baY" = ( -/obj/machinery/newscaster/west, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"baZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"bba" = ( -/obj/structure/table/wood, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"bbb" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"bbc" = ( -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"bbd" = ( -/obj/machinery/light_switch{ - pixel_x = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"bbe" = ( -/obj/machinery/door/airlock{ - name = "Restroom"; - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/bridge/meeting_room) -"bbf" = ( -/turf/simulated/wall/r_wall, -/area/bridge/meeting_room) -"bbg" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/machinery/newscaster/west, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"bbh" = ( -/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/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"bbi" = ( -/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/effect/floor_decal/corner_wide/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"bbj" = ( -/obj/machinery/door/airlock/command{ - name = "Cryogenic Storage"; - req_access = list(19); - dir = 4 - }, -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/cryo) -"bbk" = ( -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/carpet/cyan, -/area/crew_quarters/heads/cryo) -"bbl" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/carpet/cyan, -/area/crew_quarters/heads/cryo) -"bbm" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/carpet/cyan, -/area/crew_quarters/heads/cryo) -"bbn" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/blue, -/turf/simulated/floor/carpet/cyan, -/area/crew_quarters/heads/cryo) -"bbo" = ( -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bbp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access = list(26); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"bbq" = ( -/turf/simulated/wall, -/area/storage/tech) -"bbr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage"; - req_access = list(23); - 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" - }, -/turf/simulated/floor/plating, -/area/storage/tech) -"bbs" = ( -/turf/simulated/wall, -/area/maintenance/research_port) -"bbt" = ( -/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/plating, -/area/maintenance/research_port) -"bbu" = ( -/turf/simulated/wall, -/area/assembly/robotics) -"bbv" = ( -/obj/machinery/alarm/east, -/turf/simulated/floor/reinforced, -/area/rnd/telesci) -"bbw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/alarm/south, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"bbx" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/tray, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics_cyborgification) -"bby" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/spray/cleaner, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics_cyborgification) -"bbz" = ( -/obj/machinery/computer/operating{ - name = "Robotics Operating Computer" - }, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics_cyborgification) -"bbA" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/closet/secure_closet/medical2{ - req_access = list(29) - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics_cyborgification) -"bbB" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Cyborgification"; - network = list("Research","Toxins Test Area"); - pixel_x = -1 - }, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled, -/area/assembly/robotics_cyborgification) -"bbC" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/sign/flag/scc/large/north, -/turf/simulated/floor/tiled, -/area/assembly/robotics_cyborgification) -"bbD" = ( -/obj/structure/closet/crate/trashcart, -/obj/random/junk, -/obj/random/junk, -/obj/random_produce, -/obj/random_produce, -/obj/random_produce, -/obj/random/junk, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) - }, -/obj/effect/decal/cleanable/dirt, -/obj/random/loot, -/mob/living/simple_animal/rat/irish, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bbE" = ( -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bbF" = ( -/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, -/area/hallway/primary/central_one) -"bbG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bbI" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'ELEVATOR AHEAD'."; - name = "\improper ELEVATOR AHEAD"; - pixel_x = 32 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bbJ" = ( -/turf/simulated/floor/plating, -/area/turbolift/main_station) -"bbK" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bbL" = ( -/obj/structure/cable{ - 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/central_one) -"bbM" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "CHE2shutters"; - name = "Pharmacy Window Shutters" - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/medical/pharmacy) -"bbN" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/spray/cleaner, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner/orange/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"bbO" = ( -/obj/structure/table/standard, -/obj/item/device/radio/intercom/north, -/obj/item/clothing/glasses/safety/goggles, -/obj/effect/floor_decal/corner/orange{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"bbP" = ( -/obj/structure/table/standard, -/obj/structure/extinguisher_cabinet/north, -/obj/item/reagent_containers/glass/beaker/large, -/obj/effect/floor_decal/corner/orange{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"bbQ" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/vials, -/obj/item/reagent_containers/dropper, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/orange/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"bbR" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/vials, -/obj/item/reagent_containers/dropper, -/obj/effect/floor_decal/corner/orange/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"bbS" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/spray/cleaner, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner/orange/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"bbT" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/floor_decal/corner/orange{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"bbU" = ( -/obj/structure/stairs/west, -/turf/simulated/floor/tiled, -/area/medical/medbay) -"bbV" = ( -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/medical/medbay) -"bbW" = ( -/obj/effect/floor_decal/sign/v, -/obj/item/device/radio/intercom/east, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bbX" = ( -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/bar) -"bbY" = ( -/obj/machinery/atmospherics/unary/cryo_cell, -/turf/simulated/floor/tiled/dark, -/area/medical/icu) -"bbZ" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/cryo_cell, -/turf/simulated/floor/tiled/dark, -/area/medical/icu) -"bca" = ( -/obj/structure/closet/walllocker/medical/secure{ - name = "O- Blood Locker"; - pixel_y = 32 - }, -/obj/item/reagent_containers/blood/OMinus, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"bcb" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/beige/full, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/body_scanconsole{ - dir = 4 - }, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled/dark, -/area/medical/icu) -"bcc" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/bodyscanner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/icu) -"bcd" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bce" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bcf" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bch" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/hallway/primary/starboard) -"bci" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "medlounge" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "medlounge" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "medlounge" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/medbreak) -"bcj" = ( -/obj/random/pottedplant, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/medbreak) -"bck" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/medbreak) -"bcl" = ( -/obj/machinery/vending/cigarette, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/medbreak) -"bcm" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/medbreak) -"bcn" = ( -/obj/structure/table/glass, -/obj/item/storage/box/fancy/donut, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/newscaster/north, -/turf/simulated/floor/tiled, -/area/crew_quarters/medbreak) -"bco" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/bed/stool/padded/red, -/obj/structure/sink{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/medbreak) -"bcp" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/medbreak) -"bcq" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/standard, -/obj/machinery/chemical_dispenser/bar_soft/full, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Break Room" - }, -/obj/machinery/ringer/north{ - department = "Medbay"; - id = "medbay_ringer"; - req_access = list(5) - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/medbreak) -"bcr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bcs" = ( -/obj/machinery/door/airlock/engineering{ - name = "Command Substation"; - req_one_access = list(11,24); - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/substation/command) -"bct" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/command) -"bcu" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Command Main Substation Bypass" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/command) -"bcv" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"bcw" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"bcx" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/stamp, -/obj/item/stamp/denied, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"bcy" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control-switch for the office door."; - id = "hopdoor"; - name = "Office Door Control"; - pixel_x = -26; - pixel_y = 17; - req_access = list(57) - }, -/obj/effect/landmark/start{ - name = "Head of Personnel" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"bcz" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor{ - base_state = "rightsecure"; - dir = 8; - icon_state = "rightsecure"; - req_access = list(57) - }, -/mob/living/simple_animal/corgi/Ian, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"bcA" = ( -/obj/machinery/alarm/west, -/obj/machinery/light_switch{ - pixel_x = -5; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/freezer, -/area/bridge/meeting_room) -"bcB" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/freezer, -/area/bridge/meeting_room) -"bcC" = ( -/obj/structure/table/wood, -/turf/simulated/floor/wood, -/area/bridge) -"bcD" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/carpet, -/area/bridge) -"bcE" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/wood, -/area/bridge) -"bcF" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/bridge) -"bcG" = ( -/obj/machinery/firealarm/west, -/turf/simulated/floor/carpet/cyan, -/area/crew_quarters/heads/cryo) -"bcH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet/cyan, -/area/crew_quarters/heads/cryo) -"bcI" = ( -/turf/simulated/floor/carpet/cyan, -/area/crew_quarters/heads/cryo) -"bcJ" = ( -/obj/item/device/radio/intercom/east, -/turf/simulated/floor/carpet/cyan, -/area/crew_quarters/heads/cryo) -"bcK" = ( -/obj/structure/janitorialcart, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"bcL" = ( -/obj/structure/sink/kitchen{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"bcM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/janitor) -"bcN" = ( -/turf/simulated/floor/tiled, -/area/janitor) -"bcO" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room2) -"bcP" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled, -/area/janitor) -"bcQ" = ( -/turf/simulated/wall/r_wall, -/area/storage/tech) -"bcR" = ( -/obj/machinery/vending/assist, -/turf/simulated/floor/plating, -/area/storage/tech) -"bcS" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/north, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/storage/tech) -"bcT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/storage/tech) -"bcU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/storage/tech) -"bcV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm/north, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/storage/tech) -"bcW" = ( -/obj/structure/table/rack{ - dir = 8; - }, -/obj/item/device/analyzer/plant_analyzer, -/obj/item/device/healthanalyzer, -/obj/item/device/analyzer, -/obj/item/device/analyzer, -/turf/simulated/floor/plating, -/area/storage/tech) -"bcX" = ( -/obj/structure/reagent_dispensers/extinguisher, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bcY" = ( -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bcZ" = ( -/obj/structure/bed/stool/padded/red, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) - }, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"bda" = ( -/obj/structure/table/standard, -/obj/item/device/mmi, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/device/radio/intercom/west, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics_cyborgification) -"bdb" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics_cyborgification) -"bdc" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics_cyborgification) -"bdd" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics_cyborgification) -"bde" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/assembly/robotics_cyborgification) -"bdf" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/assembly/robotics_cyborgification) -"bdg" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "CybGlass" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "CybGlass" - }, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/assembly/robotics_cyborgification) -"bdh" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bdi" = ( -/obj/structure/cable{ - 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, -/area/hallway/primary/central_one) -"bdj" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bdk" = ( -/obj/structure/sign/directions/engineering{ - dir = 1; - pixel_y = -8 - }, -/obj/structure/sign/directions/security{ - dir = 1 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/sign/directions/com{ - dir = 1; - pixel_y = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"bdm" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/turbolift/main_station) -"bdn" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bdo" = ( -/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/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bdp" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bdq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "CHE2shutters"; - name = "Pharmacy Window Shutters" - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced, -/turf/simulated/floor/plating, -/area/medical/pharmacy) -"bdr" = ( -/obj/machinery/chemical_dispenser/full, -/obj/effect/floor_decal/corner/orange{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"bds" = ( -/obj/machinery/chemical_dispenser/full{ - dir = 1 - }, -/obj/effect/floor_decal/corner/orange{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"bdt" = ( -/obj/structure/bed/stool/chair/office/light, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"bdu" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/orange{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"bdv" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "ExamR2" - }, -/obj/structure/window/reinforced/polarized{ - id = "ExamR2" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "ExamR2" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "ExamR2" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/exam_room2) -"bdw" = ( -/obj/structure/closet/wardrobe/pharmacy_white, -/obj/machinery/firealarm/east, -/obj/machinery/power/apc/south, -/obj/structure/cable/green, -/obj/item/clothing/gloves/latex/nitrile/tajara, -/obj/item/clothing/gloves/latex/nitrile/tajara, -/obj/item/clothing/gloves/latex/nitrile/unathi, -/obj/item/clothing/gloves/latex/nitrile/unathi, -/obj/effect/floor_decal/corner/orange{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"bdx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/alarm/east, -/turf/simulated/floor/wood, -/area/chapel/main) -"bdy" = ( -/obj/machinery/vending/medical{ - density = 0; - pixel_x = -32 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bdz" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bdA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bdB" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/disposalpipe/tagger{ - dir = 4; - name = "Medical Bay"; - sort_tag = "Medical Bay" - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/medical/icu) -"bdC" = ( -/obj/structure/closet/walllocker/medical/secure{ - name = "Stabilization Kit"; - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/reagent_containers/glass/bottle/inaprovaline, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/obj/item/storage/pill_bottle/mortaphenyl, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/item/auto_cpr, -/turf/simulated/floor/tiled/dark, -/area/medical/icu) -"bdD" = ( -/obj/effect/floor_decal/corner/beige/full{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/icu) -"bdE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"bdF" = ( -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"bdG" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/iv_drip, -/obj/item/device/radio/intercom/east, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"bdH" = ( -/obj/machinery/alarm/west, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet/cyan, -/area/medical/exam_room2) -"bdI" = ( -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_x = -1; - pixel_y = 7 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/cyan, -/area/medical/exam_room2) -"bdJ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room2) -"bdK" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/firealarm/east, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room2) -"bdL" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/primary/starboard) -"bdM" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/primary/starboard) -"bdN" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/primary/starboard) -"bdO" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "medlounge" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "medlounge" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/medbreak) -"bdP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/medbreak) -"bdQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/medbreak) -"bdR" = ( -/obj/machinery/alarm/south{ - req_one_access = list(24,11,55) - }, -/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/plating, -/area/maintenance/library) -"bdS" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/crew_quarters/medbreak) -"bdT" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/medbreak) -"bdU" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/bed/stool/padded/red, -/turf/simulated/floor/tiled, -/area/crew_quarters/medbreak) -"bdV" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/medbreak) -"bdW" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/standard, -/obj/item/storage/box/drinkingglasses{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/obj/item/reagent_containers/glass/beaker/pitcher{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/medbreak) -"bdX" = ( -/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/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bdY" = ( -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Head of Personnel's Office"; - dir = 1 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"bdZ" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/obj/structure/cable/green, -/obj/machinery/power/apc/south, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"bea" = ( -/obj/structure/table/wood, -/obj/item/stack/packageWrap, -/obj/item/device/hand_labeler, -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/stack/wrapping_paper, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"beb" = ( -/obj/machinery/button/switch/windowtint{ - id = "hop"; - pixel_y = -24; - range = 9 - }, -/obj/machinery/requests_console/east{ - announcementConsole = 1; - department = "Head of Personnel's Desk"; - departmentType = 5; - name = "Head of Personnel RC"; - pixel_y = -30 - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for shutters."; - id = "hop_office_desk"; - name = "Desk Privacy Shutter"; - pixel_y = -36 - }, -/obj/item/modular_computer/console/preset/command/account, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"bec" = ( -/obj/machinery/papershredder, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"bed" = ( -/obj/machinery/computer/security/mining, -/obj/machinery/atm{ - pixel_x = 32 - }, -/obj/item/storage/secure/safe{ - pixel_x = 5; - pixel_y = -28 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"bee" = ( -/turf/simulated/floor/tiled/freezer, -/area/bridge/meeting_room) -"bef" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 32 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/freezer, -/area/bridge/meeting_room) -"beg" = ( -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Auxiliary Office"; - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/bridge) -"beh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/carpet, -/area/bridge) -"bei" = ( -/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/wood, -/area/bridge) -"bej" = ( -/obj/machinery/door/airlock/glass_command{ - id_tag = ""; - name = "Auxiliary Office"; - req_access = list(19); - 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 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/wood, -/area/bridge) -"bek" = ( -/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/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"bel" = ( -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/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/light, -/obj/effect/floor_decal/corner_wide/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"bem" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/newscaster/security_unit/west, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/carpet/cyan, -/area/crew_quarters/heads/cryo) -"ben" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/alarm/south, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"beo" = ( -/obj/machinery/disposal, -/obj/machinery/alarm/south, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/chapel/office) -"bep" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"beq" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/janitor) -"ber" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"bes" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"bet" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled, -/area/janitor) -"beu" = ( -/obj/structure/table/rack{ - dir = 8; - }, -/obj/item/circuitboard/borgupload{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/circuitboard/aiupload{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/reinforced, -/area/storage/tech) -"bev" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Secure Technical Storage" - }, -/turf/simulated/floor/reinforced, -/area/storage/tech) -"bew" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/simulated/wall/r_wall, -/area/storage/tech) -"bex" = ( -/turf/simulated/floor/plating, -/area/storage/tech) -"bey" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/storage/tech) -"bez" = ( -/obj/structure/table/rack{ - dir = 8; - }, -/obj/item/circuitboard/rdconsole, -/obj/item/circuitboard/rdserver{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/storage/tech) -"beA" = ( -/obj/structure/table/rack{ - dir = 8; - }, -/obj/item/circuitboard/security{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/simulated/floor/plating, -/area/storage/tech) -"beB" = ( -/obj/structure/table/rack{ - dir = 8; - }, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/device/multitool, -/turf/simulated/floor/plating, -/area/storage/tech) -"beC" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"beD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/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/research_port) -"beE" = ( -/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/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"beF" = ( -/obj/machinery/alarm/east, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/bar) -"beG" = ( -/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/plating, -/area/maintenance/research_port) -"beH" = ( -/obj/machinery/alarm/south, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"beI" = ( -/obj/machinery/alarm/east, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"beJ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/sink{ - dir = 4; - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics_cyborgification) -"beK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics_cyborgification) -"beL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics_cyborgification) -"beM" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4; - name = "adjusted light fixture"; - pixel_y = 16; - icon_state = "tube_empty" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics_cyborgification) -"beN" = ( -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/crew_quarters/bar) -"beO" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"beP" = ( -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = -4 - }, -/obj/structure/sign/directions/cryo{ - dir = 4; - pixel_y = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/sign/directions/medical{ - pixel_y = 12 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"beQ" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"beR" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"beS" = ( -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"beT" = ( -/obj/machinery/chem_master{ - dir = 4 - }, -/obj/effect/floor_decal/corner/orange{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"beU" = ( -/obj/machinery/alarm/south, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"beV" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"beW" = ( -/obj/machinery/smartfridge/secure/medbay{ - name = "\improper Secure Refrigerated Medicine Storage"; - req_one_access = list(33) - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"beX" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "CHE3shutters"; - name = "Pharmacy Desk Shutter" - }, -/obj/machinery/door/window/brigdoor/northright{ - dir = 8; - name = "Pharmacy Desk"; - req_access = list(33) - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"beY" = ( -/obj/effect/floor_decal/corner_wide/lime, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"beZ" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bfa" = ( -/obj/effect/floor_decal/corner/pink/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"bfb" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"bfc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/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/white, -/area/medical/icu) -"bfd" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"bfe" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/bed/roller, -/obj/machinery/ringer/east{ - department = "Medbay"; - id = "medbay_ringer"; - req_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"bff" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "ExamR1" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "ExamR1" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "ExamR1" - }, -/obj/structure/window/reinforced/polarized{ - id = "ExamR1" - }, -/turf/simulated/floor/plating, -/area/medical/exam_room) -"bfg" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/airlock/medical{ - id_tag = "EXdoor1"; - name = "Examination Room 1"; - req_one_access = list(5); - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"bfh" = ( -/turf/simulated/wall, -/area/medical/exam_room2) -"bfi" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/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/white, -/area/medical/exam_room2) -"bfj" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room2) -"bfk" = ( -/turf/simulated/floor/tiled/white, -/area/hallway/primary/starboard) -"bfl" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/hallway/primary/starboard) -"bfm" = ( -/obj/structure/bed/stool/chair/padded/beige, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/medbreak) -"bfn" = ( -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/medbreak) -"bfo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/medbreak) -"bfp" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/alarm/east, -/turf/simulated/floor/plating, -/area/maintenance/substation/supply) -"bfq" = ( -/obj/effect/floor_decal/corner/white/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, -/area/crew_quarters/medbreak) -"bfr" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/medbreak) -"bfs" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/medbreak) -"bft" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/standard, -/obj/machinery/chemical_dispenser/coffee/full, -/turf/simulated/floor/tiled, -/area/crew_quarters/medbreak) -"bfu" = ( -/obj/structure/cable{ - 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 = 1; - icon_state = "pipe-c" - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bfv" = ( -/obj/structure/disposalpipe/segment{ - 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 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bfw" = ( -/obj/structure/cable{ - 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/plating, -/area/maintenance/maintcentral) -"bfx" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/east, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - 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 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bfy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(57); - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/hop) -"bfz" = ( -/obj/machinery/door/airlock{ - id_tag = "command_unit_1"; - name = "Unit 1"; - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/bridge/meeting_room) -"bfA" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/wood, -/area/bridge) -"bfB" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/bridge) -"bfC" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/machinery/light_switch{ - pixel_x = 32 - }, -/turf/simulated/floor/wood, -/area/bridge) -"bfD" = ( -/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, -/obj/machinery/door/airlock/glass_command{ - id_tag = ""; - name = "Bridge"; - req_one_access = list(19,38,72); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"bfE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - id_tag = ""; - name = "Bridge"; - req_one_access = list(19,38,72); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"bfF" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/large_stock_marker, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bfG" = ( -/obj/structure/janitorialcart, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/janitor) -"bfH" = ( -/obj/structure/closet/secure_closet/custodial, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/janitor) -"bfI" = ( -/obj/structure/table/steel, -/obj/item/watertank/janitor, -/turf/simulated/floor/tiled, -/area/janitor) -"bfJ" = ( -/obj/structure/table/rack, -/obj/item/storage/box/mousetraps{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/storage/box/mousetraps{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/storage/box/mousetraps, -/obj/item/storage/box/mousetraps{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/trap/animal, -/obj/item/trap/animal, -/turf/simulated/floor/tiled, -/area/janitor) -"bfK" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/structure/closet/crate/software_backup, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/reinforced, -/area/storage/tech) -"bfL" = ( -/turf/simulated/floor/reinforced, -/area/storage/tech) -"bfM" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage"; - req_access = list(19,23); - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/reinforced, -/area/storage/tech) -"bfN" = ( -/obj/structure/table/rack{ - dir = 8; - }, -/obj/item/circuitboard/security/mining, -/obj/item/circuitboard/autolathe{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/simulated/floor/plating, -/area/storage/tech) -"bfO" = ( -/obj/structure/table/rack{ - dir = 8; - }, -/obj/item/circuitboard/security/engineering, -/obj/item/circuitboard/atmos_alert{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/simulated/floor/plating, -/area/storage/tech) -"bfP" = ( -/obj/structure/table/rack{ - dir = 8; - }, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow/specialu, -/obj/item/clothing/gloves/yellow/specialt, -/obj/item/device/t_scanner, -/obj/item/device/multitool, -/turf/simulated/floor/plating, -/area/storage/tech) -"bfQ" = ( -/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/plating, -/area/maintenance/research_port) -"bfR" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - 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/plating, -/area/maintenance/research_port) -"bfS" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bfT" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/assembly/robotics/workshop) -"bfU" = ( -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"bfV" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bfW" = ( -/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/maintenance/research_port) -"bfX" = ( -/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 = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"bfY" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/power/apc/south, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics_cyborgification) -"bfZ" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/door/window/eastleft{ - name = "Surgery"; - req_access = list(29) - }, -/turf/simulated/floor/tiled/ramp{ - dir = 8 - }, -/area/assembly/robotics_cyborgification) -"bga" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics_cyborgification) -"bgb" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/alarm/east, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"bgc" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - id = "CybGlass" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "CybGlass" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "CybGlass" - }, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/assembly/robotics_cyborgification) -"bgd" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bge" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/sign/directions/science{ - pixel_y = -4 - }, -/obj/structure/sign/directions/civ{ - pixel_y = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"bgf" = ( -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/turbolift/main_station) -"bgg" = ( -/obj/structure/extinguisher_cabinet/west, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Central Corridor - Camera 7"; - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bgh" = ( -/obj/structure/cable{ - 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, -/area/hallway/primary/central_one) -"bgi" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bgj" = ( -/obj/structure/table/standard, -/obj/machinery/requests_console/north{ - department = "Medical Bay"; - departmentType = 1 - }, -/obj/item/stack/packageWrap, -/obj/item/device/destTagger, -/obj/item/device/hand_labeler, -/obj/item/stack/wrapping_paper, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/item/paper_bin{ - pixel_x = -1; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = -4; - pixel_y = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bgk" = ( -/obj/structure/table/standard, -/obj/item/device/hand_labeler{ - pixel_y = -20 - }, -/obj/item/screwdriver, -/obj/effect/floor_decal/corner/orange{ - dir = 9 - }, -/obj/item/paper_bin{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = -4; - pixel_y = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"bgl" = ( -/obj/machinery/smartfridge/secure/medbay, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/pharmacy) -"bgm" = ( -/obj/structure/table/standard, -/obj/machinery/button/remote/blast_door{ - id = "CHE3shutters"; - name = "Desk Shutter Control"; - pixel_x = 6; - req_access = list(33) - }, -/obj/machinery/button/remote/blast_door{ - id = "CHE2shutters"; - name = "Window Shutter Control"; - pixel_x = -6; - req_access = list(33) - }, -/obj/effect/floor_decal/corner/orange/full, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"bgn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/pink{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bgo" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room2) -"bgp" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Intensive Care Unit"; - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"bgq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"bgr" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/random/pottedplant, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"bgs" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/iv_drip, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/nosmoking_1{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"bgt" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room2) -"bgu" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/random/pottedplant, -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"bgv" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "ExamR2" - }, -/obj/structure/window/reinforced/polarized{ - id = "ExamR2" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "ExamR2" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "ExamR2" - }, -/obj/structure/sign/examroom, -/turf/simulated/floor/plating, -/area/medical/exam_room2) -"bgw" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/door/airlock/medical{ - name = "Examination Room 2"; - req_one_access = list(5); - dir = 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/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room2) -"bgx" = ( -/obj/effect/floor_decal/corner/lime/full, -/turf/simulated/floor/tiled/white, -/area/hallway/primary/starboard) -"bgy" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/white, -/area/hallway/primary/starboard) -"bgz" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - id = "medlounge" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "medlounge" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "medlounge" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/medbreak) -"bgA" = ( -/obj/structure/table/glass, -/obj/item/material/ashtray/bronze, -/obj/machinery/button/switch/windowtint{ - id = "medlounge"; - pixel_x = -4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/medbreak) -"bgB" = ( -/obj/structure/bed/stool/chair/padded/beige{ - dir = 8 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/medbreak) -"bgC" = ( -/obj/item/device/radio/intercom/south, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/coatrack{ - pixel_x = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/medbreak) -"bgD" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/crew_quarters/medbreak) -"bgE" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/standard, -/obj/item/storage/box/snack{ - desc = "A box full of snack foods. A label is attached that reads, 'Sorry about the microwaves.'"; - name = "corporate care package" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/medbreak) -"bgF" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/crew_quarters/medbreak) -"bgG" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/vending/cola, -/turf/simulated/floor/tiled, -/area/crew_quarters/medbreak) -"bgH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - 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 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bgI" = ( -/obj/effect/decal/cleanable/dirt, -/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/plating, -/area/maintenance/maintcentral) -"bgJ" = ( -/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/plating, -/area/maintenance/maintcentral) -"bgK" = ( -/obj/structure/cable{ - 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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bgL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bgM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bgN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bgO" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bgP" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled/freezer, -/area/bridge/meeting_room) -"bgQ" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/button/remote/airlock{ - id = "command_unit_1"; - name = "Door Bolt Control"; - pixel_x = 5; - pixel_y = 25; - specialfunctions = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/bridge/meeting_room) -"bgR" = ( -/obj/machinery/newscaster/west, -/turf/simulated/floor/wood, -/area/bridge) -"bgS" = ( -/obj/machinery/requests_console/south{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC" - }, -/turf/simulated/floor/carpet, -/area/bridge) -"bgT" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/bridge) -"bgU" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 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/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/bridge) -"bgV" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/bridge) -"bgW" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/bridge) -"bgX" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/cyan, -/area/crew_quarters/heads/cryo) -"bgY" = ( -/obj/machinery/disposal, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Command Dormitories"; - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/carpet/cyan, -/area/crew_quarters/heads/cryo) -"bgZ" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "ExamR2" - }, -/obj/structure/window/reinforced/polarized{ - id = "ExamR2" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "ExamR2" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "ExamR2" - }, -/turf/simulated/floor/plating, -/area/medical/exam_room2) -"bha" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/remote/airlock{ - id = "bunker1"; - name = "Bunker Safety Bolts"; - pixel_x = 26; - req_access = list(19); - specialfunctions = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bhb" = ( -/obj/machinery/button/remote/airlock{ - id = "bunker1"; - name = "Bunker Safety Bolts"; - pixel_x = -26; - req_access = list(19); - specialfunctions = 4 - }, -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bhc" = ( -/obj/structure/closet, -/obj/item/bikehorn, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bhd" = ( -/obj/structure/ladder{ - pixel_y = 16 - }, -/turf/simulated/open, -/area/maintenance/maintcentral) -"bhe" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"bhf" = ( -/obj/structure/table/rack, -/obj/item/storage/box/lights/mixed{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/storage/box/lights/mixed{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/mixed{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera/network/service{ - c_tag = "Janitor - Main Storage"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"bhg" = ( -/obj/structure/table/rack{ - dir = 8; - }, -/obj/item/circuitboard/robotics{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/reinforced, -/area/storage/tech) -"bhh" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/storage/tech) -"bhi" = ( -/obj/structure/table/rack{ - dir = 8; - }, -/obj/item/circuitboard/message_monitor{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/circuitboard/arcade/battle, -/obj/item/circuitboard/arcade/orion_trail, -/obj/item/circuitboard/research_shuttle, -/turf/simulated/floor/plating, -/area/storage/tech) -"bhj" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"bhk" = ( -/obj/structure/table/rack{ - dir = 8; - }, -/obj/item/circuitboard/rdtechprocessor{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/circuitboard/unary_atmos/heater, -/obj/item/circuitboard/unary_atmos/cooler{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/simulated/floor/plating, -/area/storage/tech) -"bhl" = ( -/obj/effect/decal/cleanable/dirt, -/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/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bhm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(29); - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/assembly/robotics) -"bhn" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "CybGlass" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "CybGlass" - }, -/obj/structure/window/reinforced/polarized{ - id = "CybGlass" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "CybGlass" - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/assembly/robotics_cyborgification) -"bho" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - autoclose = 0; - name = "Cyborgification Bay"; - req_access = list(29); - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics_cyborgification) -"bhp" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "CybGlass" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "CybGlass" - }, -/obj/structure/window/reinforced/polarized{ - id = "CybGlass" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "CybGlass" - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/assembly/robotics_cyborgification) -"bhq" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/firealarm/east, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"bhr" = ( -/obj/structure/extinguisher_cabinet/west, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bhs" = ( -/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, -/area/hallway/primary/central_one) -"bhu" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bhv" = ( -/obj/turbolift_map_holder/aurora/civilian, -/turf/simulated/floor/plating, -/area/turbolift/main_station) -"bhw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "CHE2shutters"; - name = "Pharmacy Window Shutters" - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/medical/pharmacy) -"bhx" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "ExamR1" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "ExamR1" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "ExamR1" - }, -/turf/simulated/floor/plating, -/area/medical/exam_room) -"bhy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "kitchenshutters02"; - name = "Kitchen Shutters" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/stone/marble, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/lino, -/area/crew_quarters/kitchen) -"bhz" = ( -/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/effect/floor_decal/corner_wide/orange{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bhA" = ( -/obj/effect/floor_decal/corner_wide/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bhB" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "CHE3shutters"; - name = "Pharmacy Desk Shutter" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/northright{ - name = "Pharmacy Desk"; - req_access = list(33) - }, -/obj/machinery/ringer_button{ - id = "pharmacy_ringer"; - pixel_x = 5; - pixel_y = 5 - }, -/obj/structure/table/reinforced, -/obj/structure/noticeboard{ - pixel_x = 32; - pixel_y = 2 - }, -/obj/effect/floor_decal/corner_wide/orange/full{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"bhC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"bhD" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/obj/item/modular_computer/laptop/preset/medical, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bhE" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Lobby 3" - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bhF" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Pharmacy"; - req_access = list(33); - dir = 4 - }, -/obj/machinery/door/firedoor, -/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/white, -/area/medical/pharmacy) -"bhG" = ( -/obj/structure/table/standard, -/obj/item/modular_computer/laptop/preset/medical, -/obj/effect/floor_decal/corner/orange{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"bhH" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bhI" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal{ - name = "MediExpress - Storage" - }, -/obj/effect/floor_decal/corner_wide/lime/full{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bhJ" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"bhK" = ( -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"bhL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/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/icu) -"bhM" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"bhN" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/alarm/east, -/obj/structure/bed/roller, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"bhO" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"bhP" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room2) -"bhQ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/requests_console/east{ - department = "Medical Bay" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"bhR" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "ExamR1" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "ExamR1" - }, -/turf/simulated/floor/plating, -/area/medical/exam_room) -"bhS" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"bhT" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/bed/stool/chair, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"bhU" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"bhV" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/crew_quarters/medbreak) -"bhW" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/crew_quarters/medbreak) -"bhX" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/medbreak) -"bhY" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/vending/snack, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/medbreak) -"bhZ" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/heads/cmo) -"bia" = ( -/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/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(12,66); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bib" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bic" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(19); - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge) -"bid" = ( -/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/door/airlock/glass_command{ - id_tag = ""; - name = "Bridge"; - req_one_access = list(19,38,72); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"bie" = ( -/obj/machinery/door/airlock/glass_command{ - id_tag = ""; - name = "Bridge"; - req_one_access = list(19,38,72); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"bif" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(19); - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"big" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bih" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bii" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - id_tag = "bunker1"; - name = "Command Bunker Access"; - req_access = list(19); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bij" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bik" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bil" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bim" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/vendors, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/janitor) -"bin" = ( -/obj/structure/table/steel, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/item/crowbar, -/obj/item/wrench, -/turf/simulated/floor/tiled, -/area/janitor) -"bio" = ( -/obj/structure/closet/hazmat/custodial, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/janitor) -"bip" = ( -/obj/item/aicard, -/obj/item/aiModule/reset, -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/storage/tech) -"biq" = ( -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/item/wirecutters, -/obj/structure/table/steel, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/storage/tech) -"bir" = ( -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/storage/tech) -"bis" = ( -/obj/item/module/power_control, -/obj/item/airlock_electronics, -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/storage/tech) -"bit" = ( -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/device/multitool, -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/storage/tech) -"biu" = ( -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/device/flash, -/obj/item/device/flash, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/obj/structure/table/steel, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/storage/tech) -"biv" = ( -/obj/structure/table/rack{ - dir = 8; - }, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/scanning_module, -/obj/item/stock_parts/scanning_module, -/turf/simulated/floor/plating, -/area/storage/tech) -"biw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/firealarm/north, -/obj/machinery/conveyor{ - dir = 9; - id = "Robocompo" - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bix" = ( -/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/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"biy" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/power/apc/high/north, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"biz" = ( -/obj/machinery/vending/robotics, -/obj/structure/sign/nosmoking_1{ - pixel_y = 28 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"biA" = ( -/obj/structure/table/rack, -/obj/item/storage/toolbox/mechanical{ - desc = "A blue toolbox containing mechanic-related tools." - }, -/obj/item/storage/toolbox/mechanical{ - desc = "A blue toolbox containing mechanic-related tools." - }, -/obj/item/storage/toolbox/electrical, -/obj/item/device/multitool, -/obj/item/device/multitool, -/obj/item/clothing/glasses/welding, -/obj/item/clothing/glasses/welding, -/obj/item/clothing/head/welding, -/obj/item/clothing/head/welding, -/obj/item/storage/belt/utility, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"biB" = ( -/obj/structure/table/steel, -/obj/item/device/flashlight/lamp, -/obj/machinery/camera/network/research{ - c_tag = "Research - Robotics Lab" - }, -/obj/machinery/ringer/east{ - department = "Robotics"; - id = "robo_ringer"; - pixel_y = 28; - req_access = list(29) - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"biC" = ( -/obj/item/storage/bag/circuits/basic, -/obj/item/device/integrated_electronics/wirer, -/obj/item/device/integrated_electronics/debugger, -/obj/structure/table/steel, -/obj/item/device/radio/intercom/north, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"biD" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/reinforced, -/area/assembly/chargebay) -"biE" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/reinforced, -/area/assembly/chargebay) -"biF" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled/white, -/area/assembly/chargebay) -"biG" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/assembly/chargebay) -"biH" = ( -/obj/item/paper_bin, -/obj/item/folder/purple, -/obj/item/pen, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/white, -/area/assembly/chargebay) -"biI" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/assembly/chargebay) -"biJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"biK" = ( -/obj/structure/cable{ - 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/effect/landmark{ - name = "Observer-Start" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"biL" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Central Corridor - Camera 6"; - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"biM" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"biN" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"biO" = ( -/obj/machinery/chem_heater, -/obj/machinery/light, -/obj/effect/floor_decal/corner/orange{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"biP" = ( -/obj/structure/table/standard, -/obj/machinery/reagentgrinder{ - pixel_y = 7 - }, -/obj/machinery/requests_console/south{ - department = "Pharmacy"; - departmentType = 2; - name = "Pharmacy Requests Console" - }, -/obj/effect/floor_decal/corner/orange{ - dir = 10 - }, -/obj/item/stack/material/phoron{ - pixel_x = 22 - }, -/obj/item/stack/material/phoron{ - pixel_x = 22 - }, -/obj/item/stack/material/phoron{ - pixel_x = 22 - }, -/obj/item/stack/material/phoron{ - pixel_x = 22 - }, -/obj/item/stack/material/phoron{ - pixel_x = 22 - }, -/obj/item/stack/material/phoron{ - pixel_x = 22 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"biQ" = ( -/obj/structure/table/standard, -/obj/machinery/ringer/south{ - department = "Pharmacy Frontdesk"; - id = "pharmacy_ringer"; - req_access = list(33) - }, -/obj/effect/floor_decal/corner/orange{ - dir = 10 - }, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/structure/closet/crate/drop/grey{ - desc = "A large, sturdy crate, that stores grenade components."; - name = "grenade crate"; - pixel_y = -4; - tablestatus = -1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"biR" = ( -/obj/structure/closet/secure_closet/chemical, -/obj/effect/floor_decal/corner/orange{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"biS" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"biT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"biU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"biV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -16; - pixel_y = 7 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"biW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"biX" = ( -/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/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"biY" = ( -/obj/machinery/disposal{ - name = "MediExpress - Surgery" - }, -/obj/effect/floor_decal/corner_wide/paleblue/full{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"biZ" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"bja" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/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/icu) -"bjb" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 6 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/light_switch{ - pixel_x = 24; - pixel_y = -12 - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "ICUshutters"; - name = "ICU Shutters"; - pixel_x = 22; - req_access = list(66) - }, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"bjc" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/item/device/radio/intercom/east, -/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 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"bjd" = ( -/obj/item/device/radio{ - anchored = 1; - canhear_range = 1; - frequency = 1487; - icon_state = "red_phone"; - name = "Examination Room Emergency Phone"; - pixel_x = 5; - pixel_y = -4 - }, -/obj/structure/table/standard, -/obj/item/paper_scanner, -/turf/simulated/floor/carpet/cyan, -/area/medical/exam_room) -"bje" = ( -/obj/item/folder/white, -/obj/item/pen, -/obj/structure/table/standard, -/turf/simulated/floor/carpet/cyan, -/area/medical/exam_room) -"bjf" = ( -/obj/item/paper_bin{ - pixel_x = -1; - pixel_y = 7 - }, -/obj/structure/table/standard, -/turf/simulated/floor/carpet/cyan, -/area/medical/exam_room) -"bjg" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/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/white, -/area/medical/exam_room) -"bjh" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/door/airlock/medical{ - name = "Examination Room 1"; - req_one_access = list(5); - dir = 4 - }, -/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/white, -/area/medical/exam_room) -"bji" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - id = "ExamR1" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "ExamR1" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "ExamR1" - }, -/turf/simulated/floor/plating, -/area/medical/exam_room) -"bjj" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/alarm/west, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled, -/area/crew_quarters/medbreak) -"bjk" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/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/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/medbreak) -"bjl" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/south, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/medbreak) -"bjm" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled, -/area/crew_quarters/medbreak) -"bjn" = ( -/obj/structure/table/glass, -/obj/item/device/eftpos{ - eftpos_name = "Medbay EFTPOS scanner" - }, -/obj/machinery/alarm/west, -/obj/effect/floor_decal/corner_wide/paleblue/full{ - dir = 8 - }, -/obj/item/storage/slide_projector, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"bjo" = ( -/obj/structure/table/glass, -/obj/machinery/photocopier/faxmachine{ - department = "Chief Medical Officer's Office" - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/machinery/newscaster/north, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"bjp" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/item/clothing/suit/storage/toggle/labcoat/cmoalt2, -/obj/item/clothing/gloves/latex/nitrile/tajara, -/obj/item/clothing/gloves/latex/nitrile/unathi, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"bjq" = ( -/obj/item/modular_computer/console/preset/medical, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"bjr" = ( -/obj/item/modular_computer/console/preset/medical/cmo, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"bjs" = ( -/obj/structure/table/rack, -/obj/item/storage/belt/medical, -/obj/item/clothing/accessory/stethoscope, -/obj/item/clothing/glasses/hud/health, -/obj/effect/floor_decal/corner_wide/paleblue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"bjt" = ( -/obj/structure/table/standard, -/obj/item/modular_computer/laptop/preset/medical, -/turf/simulated/floor/carpet/cyan, -/area/medical/exam_room2) -"bju" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 1 - }, -/obj/machinery/button/switch/windowtint{ - id = "ExamR1"; - pixel_x = -14; - pixel_y = 28; - req_access = list(5) - }, -/obj/machinery/button/remote/airlock{ - id = "EXdoor1"; - name = "Office Door Control"; - pixel_x = -14; - pixel_y = 36; - req_access = list(5) - }, -/turf/simulated/floor/carpet/cyan, -/area/medical/exam_room) -"bjv" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bjw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/airlock/glass_command{ - name = "Command Maintenance"; - req_access = list(19); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bjx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bjy" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(19); - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/bridge) -"bjz" = ( -/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" - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/bridge) -"bjA" = ( -/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/light{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"bjB" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(19); - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/bridge) -"bjC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bjD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bjE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bjF" = ( -/turf/simulated/wall/r_wall, -/area/bridge/aibunker) -"bjG" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bjH" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bjI" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"bjJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"bjK" = ( -/turf/simulated/floor/carpet/cyan, -/area/medical/exam_room) -"bjL" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"bjM" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/conveyor{ - id = "Robocompo" - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bjN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/conveyor_switch/oneway{ - desc = "A conveyor control switch. It appears to only go in one direction. Controls the components conveyor belt."; - id = "Robocompo"; - pixel_x = -10 - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bjO" = ( -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bjP" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "ExamR1" - }, -/obj/structure/window/reinforced/polarized{ - id = "ExamR1" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "ExamR1" - }, -/turf/simulated/floor/plating, -/area/medical/exam_room) -"bjQ" = ( -/obj/structure/table/steel, -/obj/item/crowbar, -/obj/item/device/robotanalyzer{ - pixel_y = 8 - }, -/obj/item/device/robotanalyzer, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bjR" = ( -/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/white, -/area/medical/pharmacy) -"bjS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"bjT" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/assembly/chargebay) -"bjU" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - id = "ExamR1" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "ExamR1" - }, -/turf/simulated/floor/plating, -/area/medical/exam_room) -"bjV" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/assembly/chargebay) -"bjW" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Robotics Desk"; - req_access = list(29) - }, -/obj/machinery/door/firedoor, -/obj/machinery/ringer_button{ - id = "robo_ringer"; - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"bjX" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'ELEVATOR AHEAD'."; - name = "\improper ELEVATOR AHEAD"; - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bjY" = ( -/turf/simulated/floor/plating, -/area/turbolift/main_station_aux) -"bjZ" = ( -/obj/machinery/newscaster/west, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bka" = ( -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bkb" = ( -/turf/simulated/wall/r_wall, -/area/medical/reception) -"bkc" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "CHE2shutters"; - name = "Pharmacy Window Shutters" - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/sign/pharmacy, -/turf/simulated/floor/plating, -/area/medical/pharmacy) -"bkd" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/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/tiled/white, -/area/medical/pharmacy) -"bke" = ( -/obj/structure/closet/walllocker/medical/secure{ - name = "Medication Closet"; - pixel_x = -32 - }, -/obj/item/reagent_containers/glass/bottle/antitoxin, -/obj/item/storage/pill_bottle/dermaline, -/obj/item/storage/pill_bottle/mortaphenyl, -/obj/item/storage/pill_bottle/dylovene, -/obj/item/storage/pill_bottle/dylovene, -/obj/item/reagent_containers/syringe/antibiotic, -/obj/item/reagent_containers/syringe/antibiotic, -/obj/machinery/door/firedoor, -/obj/item/storage/pill_bottle/bicaridine, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bkf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/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/supply, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bkg" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bkh" = ( -/obj/machinery/door/airlock/medical{ - autoclose = 0; - icon_state = "door_open"; - name = "Intensive Care Unit"; - req_access = list(66); - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/medical/icu) -"bki" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "ICUshutters"; - name = "Intensive Care Unit Shutters"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/medical/icu) -"bkj" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "ICUshutters"; - name = "Intensive Care Unit Shutters"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/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/medical/icu) -"bkk" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "ICUshutters"; - name = "Intensive Care Unit Shutters"; - opacity = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/medical/icu) -"bkl" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/medical/icu) -"bkm" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "ExamR1" - }, -/obj/structure/window/reinforced/polarized{ - id = "ExamR1" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "ExamR1" - }, -/turf/simulated/floor/plating, -/area/medical/exam_room) -"bkn" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light_switch{ - pixel_x = -22 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room2) -"bko" = ( -/obj/machinery/chemical_dispenser/bar_soft/full{ - pixel_y = 7 - }, -/obj/structure/table/wood, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bkp" = ( -/obj/structure/table/wood, -/obj/machinery/chemical_dispenser/bar_alc/full{ - pixel_x = -1; - pixel_y = 7 - }, -/obj/machinery/firealarm/north, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bkq" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/door/window{ - dir = 1; - req_access = list(7) - }, -/obj/structure/table/reinforced{ - table_mat = "steel"; - table_reinf = "mhydrogen" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/strongroom) -"bkr" = ( -/turf/simulated/wall, -/area/medical/medbay2) -"bks" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - name = "Break Room"; - req_access = list(5); - dir = 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, -/turf/simulated/floor/tiled, -/area/crew_quarters/medbreak) -"bkt" = ( -/obj/structure/table/glass, -/obj/item/device/megaphone/med, -/obj/item/device/radio{ - frequency = 1487; - name = "Medbay Emergency Radio Link"; - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/requests_console/west{ - announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer RC" - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"bku" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"bkv" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/button/switch/windowtint{ - id = "CMO"; - pixel_x = 16; - pixel_y = -28; - req_access = list(40) - }, -/obj/machinery/button/remote/blast_door{ - id = "LCKDshutters"; - name = "MedBay Lockdown Control"; - pixel_x = -16; - pixel_y = -38; - req_access = list(40) - }, -/obj/machinery/button/remote/airlock{ - id = "CMOdoor"; - name = "Office Door Control"; - pixel_x = -16; - pixel_y = -26; - req_access = list(40) - }, -/obj/structure/bed/stool/chair/office/light, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"bkw" = ( -/obj/machinery/computer/security/telescreen{ - name = "Departmental Cameras"; - network = list("Medical"); - pixel_x = 32 - }, -/obj/machinery/keycard_auth{ - pixel_x = 24; - pixel_y = 24 - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"bkx" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge) -"bky" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - name = "Level A Lift"; - req_one_access = list(19,38,72); - 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/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, -/area/bridge) -"bkz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge) -"bkA" = ( -/turf/simulated/wall, -/area/bridge/minibar) -"bkB" = ( -/turf/simulated/wall/r_wall, -/area/bridge/minibar) -"bkC" = ( -/obj/structure/table/rack, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/item/paper_bin, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled, -/area/janitor) -"bkD" = ( -/obj/structure/table/steel, -/obj/item/stack/material/glass/full, -/obj/item/stack/material/steel/full, -/obj/item/stack/material/wood/full, -/obj/item/stack/material/plastic/full, -/turf/simulated/floor/tiled, -/area/janitor) -"bkE" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/caution{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/clothing/suit/caution{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/clothing/suit/caution, -/obj/item/clothing/suit/caution{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled, -/area/janitor) -"bkF" = ( -/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/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bkG" = ( -/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/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bkH" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/loading/yellow, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bkI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bkJ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/assembly/robotics) -"bkK" = ( -/obj/machinery/optable{ - desc = "Used for advanced medical procedures, such as removing brains for cyborgification. Also used to repair unlawed synthetics."; - name = "Repairs Operation Table" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/assembly/robotics) -"bkL" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/assembly/robotics) -"bkM" = ( -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 4 - }, -/obj/structure/table/reinforced{ - table_mat = "steel"; - table_reinf = "mhydrogen" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/strongroom) -"bkN" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/hatch/grey, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bkO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced, -/area/assembly/chargebay) -"bkP" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/assembly/chargebay) -"bkQ" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/effect/floor_decal/spline/plain, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/assembly/chargebay) -"bkR" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/table/standard, -/obj/effect/floor_decal/spline/plain, -/obj/item/stack/packageWrap, -/obj/item/device/hand_labeler, -/turf/simulated/floor/tiled/white, -/area/assembly/chargebay) -"bkS" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bkT" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/turbolift/main_station_aux) -"bkU" = ( -/turf/simulated/wall, -/area/medical/reception) -"bkV" = ( -/obj/machinery/power/apc/west, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/random/pottedplant, -/obj/effect/floor_decal/corner_wide/orange{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bkW" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner_wide/orange{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bkX" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner_wide/orange{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bkY" = ( -/obj/machinery/door/firedoor/multi_tile, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Kitchen"; - req_access = list(28) - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/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/white, -/area/crew_quarters/kitchen) -"bkZ" = ( -/obj/item/device/radio/intercom/north, -/obj/machinery/papershredder, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"blb" = ( -/obj/machinery/ringer/north{ - department = "Medbay"; - id = "medbay_ringer"; - req_access = list(5) - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bld" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "entrance_shutters"; - name = "Entrance Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/reception) -"ble" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/pink{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"blf" = ( -/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/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"blg" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner_wide/pink{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"blh" = ( -/obj/effect/floor_decal/corner_wide/pink{ - dir = 5 - }, -/obj/effect/floor_decal/sign/icu, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bli" = ( -/obj/effect/floor_decal/corner_wide/pink{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"blj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/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/effect/floor_decal/corner_wide/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"blk" = ( -/obj/effect/floor_decal/corner_wide/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"blm" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/effect/floor_decal/corner_wide/pink{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bln" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"blo" = ( -/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/effect/floor_decal/corner_wide/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"blp" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"blu" = ( -/obj/machinery/firealarm/north, -/obj/machinery/photocopier, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"blv" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/random/pottedplant, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"blw" = ( -/obj/item/device/radio/intercom/north, -/obj/structure/table/standard, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -2 - }, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"blx" = ( -/turf/simulated/wall, -/area/medical/med_office) -"bly" = ( -/obj/random/pottedplant, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/med_office) -"blz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/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/white, -/area/medical/med_office) -"blA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/med_office) -"blB" = ( -/obj/random/pottedplant, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Psych Stairway" - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/med_office) -"blC" = ( -/obj/structure/table/glass, -/obj/item/clipboard, -/obj/machinery/firealarm/west, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"blD" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"blE" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/hologram/holopad, -/mob/living/simple_animal/cat/fluff/Runtime{ - name = "Bones" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"blF" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_y = 6 - }, -/obj/item/pen, -/obj/item/paper_scanner{ - pixel_x = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"blG" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/stamp/cmo, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"blH" = ( -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/item/modular_computer/laptop/preset/medical/cmo, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"blI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"blJ" = ( -/obj/machinery/alarm/north, -/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/plating, -/area/maintenance/medbay) -"blK" = ( -/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/plating, -/area/maintenance/medbay) -"blL" = ( -/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/plating, -/area/maintenance/medbay) -"blM" = ( -/obj/structure/cable{ - 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 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"blN" = ( -/turf/simulated/wall, -/area/maintenance/medbay) -"blO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/bridge) -"blP" = ( -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Corridor Camera 1" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"blQ" = ( -/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 = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/bridge) -"blR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"blS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/bridge) -"blT" = ( -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled, -/area/bridge/minibar) -"blU" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled, -/area/bridge/minibar) -"blV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/item/device/radio/intercom/north, -/turf/simulated/floor/tiled, -/area/bridge/minibar) -"blW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/newscaster/north, -/turf/simulated/floor/tiled, -/area/bridge/minibar) -"blX" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled, -/area/bridge/minibar) -"blY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/bridge/minibar) -"blZ" = ( -/turf/simulated/open, -/area/bridge/aibunker) -"bma" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/bridge/aibunker) -"bmb" = ( -/obj/structure/ladder/up, -/turf/simulated/floor/plating, -/area/bridge/aibunker) -"bmc" = ( -/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/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bmd" = ( -/turf/simulated/wall, -/area/maintenance/substation/research) -"bmj" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/door/window/westright{ - name = "Robotics Workshop"; - req_access = list(29) - }, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/assembly/robotics/workshop) -"bmm" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/assembly/robotics) -"bmn" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced, -/area/assembly/robotics) -"bmr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"bms" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"bmv" = ( -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "MechBayShutter"; - name = "Mech Bay Shutters" - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"bmw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bmx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/medical/reception) -"bmy" = ( -/obj/structure/bed/stool/chair/plastic{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bmz" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bmA" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bmB" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/roller{ - pixel_y = 4 - }, -/obj/item/roller{ - pixel_y = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bmC" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bmD" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bmE" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bmF" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/medical/reception) -"bmG" = ( -/obj/structure/disposalpipe/junction/yjunction, -/obj/effect/floor_decal/corner_wide/pink{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bmH" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - name = "Chemistry"; - sortType = "Chemistry" - }, -/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/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bmJ" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bmK" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bmL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/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/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bmN" = ( -/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" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bmO" = ( -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bmU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"bmV" = ( -/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/medbay2) -"bmW" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"bmX" = ( -/obj/machinery/alarm/west, -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/med_office) -"bmY" = ( -/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/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/med_office) -"bmZ" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/med_office) -"bna" = ( -/obj/machinery/firealarm/east, -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/med_office) -"bnb" = ( -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/obj/machinery/photocopier, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"bnc" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"bnd" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"bne" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"bnf" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"bng" = ( -/turf/simulated/wall, -/area/medical/main_storage) -"bnh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bni" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/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/bridge) -"bnj" = ( -/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/bridge) -"bnk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/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" - }, -/turf/simulated/floor/plating, -/area/bridge) -"bnl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled, -/area/bridge/minibar) -"bnm" = ( -/obj/structure/bed/stool/padded/red, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/bridge/minibar) -"bnn" = ( -/obj/machinery/chemical_dispenser/coffee/full, -/obj/structure/table/reinforced/wood, -/turf/simulated/floor/lino, -/area/bridge/minibar) -"bno" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled, -/area/bridge/minibar) -"bnp" = ( -/obj/machinery/vending/dinnerware, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled, -/area/bridge/minibar) -"bnq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/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/bridge/minibar) -"bnr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bns" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bnt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bnu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bnw" = ( -/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/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bnx" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/north, -/obj/structure/sign/electricshock{ - pixel_x = -32 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/research) -"bny" = ( -/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/power/sensor{ - name = "Powernet Sensor - Research Subgrid"; - name_tag = "Research Subgrid" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/research) -"bnz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Science Substation"; - req_one_access = list(11,24,7); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/research) -"bnA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bnH" = ( -/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/assembly/robotics) -"bnI" = ( -/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 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/junction/yjunction, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bnJ" = ( -/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/assembly/robotics) -"bnK" = ( -/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, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bnM" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bnO" = ( -/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/multi_tile{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Robotics Lab"; - req_access = list(29) - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bnP" = ( -/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/assembly/chargebay) -"bnQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"bnS" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "MechBayShutter"; - name = "Mech Bay Shutters" - }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"bnT" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bnU" = ( -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/turbolift/main_station_aux) -"bnV" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/item/device/radio/intercom/west, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bnW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/medical/reception) -"bnX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bnY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bnZ" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Reception Desk"; - req_access = list(66) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"boa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bob" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"boc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bod" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Medical Reception"; - req_access = list(5) - }, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/door/firedoor/multi_tile{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/medical/reception) -"boe" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bof" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/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/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bog" = ( -/obj/machinery/door/firedoor, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"boh" = ( -/obj/item/device/radio/intercom/south, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"boj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 10 - }, -/obj/effect/floor_decal/sign/gtr, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bok" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bom" = ( -/obj/machinery/firealarm/south, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bon" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"boo" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bov" = ( -/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/effect/floor_decal/sign/ex, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"bow" = ( -/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/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"box" = ( -/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/effect/floor_decal/sign/p, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"boy" = ( -/obj/machinery/door/airlock/medical{ - name = "Psychiatric Wing"; - req_access = list(5); - dir = 4 - }, -/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/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/med_office) -"boz" = ( -/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" - }, -/turf/simulated/floor/tiled/white, -/area/medical/med_office) -"boA" = ( -/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/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/med_office) -"boB" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/med_office) -"boC" = ( -/obj/structure/stairs/east, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/med_office) -"boD" = ( -/obj/machinery/papershredder, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner_wide/paleblue/full, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"boE" = ( -/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/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"boF" = ( -/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 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"boG" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/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/item/device/radio/intercom/east, -/obj/effect/floor_decal/corner_wide/paleblue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"boH" = ( -/obj/structure/table/standard, -/obj/machinery/firealarm/north, -/obj/item/storage/firstaid/o2{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/o2, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"boI" = ( -/obj/structure/table/standard, -/obj/machinery/power/apc/north{ - is_critical = 1 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/firstaid/toxin, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"boJ" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/fire, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"boK" = ( -/obj/structure/table/standard, -/obj/item/device/radio/intercom/north, -/obj/item/storage/firstaid/adv{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/adv, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"boL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"boM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/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) -"boN" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/bridge) -"boO" = ( -/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/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/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/bridge) -"boP" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"boQ" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Break Room"; - req_access = list(19); - dir = 4 - }, -/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/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/bridge) -"boR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled, -/area/bridge/minibar) -"boS" = ( -/obj/structure/bed/stool/padded/red, -/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 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/bridge/minibar) -"boT" = ( -/obj/item/reagent_containers/glass/rag, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/reinforced/wood, -/turf/simulated/floor/lino, -/area/bridge/minibar) -"boU" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/bridge/minibar) -"boV" = ( -/obj/machinery/chemical_dispenser/bar_alc/full, -/obj/structure/table/wood, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/bridge/minibar) -"boW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/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/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/bridge/minibar) -"boX" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/alarm/west, -/obj/machinery/camera/network/research{ - c_tag = "Research - Research Substation"; - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/research) -"boY" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Research Main" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/maintenance/substation/research) -"bpd" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bpe" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bph" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bpi" = ( -/obj/structure/table/steel, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/cell_charger, -/obj/machinery/newscaster/east{ - pixel_y = -7 - }, -/obj/machinery/light_switch{ - pixel_x = 23; - pixel_y = 10 - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bpj" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"bpm" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"bpn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - desc = "It controls the Mech Bay's shutters."; - dir = 1; - id = "MechBayShutter"; - name = "Mech Bay shutters"; - pixel_x = 23; - pixel_y = -23 - }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"bpq" = ( -/obj/turbolift_map_holder/aurora/civilian_aux, -/turf/simulated/floor/plating, -/area/turbolift/main_station_aux) -"bpr" = ( -/obj/machinery/firealarm/west, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Lobby 1"; - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/structure/bed/stool/chair/plastic{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bps" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bpt" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bpu" = ( -/obj/structure/bed/stool/chair/office/light, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bpv" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/bed/stool/chair/office/light, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bpw" = ( -/obj/structure/table/standard, -/obj/machinery/button/remote/blast_door{ - id = "entrance_shutters"; - name = "Entrance Shutters Control"; - pixel_y = -6; - req_access = list(66) - }, -/obj/machinery/button/remote/airlock{ - id = "main_door"; - name = "Triage Door Control"; - pixel_y = 6; - req_access = list(66) - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bpx" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bpy" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bpz" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Port 2"; - dir = 8 - }, -/obj/structure/extinguisher_cabinet/east, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bpA" = ( -/turf/simulated/wall, -/area/medical/gen_treatment) -"bpB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - autoclose = 0; - icon_state = "door_open"; - name = "General Treatment Room"; - req_access = list(66); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/map_effect/door_helper/unres, -/turf/simulated/floor/tiled, -/area/medical/gen_treatment) -"bpC" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "GTRshutters"; - name = "General Treatment Room Shutters"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/medical/gen_treatment) -"bpD" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/medical/gen_treatment) -"bpE" = ( -/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 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bpF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bpL" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Starboard 1"; - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"bpM" = ( -/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/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"bpO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/green/full, -/turf/simulated/floor/tiled/white, -/area/medical/med_office) -"bpQ" = ( -/turf/simulated/floor/tiled/white, -/area/medical/med_office) -"bpR" = ( -/obj/structure/stairs/east, -/turf/simulated/floor/tiled/white, -/area/medical/med_office) -"bpS" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - id = "CMO" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "CMO" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "CMO" - }, -/obj/structure/cable/green, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "CMO" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/cmo) -"bpT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - id_tag = "CMOdoor"; - name = "Chief Medical Officer's Office"; - req_access = list(40); - dir = 1 - }, -/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/white, -/area/crew_quarters/heads/cmo) -"bpU" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - id = "CMO" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "CMO" - }, -/obj/structure/cable/green, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "CMO" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/cmo) -"bpV" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - id = "CMO" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "CMO" - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/cmo) -"bpW" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - id = "CMO" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "CMO" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "CMO" - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/cmo) -"bpX" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/regular, -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"bpY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"bpZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"bqa" = ( -/obj/structure/table/standard, -/obj/item/storage/toolbox/mechanical, -/obj/item/tape_roll, -/obj/item/tape_roll, -/obj/item/tape_roll, -/obj/item/tape_roll, -/obj/item/reagent_containers/spray/cleaner, -/obj/machinery/requests_console/east{ - department = "Main Medical Storage"; - departmentType = 2 - }, -/obj/item/storage/box/sharps, -/obj/item/storage/box/freezer/organcooler, -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"bqb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/bridge) -"bqc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/bridge) -"bqd" = ( -/obj/structure/bed/stool/padded/red, -/turf/simulated/floor/lino, -/area/bridge/minibar) -"bqe" = ( -/obj/item/material/ashtray/bronze, -/obj/structure/table/reinforced/wood, -/turf/simulated/floor/lino, -/area/bridge/minibar) -"bqf" = ( -/obj/machinery/vending/boozeomat{ - req_access = list(19) - }, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled, -/area/bridge/minibar) -"bqg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/bridge/minibar) -"bqh" = ( -/obj/structure/closet/crate, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bqi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - 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/plating, -/area/maintenance/research_port) -"bqj" = ( -/obj/machinery/door/airlock/engineering{ - name = "Science Substation"; - req_one_access = list(11,24,7); - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/substation/research) -"bqk" = ( -/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/substation/research) -"bql" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Research Main Substation Bypass" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/research) -"bqp" = ( -/obj/machinery/mineral/rigpress, -/obj/structure/extinguisher_cabinet/west, -/obj/machinery/camera/network/research{ - c_tag = "Research - Robotics Workshop"; - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/assembly/robotics/workshop) -"bqr" = ( -/obj/structure/table/steel, -/obj/item/device/flash/synthetic{ - pixel_x = -7; - pixel_y = 1 - }, -/obj/item/device/flash/synthetic{ - pixel_y = 1 - }, -/obj/item/device/flash/synthetic{ - pixel_x = 7; - pixel_y = 1 - }, -/obj/item/device/flash/synthetic{ - pixel_x = 14; - pixel_y = 1 - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bqs" = ( -/obj/structure/table/steel, -/obj/item/cell/high, -/obj/item/cell/high, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bqt" = ( -/obj/structure/bed/stool/chair/office/dark, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bqu" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"bqv" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/research{ - c_tag = "Research - Mech Bay"; - dir = 1; - network = list("Research","Toxins Test Area"); - pixel_x = 4 - }, -/obj/structure/closet/secure_closet/machinist, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"bqw" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"bqx" = ( -/obj/machinery/cryopod/robot, -/obj/machinery/computer/cryopod/robot{ - pixel_y = -30 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"bqy" = ( -/obj/machinery/camera/network/civilian_main{ - c_tag = "Central Corridor - Camera 5"; - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/full, -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bqz" = ( -/obj/structure/sign/directions/civ{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/directions/science{ - dir = 8; - pixel_x = 32 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/sign/directions/engineering{ - dir = 1; - pixel_x = 32; - pixel_y = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bqA" = ( -/obj/structure/sign/directions/civ{ - pixel_x = -32; - pixel_y = -8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_x = -32 - }, -/obj/structure/sign/directions/com{ - dir = 1; - pixel_x = -32; - pixel_y = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bqB" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/modular_computer/laptop/preset/medical, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bqC" = ( -/obj/machinery/door/window{ - name = "Reception Desk"; - req_access = list(66) - }, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bqD" = ( -/obj/structure/window/reinforced, -/obj/item/modular_computer/console/preset/medical, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bqE" = ( -/obj/structure/window/reinforced, -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/item/modular_computer/laptop/preset/medical, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bqF" = ( -/obj/structure/sign/nosmoking_1{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bqG" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bqH" = ( -/obj/machinery/atmospherics/unary/cryo_cell, -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/gen_treatment) -"bqI" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/table/standard, -/obj/item/vitals_monitor, -/obj/item/vitals_monitor{ - pixel_x = 2; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/gen_treatment) -"bqJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"bqK" = ( -/obj/effect/floor_decal/corner/beige/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/gen_treatment) -"bqL" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/sleeper{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/dark, -/area/medical/gen_treatment) -"bqM" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/medical/gen_treatment) -"bqO" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Port 4"; - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bqS" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/ramp/bottom, -/area/medical/medbay2) -"bqT" = ( -/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/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/ramp/bottom, -/area/medical/medbay2) -"bqW" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/med_office) -"bqX" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/medical/med_office) -"bqY" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/med_office) -"bra" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Starboard 3"; - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"brb" = ( -/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/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/sign/cmo, -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - name = "CMO Office"; - sortType = "CMO Office" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"brc" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"brd" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"bre" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"brf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"bri" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"brj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/bridge) -"brk" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"brm" = ( -/obj/machinery/firealarm/south, -/turf/simulated/floor/lino, -/area/bridge/minibar) -"brn" = ( -/obj/machinery/chemical_dispenser/bar_soft/full, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Break Room"; - dir = 1; - network = list("Command","Bunker") - }, -/obj/structure/table/reinforced/wood, -/turf/simulated/floor/lino, -/area/bridge/minibar) -"bro" = ( -/obj/machinery/smartfridge/drinks, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled, -/area/bridge/minibar) -"brp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/bridge/minibar) -"brq" = ( -/obj/structure/closet, -/obj/random/loot, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"brr" = ( -/turf/simulated/wall/r_wall, -/area/server) -"brt" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/assembly/robotics) -"bru" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/assembly/robotics) -"brv" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/assembly/robotics) -"brw" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/window/northright{ - name = "Robotics Lab"; - req_access = list(29) - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bry" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/door/firedoor{ - enable_smart_generation = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"brz" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/atm{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"brA" = ( -/obj/item/device/radio/intercom/north, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"brB" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/sign/emergency/meetingpoint{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"brC" = ( -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"brD" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/sign/flag/scc{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"brE" = ( -/obj/effect/floor_decal/corner/lime, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"brF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/sign/greencross, -/turf/simulated/floor/plating, -/area/medical/reception) -"brG" = ( -/obj/effect/floor_decal/corner_wide/pink{ - dir = 8 - }, -/obj/machinery/disposal/small/east, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"brH" = ( -/obj/effect/floor_decal/plaque{ - desc = "Charlie Dove Memorial Hall
With an endless capacity for kindness, she used her skills as a doctor to better the lives of everyone she met. She was the 4th victim murdered by the notorious Odin Killer, and will be missed.
December 2416 - June 2460" - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"brI" = ( -/obj/random/pottedplant, -/obj/machinery/ringer_button{ - id = "medbay_ringer"; - pixel_x = 26 - }, -/obj/effect/floor_decal/corner_wide/pink, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"brJ" = ( -/obj/machinery/button/remote/airlock{ - id = "main_door"; - name = "Main Exit Door Control"; - pixel_x = -26 - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"brK" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 6 - }, -/obj/effect/floor_decal/sign/gtr, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"brL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - autoclose = 0; - icon_state = "door_open"; - name = "General Treatment Room"; - req_access = list(66); - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/medical/gen_treatment) -"brM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/effect/floor_decal/corner/beige/full, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/medical/gen_treatment) -"brN" = ( -/obj/effect/floor_decal/corner/beige/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/medical/gen_treatment) -"brO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"brP" = ( -/obj/effect/floor_decal/corner/beige/full, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/gen_treatment) -"brQ" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/table/standard, -/obj/item/device/mass_spectrometer, -/obj/item/auto_cpr, -/turf/simulated/floor/tiled/dark, -/area/medical/gen_treatment) -"brR" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/medical/gen_treatment) -"brT" = ( -/obj/machinery/ringer/north{ - department = "Medbay"; - id = "medbay_ringer"; - req_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"brU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"brV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/newscaster/north, -/obj/effect/floor_decal/corner_wide/green{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"brW" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"brX" = ( -/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/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"brY" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"brZ" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"bsc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"bsd" = ( -/obj/machinery/ringer/north{ - department = "Medbay"; - id = "medbay_ringer"; - req_access = list(5) - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"bse" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"bsf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"bsg" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"bsh" = ( -/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 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - name = "Medical Bay"; - sortType = "Medical Bay" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"bsi" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Main Storage"; - req_access = list(66); - 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 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"bsj" = ( -/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/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"bsk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark{ - name = "borerstart" - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/sign/flag/scc{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"bsl" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window{ - dir = 1; - name = "MediExpress - Storage"; - req_access = list(66) - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"bsm" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/disposaloutlet{ - dir = 8; - spread = 360; - spread_point = 2 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"bsn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/bridge) -"bso" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/airlock/glass_command{ - name = "Level A Lift"; - req_one_access = list(19,38,72); - 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/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/bridge) -"bsp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/bridge) -"bsq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/bridge/minibar) -"bsr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/bridge/minibar) -"bss" = ( -/obj/machinery/power/apc/west, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bst" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - 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/plating, -/area/maintenance/research_port) -"bsx" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/server) -"bsC" = ( -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bsI" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/obj/item/device/radio/intercom/north, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bsL" = ( -/turf/simulated/wall/r_wall, -/area/rnd/research) -"bsP" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/item/device/radio/intercom/west, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bsQ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/door/firedoor{ - enable_smart_generation = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bsR" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/light, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Central Corridor"; - dir = 1 - }, -/obj/machinery/computer/holodeck_control/Aurora{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bsS" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bsT" = ( -/obj/effect/floor_decal/corner_wide/pink{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bsU" = ( -/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" - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bsV" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bsW" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bsX" = ( -/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/effect/floor_decal/corner_wide/pink{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bsY" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "entrance_shutters"; - name = "Entrance Lockdown Shutters"; - opacity = 0 - }, -/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/white, -/area/medical/reception) -"bsZ" = ( -/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/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bta" = ( -/obj/structure/disposalpipe/segment, -/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" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"btc" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "GTRshutters"; - name = "General Treatment Room Shutters"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/medical/gen_treatment) -"btd" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"bte" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/obj/effect/landmark{ - name = "RevenantRift" - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"btf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"btg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"bth" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "GTRshutters"; - name = "General Treatment Room Shutters"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/medical/gen_treatment) -"bti" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/obj/effect/floor_decal/sign/gtr, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"btj" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/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/effect/floor_decal/corner/lime/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"btk" = ( -/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/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"btl" = ( -/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/manifold/hidden/scrubbers, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"btm" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"btn" = ( -/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/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"btp" = ( -/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/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"btq" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"btt" = ( -/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/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"btu" = ( -/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/manifold/hidden/supply, -/obj/effect/floor_decal/corner/grey, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"btv" = ( -/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/effect/floor_decal/corner/grey{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"btw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/grey{ - dir = 10 - }, -/obj/effect/floor_decal/sign/c2, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - name = "Quarantine"; - sortType = "Quarantine" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"btx" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/bridge) -"bty" = ( -/obj/effect/decal/cleanable/dirt, -/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/plating, -/area/maintenance/research_port) -"btJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/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/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"btK" = ( -/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/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"btL" = ( -/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/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"btM" = ( -/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/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"btN" = ( -/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/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"btR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - id_tag = "researchdoor"; - name = "Research Division Access"; - req_access = list(47); - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"btS" = ( -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = 32 - }, -/obj/structure/sign/directions/cryo{ - dir = 1; - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_x = 32; - pixel_y = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"btT" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"btU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Holodeck"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"btV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/sign/directions/evac{ - dir = 8; - pixel_x = -32 - }, -/obj/structure/sign/directions/cryo{ - dir = 8; - pixel_x = -32; - pixel_y = -8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_x = -32; - pixel_y = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"btW" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"btX" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - id_tag = "CONS2door"; - name = "Medical Bay" - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"btY" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"btZ" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bua" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bub" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"buc" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - id_tag = "main_door"; - name = "Triage Room Main Entrance"; - req_access = list(5) - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "entrance_shutters"; - name = "Entrance Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bud" = ( -/obj/effect/floor_decal/corner_wide/pink{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bue" = ( -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"buf" = ( -/obj/machinery/button/remote/blast_door{ - id = "GTRshutters"; - name = "General Treatment Shutters Control"; - pixel_y = -26; - req_access = list(66) - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"bug" = ( -/obj/machinery/vending/medical{ - density = 0; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"buh" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bui" = ( -/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{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/sign/srg, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"buj" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/roller{ - pixel_y = 14 - }, -/obj/item/roller{ - pixel_y = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/storage/box/sharps{ - pixel_x = 14 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"buk" = ( -/obj/structure/table/standard, -/obj/item/storage/box/masks{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/gloves, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bul" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bun" = ( -/obj/machinery/newscaster/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"buo" = ( -/obj/item/device/radio/intercom/south, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bup" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"buq" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"bur" = ( -/obj/machinery/vending/medical{ - density = 0; - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"bus" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"buv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/medbay2) -"buw" = ( -/turf/simulated/wall/r_wall, -/area/medical/medbay2) -"bux" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/medbay2) -"buy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/custodial_closet) -"buz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/custodial_closet) -"buA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - name = "Custodial Closet"; - req_one_access = list(26,66); - dir = 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/white, -/area/medical/custodial_closet) -"buB" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/custodial_closet) -"buC" = ( -/turf/simulated/wall, -/area/medical/custodial_closet) -"buD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/standard, -/obj/item/material/ashtray, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"buF" = ( -/obj/structure/table/rack{ - dir = 1 - }, -/obj/random/loot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"buG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/chair/office/wheelchair{ - dir = 4 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"buH" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/random/pottedplant, -/turf/simulated/floor/tiled, -/area/bridge) -"buI" = ( -/obj/random/pottedplant, -/obj/item/device/radio/intercom/north, -/turf/simulated/floor/tiled, -/area/bridge) -"buL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/server) -"buQ" = ( -/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" - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"buR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"buV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/glass{ - name = "Bar"; - req_access = list(25); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"buX" = ( -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bvc" = ( -/obj/machinery/camera/network/civilian_main{ - c_tag = "Central Corridor - Research Entrance"; - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/structure/sign/science{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bvd" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"bve" = ( -/turf/simulated/floor/holofloor/reinforced, -/area/holodeck/alphadeck) -"bvf" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bvg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/sign/greencross, -/turf/simulated/floor/plating, -/area/medical/reception) -"bvh" = ( -/obj/random/pottedplant, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bvi" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/structure/table/standard, -/obj/item/glass_jar/gumball/medical, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bvj" = ( -/obj/item/device/radio/intercom/south, -/obj/structure/table/standard, -/obj/item/storage/box/cups, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bvk" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bvm" = ( -/obj/structure/bed/stool/chair/plastic{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bvn" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Lobby 2"; - dir = 1 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/machinery/newscaster/south, -/obj/structure/bed/stool/chair/plastic{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bvo" = ( -/obj/random/pottedplant, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bvq" = ( -/obj/structure/table/standard, -/obj/item/roller{ - pixel_y = 4 - }, -/obj/item/roller{ - pixel_y = 4 - }, -/obj/item/storage/box/syringes, -/obj/effect/floor_decal/corner_wide/pink{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bvt" = ( -/obj/machinery/body_scanconsole{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/medical/gen_treatment) -"bvu" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/bodyscanner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/medical/gen_treatment) -"bvv" = ( -/turf/simulated/wall, -/area/medical/cryo) -"bvw" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/medical/surgeryobs) -"bvx" = ( -/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/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/medical/surgeryobs) -"bvy" = ( -/turf/simulated/wall, -/area/medical/surgeryobs) -"bvz" = ( -/turf/simulated/wall, -/area/medical/surgerywing) -"bvA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"bvB" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"bvC" = ( -/turf/simulated/open, -/area/turbolift/medical_station) -"bvD" = ( -/turf/simulated/floor/tiled, -/area/medical/custodial_closet) -"bvF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/medical/custodial_closet) -"bvG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/medical/custodial_closet) -"bvH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(5); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/custodial_closet) -"bvK" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bvL" = ( -/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/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bvM" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass, -/area/bridge) -"bvN" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"bvO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"bvP" = ( -/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/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/bridge) -"bvQ" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/bridge) -"bvR" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass, -/area/bridge) -"bvS" = ( -/turf/simulated/wall/r_wall, -/area/rnd/rdoffice) -"bvU" = ( -/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/white, -/area/rnd/research) -"bvX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_research{ - name = "Circuitry Lab"; - req_access = list(7); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/misc_lab) -"bvY" = ( -/turf/simulated/wall/r_wall, -/area/rnd/lab) -"bwa" = ( -/obj/machinery/newscaster/west, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bwb" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"bwc" = ( -/obj/machinery/camera/network/civilian_main{ - c_tag = "Central Corridor - Medical First Responder Entrance"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bwd" = ( -/turf/simulated/wall, -/area/medical/paramedic) -"bwe" = ( -/obj/machinery/computer/guestpass{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bwf" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"bwg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bwh" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "GTRshutters"; - name = "General Treatment Room Shutters"; - opacity = 0 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/medical/gen_treatment) -"bwi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"bwj" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/medical/gen_treatment) -"bwk" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/medical/gen_treatment) -"bwl" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/medical/cryo) -"bwm" = ( -/obj/structure/table/standard, -/obj/machinery/recharger, -/obj/effect/floor_decal/corner_wide/lime/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bwn" = ( -/obj/item/device/radio/intercom/north, -/obj/random/pottedplant, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bwo" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bwp" = ( -/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/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bwq" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bwr" = ( -/obj/structure/table/standard, -/obj/machinery/newscaster/north, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 5 - }, -/obj/item/storage/box/bodybags, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bws" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "OR1" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "OR1" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "OR1" - }, -/turf/simulated/floor/plating, -/area/medical/surgerywing) -"bwt" = ( -/obj/machinery/button/switch/windowtint{ - id = "OR1"; - pixel_x = -4; - pixel_y = 24; - req_access = list(66) - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/table/rack, -/obj/machinery/button/switch/holosign{ - id = 1; - pixel_x = 3; - pixel_y = 24 - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bwu" = ( -/obj/structure/table/standard, -/obj/item/device/radio/intercom/north, -/obj/item/device/radio{ - anchored = 1; - canhear_range = 7; - frequency = 1487; - icon_state = "red_phone"; - name = "Surgery Emergency Phone"; - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - icon_state = "sterilesprayblue"; - name = "Surgery Cleaner" - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bwy" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/alarm/west, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"bwz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"bwA" = ( -/obj/machinery/alarm/west, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Custodial Closet"; - dir = 4 - }, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = -4; - pixel_y = -5 - }, -/turf/simulated/floor/tiled, -/area/medical/custodial_closet) -"bwB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/medical/custodial_closet) -"bwC" = ( -/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 = 9 - }, -/turf/simulated/floor/tiled, -/area/medical/custodial_closet) -"bwD" = ( -/obj/machinery/firealarm/east, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/medical/custodial_closet) -"bwE" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bwF" = ( -/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/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bwG" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass, -/area/bridge) -"bwH" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"bwI" = ( -/obj/machinery/hologram/holopad, -/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/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/bridge) -"bwJ" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"bwK" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/flora/ausbushes/genericbush, -/turf/simulated/floor/grass, -/area/bridge) -"bwM" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bwN" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bwO" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bwP" = ( -/obj/machinery/alarm/west, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bwQ" = ( -/obj/machinery/newscaster/north, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bwR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bwS" = ( -/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/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bwT" = ( -/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/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bwU" = ( -/obj/machinery/keycard_auth{ - pixel_y = 24 - }, -/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/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bwV" = ( -/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/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bwW" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/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/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bwX" = ( -/obj/machinery/door/airlock/command{ - id_tag = "researchdoor"; - name = "Research Director's Office"; - req_access = list(30); - dir = 4 - }, -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/rnd/rdoffice) -"bwZ" = ( -/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/sortjunction{ - name = "RD Office"; - sortType = "RD Office" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bxb" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/rnd/misc_lab) -"bxc" = ( -/obj/item/paper_bin, -/obj/item/pen{ - pixel_x = -4 - }, -/obj/item/pen/blue{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/pen/red{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/machinery/alarm/north, -/obj/structure/table/steel, -/turf/simulated/floor/carpet/rubber, -/area/rnd/misc_lab) -"bxd" = ( -/obj/item/folder/purple, -/obj/structure/table/steel, -/turf/simulated/floor/carpet/rubber, -/area/rnd/misc_lab) -"bxe" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/misc_lab) -"bxf" = ( -/obj/item/tape_roll, -/obj/item/device/hand_labeler, -/obj/machinery/light_switch{ - pixel_x = 20; - pixel_y = 24 - }, -/obj/structure/table/steel, -/turf/simulated/floor/carpet/rubber, -/area/rnd/misc_lab) -"bxg" = ( -/obj/machinery/cell_charger, -/obj/machinery/firealarm/north, -/obj/structure/table/steel, -/turf/simulated/floor/carpet/rubber, -/area/rnd/misc_lab) -"bxi" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/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/tiled/white, -/area/rnd/lab) -"bxj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/firealarm/north, -/obj/machinery/light_switch{ - pixel_x = -11; - pixel_y = 30 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bxk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/sink{ - pixel_y = 28 - }, -/obj/structure/extinguisher_cabinet/west{ - pixel_y = 30 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bxl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/requests_console/north{ - department = "Research and Development"; - departmentType = 2; - name = "Research and Development Requests Console" - }, -/obj/machinery/ringer/west{ - department = "R&D Laboratory"; - id = "sci_ringer"; - pixel_y = 32; - req_access = list(7) - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bxm" = ( -/obj/item/device/radio/intercom/east{ - pixel_y = 27 - }, -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/button/remote/blast_door{ - desc = "It controls the research shutters."; - id = "RnDShutters"; - name = "Research Shutters"; - pixel_x = -10; - pixel_y = 24 - }, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bxn" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "RnDShutters"; - name = "Research and Development"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/lab) -"bxo" = ( -/obj/machinery/camera/network/civilian_main{ - c_tag = "Central Corridor - Camera 4" - }, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bxp" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/east, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bxq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bxu" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"bxv" = ( -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/item/storage/firstaid/toxin{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/firstaid/o2, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"bxw" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/adv{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/firstaid/fire, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"bxx" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/closet/walllocker/medical/secure{ - name = "Stabilization Kit"; - pixel_y = 32 - }, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/reagent_containers/glass/bottle/inaprovaline, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/obj/item/storage/pill_bottle/mortaphenyl, -/obj/item/reagent_containers/hypospray/autoinjector/coagzolug, -/obj/item/reagent_containers/hypospray/autoinjector/coagzolug, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"bxy" = ( -/obj/machinery/power/apc/north{ - is_critical = 1 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"bxz" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/closet/walllocker/medical/secure{ - name = "Medication Closet"; - pixel_y = 32 - }, -/obj/item/reagent_containers/glass/bottle/antitoxin, -/obj/item/storage/pill_bottle/dermaline, -/obj/item/storage/pill_bottle/mortaphenyl, -/obj/item/storage/pill_bottle/dylovene, -/obj/item/storage/pill_bottle/dylovene, -/obj/item/reagent_containers/syringe/antibiotic, -/obj/item/reagent_containers/syringe/antibiotic, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"bxA" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/suit_cycler/medical, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"bxB" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/item/rig/medical/equipped{ - pixel_y = -2 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/southright{ - name = "Rescue Hardsuit"; - req_access = list(67) - }, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"bxC" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/disposalpipe/segment{ - 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/medical/paramedic) -"bxD" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/grey{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bxE" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bxJ" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/loading/yellow, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - General Treatment 2"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/medical/gen_treatment) -"bxK" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/cryo) -"bxL" = ( -/obj/structure/bed/stool/chair/padded/teal{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bxN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bxO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bxP" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bxQ" = ( -/obj/structure/bed/stool/chair/plastic{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bxR" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "OR1" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "OR1" - }, -/turf/simulated/floor/plating, -/area/medical/surgerywing) -"bxS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bxT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bxU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bxY" = ( -/obj/structure/mopbucket, -/turf/simulated/floor/tiled, -/area/medical/custodial_closet) -"bxZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/medical/custodial_closet) -"byb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/pottedplant{ - dead = 1; - icon_state = "plant-dead"; - name = "dead plant" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"bye" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass, -/area/bridge) -"byf" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/bridge) -"byg" = ( -/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/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/bridge) -"byh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"byi" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"byj" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/grass, -/area/bridge) -"bym" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "scimaint_airlock_exterior"; - locked = 1; - name = "Research Maintenance External Access"; - req_access = list(13); - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "scimaint_airlock_controller"; - name = "exterior access button"; - pixel_x = -6; - pixel_y = -25; - req_access = list(13) - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"byn" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "scimaint_airlock_pump" - }, -/obj/machinery/light/small/emergency, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Port Maint EVA" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "scimaint_airlock_controller"; - pixel_y = 29; - req_access = list(13); - tag_airpump = "scimaint_airlock_pump"; - tag_chamber_sensor = "scimaint_airlock_sensor"; - tag_exterior_door = "scimaint_airlock_exterior"; - tag_interior_door = "scimaint_airlock_interior" - }, -/obj/machinery/airlock_sensor{ - id_tag = "scimaint_airlock_sensor"; - pixel_x = 10; - pixel_y = -25 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"byo" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "scimaint_airlock_interior"; - locked = 1; - name = "Research Maintenance External Access"; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"byp" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "scimaint_airlock_controller"; - name = "interior access button"; - pixel_x = -27; - pixel_y = 25; - req_access = list(13) - }, -/obj/structure/sign/vacuum{ - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"byq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - icon_state = "map_on"; - target_pressure = 150; - use_power = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"byr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bys" = ( -/obj/structure/cable{ - 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/plating, -/area/maintenance/research_port) -"byt" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/cyan, -/area/rnd/rdoffice) -"byu" = ( -/obj/machinery/door/window{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/cyan, -/area/rnd/rdoffice) -"byv" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/cyan, -/area/rnd/rdoffice) -"byw" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/papershredder, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"byx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"byy" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"byz" = ( -/obj/structure/table/standard, -/obj/item/stamp/rd{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/paper/monitorkey, -/obj/item/device/megaphone/sci, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/landmark{ - name = "Mission Paper" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"byA" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"byB" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "RDTint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "RDTint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "RDTint" - }, -/turf/simulated/floor/plating, -/area/rnd/rdoffice) -"byD" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/rnd/misc_lab) -"byE" = ( -/obj/structure/table/steel, -/turf/simulated/floor/carpet/rubber, -/area/rnd/misc_lab) -"byF" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/misc_lab) -"byH" = ( -/turf/simulated/floor/carpet/rubber, -/area/rnd/misc_lab) -"byJ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"byL" = ( -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"byM" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"byN" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"byO" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/window{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Research Desk"; - req_access = list(7) - }, -/obj/machinery/ringer_button{ - id = "sci_ringer"; - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "RnDShutters"; - name = "Research and Development"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"byP" = ( -/obj/structure/cable{ - 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{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"byQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"byS" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "First Responder Quarters"; - req_access = list(67); - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"byT" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"byU" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"byV" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"byW" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"byX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/misc_lab) -"byY" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/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, -/area/medical/paramedic) -"byZ" = ( -/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/effect/floor_decal/corner/grey{ - dir = 9 - }, -/obj/effect/floor_decal/sign/paramedic, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bza" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/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/medical/medbay) -"bzc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"bzd" = ( -/obj/machinery/body_scanconsole{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/full, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/medical/gen_treatment) -"bzf" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/medical/cryo) -"bzh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bzj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bzk" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bzl" = ( -/obj/machinery/optable, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bzn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"bzo" = ( -/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/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"bzp" = ( -/obj/structure/table/rack{ - dir = 1 - }, -/obj/item/clothing/suit/caution{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/clothing/suit/caution{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/clothing/suit/caution{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/storage/box/lights/mixed{ - pixel_x = 2; - pixel_y = -2 - }, -/turf/simulated/floor/tiled, -/area/medical/custodial_closet) -"bzr" = ( -/obj/structure/closet, -/turf/simulated/floor/tiled, -/area/medical/custodial_closet) -"bzt" = ( -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Lift Lobby"; - dir = 4 - }, -/obj/random/pottedplant, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/bridge) -"bzu" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"bzv" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/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" - }, -/turf/simulated/floor/tiled, -/area/bridge) -"bzw" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - 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 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 23; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"bzx" = ( -/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/effect/landmark{ - name = "borerstart" - }, -/turf/simulated/floor/tiled, -/area/bridge) -"bzy" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(19); - dir = 4 - }, -/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 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"bzz" = ( -/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/plating, -/area/maintenance/bridge_elevator) -"bzA" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bzB" = ( -/obj/structure/bed/stool/chair/padded/black{ - dir = 4 - }, -/turf/simulated/floor/carpet/cyan, -/area/rnd/rdoffice) -"bzC" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/device/eftpos{ - eftpos_name = "Research EFTPOS scanner" - }, -/obj/item/paper_scanner{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/simulated/floor/carpet/cyan, -/area/rnd/rdoffice) -"bzD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/carpet/cyan, -/area/rnd/rdoffice) -"bzE" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/rdoffice) -"bzF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/rdoffice) -"bzG" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bzH" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control-switch for the office door."; - id = "rdmdoor"; - name = "Meeting Room Door Control"; - pixel_x = 34; - pixel_y = 30; - req_access = list(30) - }, -/obj/machinery/button/switch/windowtint{ - id = "RDTint"; - pixel_x = 26; - pixel_y = 30; - range = 10 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/button/remote/blast_door{ - id = "Biohazard"; - name = "Biohazard Shutter Control"; - pixel_x = 30; - pixel_y = 38; - req_access = list(47) - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bzI" = ( -/obj/item/modular_computer/console/preset/research, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bzJ" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "RDTint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "RDTint" - }, -/turf/simulated/floor/plating, -/area/rnd/rdoffice) -"bzL" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/hologram/holopad, -/obj/effect/landmark{ - name = "RevenantRift" - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/misc_lab) -"bzM" = ( -/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 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/misc_lab) -"bzO" = ( -/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/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bzR" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bzS" = ( -/obj/structure/table/standard, -/obj/item/device/hand_labeler, -/obj/item/stack/packageWrap, -/obj/item/stack/wrapping_paper, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bzT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "RnDShutters"; - name = "Research and Development"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/lab) -"bzU" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"bzV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_research{ - name = "Circuitry Lab"; - req_access = list(7); - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bzX" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/door/window/southleft{ - req_access = list(67) - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"bzY" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/window/reinforced, -/obj/random/pottedplant, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"bzZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/paramedic) -"bAb" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - 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, -/area/medical/paramedic) -"bAc" = ( -/obj/structure/bed/stool/chair/office/light, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"bAd" = ( -/obj/structure/extinguisher_cabinet/west, -/obj/structure/bed/stool/chair/plastic{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bAe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bAf" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bAg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Cryogenics Control Room"; - req_access = list(66); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/white, -/area/medical/cryo) -"bAh" = ( -/obj/structure/bed/stool/chair/padded/teal{ - dir = 4 - }, -/obj/machinery/firealarm/west, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bAi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bAj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bAk" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/structure/bed/stool/chair/plastic{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bAl" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "OR1" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "OR1" - }, -/obj/structure/window/reinforced/polarized{ - id = "OR1" - }, -/turf/simulated/floor/plating, -/area/medical/surgerywing) -"bAm" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bAn" = ( -/obj/machinery/computer/operating, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bAo" = ( -/obj/structure/sink/kitchen{ - dir = 8; - name = "surgical sink"; - pixel_x = 20 - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bAr" = ( -/obj/item/mop, -/obj/structure/table/rack{ - dir = 1 - }, -/obj/item/wrench, -/turf/simulated/floor/tiled, -/area/medical/custodial_closet) -"bAs" = ( -/obj/machinery/power/apc/south, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/medical/custodial_closet) -"bAt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/medical/custodial_closet) -"bAv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bAy" = ( -/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/plating, -/area/maintenance/bridge_elevator) -"bAz" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/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 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bAA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - 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/plating, -/area/maintenance/research_port) -"bAB" = ( -/obj/structure/bed/stool/chair/padded/black{ - dir = 4 - }, -/obj/structure/sign/nosmoking_1{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/carpet/cyan, -/area/rnd/rdoffice) -"bAC" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/folder/purple, -/turf/simulated/floor/carpet/cyan, -/area/rnd/rdoffice) -"bAD" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/cyan, -/area/rnd/rdoffice) -"bAF" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/rdoffice) -"bAG" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bAH" = ( -/obj/machinery/computer/robotics, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bAI" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bAJ" = ( -/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/disposalpipe/segment, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bAM" = ( -/obj/structure/disposalpipe/segment, -/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/carpet/rubber, -/area/rnd/misc_lab) -"bAN" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/light_switch{ - pixel_x = 22 - }, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"bAO" = ( -/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/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bAP" = ( -/obj/machinery/r_n_d/protolathe, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bAQ" = ( -/obj/machinery/autolathe, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bAS" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bAT" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bAU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "firstrespondershutter"; - name = "First Responder Garage Door" - }, -/turf/simulated/floor/plating, -/area/medical/paramedic) -"bAV" = ( -/turf/simulated/floor/plating, -/area/medical/paramedic) -"bAW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/misc_lab) -"bAX" = ( -/obj/machinery/mech_recharger, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/paramedic) -"bAZ" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR: MEDICAL EXOSUIT PARKING'"; - name = "KEEP CLEAR: MEDICAL EXOSUIT PARKING"; - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bBb" = ( -/obj/item/modular_computer/console/preset/medical, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"bBc" = ( -/obj/random/pottedplant, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bBd" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bBe" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Port 3"; - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bBf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/power/apc/high/west, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/medical/cryo) -"bBg" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/medical/cryo) -"bBh" = ( -/obj/machinery/alarm/west, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Pre-Op 1"; - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/structure/bed/roller, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bBi" = ( -/obj/structure/curtain/open/medical{ - name = "Operating Room 1" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bBj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Cold Storage"; - req_access = list(66); - dir = 4 - }, -/obj/structure/plasticflaps/airtight, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/medical/surgerywing) -"bBl" = ( -/turf/simulated/wall, -/area/maintenance/substation/medical) -"bBo" = ( -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bBr" = ( -/obj/structure/closet/crate, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bBs" = ( -/turf/simulated/floor/plating, -/area/turbolift/command_sub) -"bBt" = ( -/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/maintenance/bridge_elevator) -"bBu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bBv" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bBw" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bBy" = ( -/obj/structure/bed/stool/chair/padded/black{ - dir = 4 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/carpet/cyan, -/area/rnd/rdoffice) -"bBz" = ( -/obj/structure/table/standard, -/obj/item/modular_computer/laptop/preset/research/rd, -/obj/item/storage/slide_projector{ - pixel_y = 12 - }, -/turf/simulated/floor/carpet/cyan, -/area/rnd/rdoffice) -"bBB" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/rdoffice) -"bBC" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey, -/turf/simulated/floor/tiled, -/area/rnd/rdoffice) -"bBE" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/power/apc/high/south, -/turf/simulated/floor/carpet/rubber, -/area/rnd/misc_lab) -"bBF" = ( -/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{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/misc_lab) -"bBG" = ( -/obj/structure/table/standard, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - First Responder Quarters"; - dir = 1 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/vending/wallmed1{ - pixel_y = -30 - }, -/obj/item/device/hand_labeler, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"bBH" = ( -/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/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bBI" = ( -/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/rnd/lab) -"bBL" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/capacitor, -/obj/item/stack/cable_coil, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bBM" = ( -/obj/structure/cable{ - 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, -/area/hallway/primary/central_one) -"bBO" = ( -/obj/machinery/light/small, -/obj/machinery/button/remote/blast_door{ - id = "firstrespondershutter"; - name = "Garage Shutters Control"; - pixel_y = -26; - req_access = list(5) - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - First Responder Garage"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/paramedic) -"bBP" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/main) -"bBQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/medical{ - name = "Cryogenics Storage"; - req_access = list(5); - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/lime/full{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/main) -"bBR" = ( -/obj/machinery/alarm/west, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/cryo) -"bBS" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/plating, -/area/medical/cryo) -"bBT" = ( -/obj/machinery/iv_drip, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bBU" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bBV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bBW" = ( -/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/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bBX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Combined Operating Theatre"; - req_access = list(45); - 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/holosign/surgery{ - id = 1 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bBY" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Combined Surgery Central" - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bBZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bCa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/firealarm/east, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bCb" = ( -/obj/structure/closet/crate/freezer{ - name = "O- Blood Packs" - }, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/medical/surgerywing) -"bCc" = ( -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/medical/surgerywing) -"bCd" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - name = "mediexpress outlet" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/medical/surgerywing) -"bCi" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/disposalpipe/up, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bCj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bCk" = ( -/obj/structure/ladder{ - pixel_y = 16 - }, -/turf/simulated/open, -/area/maintenance/medbay) -"bCm" = ( -/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 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bCn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm/north, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bCp" = ( -/obj/structure/cable{ - 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/plating, -/area/maintenance/research_port) -"bCq" = ( -/turf/simulated/floor/carpet/cyan, -/area/rnd/rdoffice) -"bCr" = ( -/obj/structure/table/rack, -/obj/machinery/light_switch{ - pixel_y = -23 - }, -/obj/item/clothing/glasses/welding/superior, -/obj/item/rig/hazmat/equipped, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bCs" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/standard, -/obj/machinery/photocopier/faxmachine{ - department = "Research Director's Office" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bCt" = ( -/obj/structure/table/standard, -/obj/item/device/taperecorder{ - pixel_x = -3 - }, -/obj/item/device/paicard{ - pixel_x = 4 - }, -/obj/item/device/radio/intercom/south, -/obj/item/circuitboard/aicore{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bCu" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/requests_console/west{ - announcementConsole = 1; - department = "Research Director's Desk"; - departmentType = 5; - name = "Research Director RC"; - pixel_y = -30 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bCv" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/closet/secure_closet/RD, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/gloves/latex/nitrile/tajara, -/obj/item/clothing/gloves/latex/nitrile/unathi, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bCw" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/cable/green, -/obj/structure/window/reinforced/polarized{ - id = "RDTint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "RDTint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "RDTint" - }, -/turf/simulated/floor/plating, -/area/rnd/rdoffice) -"bCx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/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, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bCz" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/item/device/radio/intercom/south, -/obj/item/storage/box/gloves{ - pixel_y = 4 - }, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"bCC" = ( -/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/glass_research{ - name = "Exploratory Chemistry"; - req_access = list(7); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/chemistry) -"bCD" = ( -/obj/item/storage/bag/circuits/basic, -/obj/item/device/integrated_electronics/wirer, -/obj/item/device/integrated_electronics/debugger, -/obj/structure/table/steel, -/turf/simulated/floor/carpet/rubber, -/area/rnd/misc_lab) -"bCE" = ( -/obj/machinery/r_n_d/destructive_analyzer, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bCF" = ( -/obj/machinery/computer/rdconsole/core, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bCG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bCH" = ( -/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/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCI" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "RnDShutters"; - name = "Research and Development"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/lab) -"bCK" = ( -/obj/machinery/light, -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/mauve/full, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bCL" = ( -/obj/item/device/radio/intercom/south, -/obj/machinery/camera/network/research{ - c_tag = "Research - Miscellaneous Research"; - dir = 1 - }, -/obj/structure/table/steel, -/turf/simulated/floor/carpet/rubber, -/area/rnd/misc_lab) -"bCN" = ( -/obj/structure/cryofeed{ - dir = 2 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/main) -"bCO" = ( -/obj/structure/cryofeed{ - dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/main) -"bCP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/main) -"bCQ" = ( -/obj/machinery/computer/cryopod{ - pixel_y = 32 - }, -/obj/item/device/radio/intercom/east, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/main) -"bCR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/cryo) -"bCS" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/medical/cryo) -"bCU" = ( -/obj/structure/bed/roller, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bCW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bCX" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/sign/srg, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bCY" = ( -/obj/structure/table/standard, -/obj/item/storage/box/masks{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/gloves, -/obj/machinery/power/apc/west, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bCZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bDa" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bDb" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/medical/surgerywing) -"bDc" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Medical Main" - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/medical) -"bDd" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Medical Substation"; - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/medical) -"bDg" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bDh" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/turbolift/command_sub) -"bDi" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/turbolift/command_sub) -"bDj" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/research) -"bDk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "RDTint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "RDTint" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/window/reinforced/polarized{ - id = "RDTint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "RDTint" - }, -/turf/simulated/floor/plating, -/area/rnd/rdoffice) -"bDl" = ( -/obj/machinery/door/airlock/command{ - id_tag = "rdmdoor"; - name = "Research Director's Meeting Room"; - req_access = list(30); - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/rdoffice) -"bDm" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "RDTint" - }, -/obj/structure/window/reinforced/polarized{ - id = "RDTint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "RDTint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "RDTint" - }, -/turf/simulated/floor/plating, -/area/rnd/rdoffice) -"bDn" = ( -/obj/machinery/power/apc/west, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bDo" = ( -/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 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bDp" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/machinery/ringer/west{ - department = "R&D Laboratory"; - id = "sci_ringer"; - pixel_y = -26; - req_access = list(7) - }, -/obj/machinery/light, -/turf/simulated/floor/carpet/rubber, -/area/rnd/misc_lab) -"bDr" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/machinery/ringer/north{ - department = "R&D Laboratory"; - id = "sci_ringer"; - req_access = list(7) - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"bDs" = ( -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 30 - }, -/obj/structure/sink{ - pixel_y = 28 - }, -/obj/structure/extinguisher_cabinet/west{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"bDu" = ( -/turf/simulated/wall/r_wall, -/area/rnd/misc_lab) -"bDv" = ( -/obj/structure/table/standard, -/obj/item/stack/cable_coil, -/obj/item/storage/toolbox/mechanical, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bDx" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bDy" = ( -/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 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bDz" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Research & Development 2"; - dir = 8 - }, -/obj/machinery/power/apc/high/east, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bDA" = ( -/obj/machinery/alarm/north, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bDB" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bDC" = ( -/obj/item/device/radio/intercom/north, -/obj/machinery/vending/cola, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Central Coridor - Camera 4" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bDD" = ( -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bDE" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/main) -"bDF" = ( -/obj/machinery/cryopod{ - dir = 2 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/main) -"bDG" = ( -/obj/machinery/cryopod{ - dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/main) -"bDH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/ramp, -/area/crew_quarters/sleep/main) -"bDI" = ( -/obj/structure/extinguisher_cabinet/east, -/turf/simulated/floor/tiled/ramp, -/area/crew_quarters/sleep/main) -"bDJ" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 1; - icon_state = "freezer" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/medical/cryo) -"bDL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bDM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bDN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bDO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Combined Operating Theatre"; - req_access = list(45); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/holosign/surgery{ - id = 2 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bDP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bDR" = ( -/obj/machinery/alarm/cold/east, -/obj/structure/closet/secure_closet/medical2, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/medical/surgerywing) -"bDS" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Medical Main Substation Bypass" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/medical) -"bDT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/medical) -"bDU" = ( -/obj/structure/plasticflaps/airtight, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Transfusion Supplies"; - req_one_access = list(12,66); - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/maintenance/medbay) -"bDV" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(12,66); - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bDZ" = ( -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bEa" = ( -/obj/random/pottedplant, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/turbolift/command_sub) -"bEb" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/turbolift/command_sub) -"bEc" = ( -/obj/effect/mazegen/module_helper/entry_exit, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bEe" = ( -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"bEl" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/research) -"bEp" = ( -/obj/structure/table/standard, -/obj/item/storage/box/syringes, -/obj/item/storage/box/beakers{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"bEq" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR: MEDICAL EXOSUIT PARKING'"; - name = "KEEP CLEAR: MEDICAL EXOSUIT PARKING"; - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bEs" = ( -/obj/machinery/ringer/north{ - department = "R&D Laboratory"; - id = "sci_ringer"; - req_access = list(7) - }, -/obj/structure/table/standard, -/obj/machinery/reagentgrinder, -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"bEt" = ( -/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{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"bEu" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/firealarm/north, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"bEw" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window{ - name = "Emergency Shower" - }, -/obj/machinery/shower{ - pixel_y = 15 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/chemistry) -"bEx" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bEy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bEz" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/wrench, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bEA" = ( -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bEB" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bEC" = ( -/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{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bED" = ( -/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/machinery/firealarm/north, -/turf/simulated/floor/tiled/ramp{ - dir = 4 - }, -/area/hallway/primary/central_one) -"bEE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bEF" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/main) -"bEG" = ( -/obj/effect/landmark/latejoincryo, -/obj/effect/landmark/latejoincryo, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/main) -"bEH" = ( -/obj/effect/landmark/latejoincryo, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/landmark/latejoincryo, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/main) -"bEI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/main) -"bEJ" = ( -/obj/machinery/power/apc/east, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/main) -"bEK" = ( -/turf/simulated/wall, -/area/maintenance/bar) -"bEL" = ( -/obj/item/device/radio/intercom/west, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/structure/closet/secure_closet/personal/patient, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bEN" = ( -/obj/structure/curtain/open/medical{ - name = "Operating Room 2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bEP" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bEQ" = ( -/obj/turbolift_map_holder/aurora/command, -/turf/simulated/floor/plating, -/area/turbolift/command_sub) -"bET" = ( -/obj/effect/landmark/start{ - name = "Scientist" - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/bed/stool/chair/plastic, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"bEV" = ( -/obj/effect/landmark/start{ - name = "Lab Assistant" - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/bed/stool/chair/plastic, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"bEX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"bEZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/rnd/research) -"bFb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/rnd/research) -"bFc" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/clothing/glasses/safety/goggles/science, -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"bFd" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"bFf" = ( -/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" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"bFg" = ( -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"bFh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bFi" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"bFj" = ( -/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/white, -/area/rnd/chemistry) -"bFn" = ( -/obj/machinery/door/firedoor{ - enable_smart_generation = 0 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bFo" = ( -/obj/machinery/door/airlock/glass{ - name = "Holodeck"; - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) -"bFp" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"bFq" = ( -/obj/machinery/camera/network/civilian_main{ - c_tag = "Central Corridor - Camera 2"; - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bFr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bFs" = ( -/obj/effect/floor_decal/corner/dark_green, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bFt" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bFu" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bFv" = ( -/turf/simulated/floor/tiled/ramp{ - dir = 4 - }, -/area/hallway/primary/central_one) -"bFw" = ( -/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 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bFx" = ( -/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/machinery/door/airlock/glass{ - name = "Cryogenic Storage"; - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/main) -"bFy" = ( -/obj/structure/disposalpipe/segment{ - 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 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/main) -"bFz" = ( -/obj/structure/cable{ - 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, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/main) -"bFA" = ( -/obj/structure/cable{ - 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/white, -/area/crew_quarters/sleep/main) -"bFB" = ( -/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/white, -/area/crew_quarters/sleep/main) -"bFC" = ( -/obj/structure/cable{ - 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, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/main) -"bFD" = ( -/obj/structure/cable{ - 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, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/main) -"bFE" = ( -/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/machinery/door/airlock/maintenance{ - req_one_access = list(12,66); - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/main) -"bFF" = ( -/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/plating, -/area/maintenance/bar) -"bFG" = ( -/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/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bFH" = ( -/obj/structure/cable{ - 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/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/alarm/east, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bFI" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bFJ" = ( -/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 = 6 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bFK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bFL" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/structure/bed/stool/chair/plastic{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bFM" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "OR2" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "OR2" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "OR2" - }, -/turf/simulated/floor/plating, -/area/medical/surgerywing) -"bFN" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bFO" = ( -/obj/structure/reagent_dispensers/extinguisher, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bFP" = ( -/obj/structure/closet, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bFQ" = ( -/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/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bFR" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"bFT" = ( -/obj/structure/closet, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bFV" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"bFW" = ( -/obj/structure/table/standard, -/obj/item/folder/purple, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"bFX" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/item/folder/purple, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"bFY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/landmark/start{ - name = "Research Director" - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"bGb" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/vials, -/obj/item/reagent_containers/dropper, -/obj/item/device/radio/intercom/west, -/obj/effect/floor_decal/corner_wide/mauve/full, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"bGe" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bGf" = ( -/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/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"bGh" = ( -/obj/machinery/light, -/obj/structure/closet{ - name = "Materials Closet" - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bGi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_research{ - name = "Telescience"; - req_access = list(7); - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"bGj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bGk" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bGl" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bGm" = ( -/obj/machinery/camera/network/civilian_main{ - c_tag = "Central Corridor - Camera 1"; - dir = 4 - }, -/obj/machinery/computer/guestpass{ - pixel_x = -32 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bGn" = ( -/obj/structure/sign/directions/evac{ - dir = 8; - pixel_y = 36 - }, -/obj/structure/sign/directions/cryo{ - dir = 8; - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bGo" = ( -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = 40 - }, -/obj/structure/sign/directions/science{ - dir = 8; - pixel_y = 32 - }, -/obj/structure/sign/directions/civ{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bGp" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/sign/directions/security{ - dir = 4; - pixel_y = 32 - }, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_y = 24 - }, -/obj/structure/sign/directions/com{ - dir = 4; - pixel_y = 40 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bGq" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bGr" = ( -/turf/simulated/wall, -/area/hydroponics) -"bGs" = ( -/obj/machinery/smartfridge/drying_rack, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bGt" = ( -/obj/structure/table/standard, -/obj/machinery/door/window{ - name = "hydroponics desk"; - req_access = list(35) - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bGu" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hydroponics) -"bGv" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bGw" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/main) -"bGy" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/main) -"bGz" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Cryogenics - Main Level"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/main) -"bGA" = ( -/obj/machinery/light, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/main) -"bGB" = ( -/obj/machinery/alarm/east, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/main) -"bGC" = ( -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bGD" = ( -/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/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bGE" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance{ - req_access = list(66); - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/surgeryobs) -"bGF" = ( -/obj/effect/floor_decal/corner_wide/lime/full, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bGG" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bGH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bGI" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "OR2" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "OR2" - }, -/turf/simulated/floor/plating, -/area/medical/surgerywing) -"bGK" = ( -/obj/effect/floor_decal/corner/grey, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bGM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"bGN" = ( -/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 = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"bGO" = ( -/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/plating, -/area/maintenance/bridge_elevator) -"bGP" = ( -/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/plating, -/area/maintenance/bridge_elevator) -"bGQ" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bHb" = ( -/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/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bHc" = ( -/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/junction/yjunction{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bHd" = ( -/turf/simulated/wall/r_wall, -/area/rnd/telesci) -"bHe" = ( -/obj/structure/bed/stool/chair/office/light, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bHg" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/alarm/west, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bHh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=CC1"; - location = "CP2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bHi" = ( -/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 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bHj" = ( -/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/central_one) -"bHk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/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, -/area/hallway/primary/central_one) -"bHl" = ( -/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/navbeacon{ - codes_txt = "patrol;next_patrol=Civ"; - location = "CC1" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bHm" = ( -/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/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bHn" = ( -/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/navbeacon{ - codes_txt = "patrol;next_patrol=CS1"; - location = "CC2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bHo" = ( -/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, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bHq" = ( -/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 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bHr" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=CS2"; - location = "CS1" - }, -/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, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bHs" = ( -/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/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bHt" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/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, -/area/hydroponics) -"bHu" = ( -/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/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bHv" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Gardener" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bHw" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/watertank, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm/east, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/item/clothing/gloves/botanic_leather/vaurca, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bHy" = ( -/turf/simulated/wall, -/area/medical/surgeryprep) -"bHz" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/medical/surgeryprep) -"bHA" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Pre/Post-OP"; - dir = 1 - }, -/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/effect/map_effect/door_helper/unres, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryprep) -"bHB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bHD" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bHF" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(12,66); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bHG" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bHH" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/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/plating, -/area/maintenance/medbay) -"bHJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"bHK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"bHV" = ( -/obj/machinery/suit_cycler/science, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/telesci) -"bHW" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/void/sci, -/obj/item/clothing/head/helmet/space/void/sci, -/obj/item/clothing/shoes/magboots, -/obj/item/tank/oxygen, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/telesci) -"bHY" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"bHZ" = ( -/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/plating, -/area/maintenance/library) -"bIc" = ( -/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_one_access = list(12,66); - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"bId" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bIe" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bIf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bIg" = ( -/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/central_one) -"bIh" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bIi" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Hydroponics"; - req_access = list(35) - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bIj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bIl" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/watertank, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/clothing/gloves/botanic_leather/vaurca, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bIm" = ( -/obj/machinery/newscaster/north, -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/grass, -/area/hydroponics) -"bIn" = ( -/obj/machinery/requests_console/north{ - department = "Hydroponics"; - departmentType = 2; - name = "Hydroponics Requests Console" - }, -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/grass, -/area/hydroponics) -"bIo" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/small/south, -/obj/structure/closet/crate/hydroponics, -/obj/item/bee_smoker, -/obj/item/beehive_assembly, -/obj/item/bee_pack, -/obj/item/bee_net, -/obj/item/honey_frame, -/obj/item/honey_frame, -/turf/simulated/floor/grass, -/area/hydroponics) -"bIp" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/grass, -/area/hydroponics) -"bIq" = ( -/obj/machinery/firealarm/east, -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/grass, -/area/hydroponics) -"bIr" = ( -/obj/machinery/vending/hydronutrients, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/bar) -"bIs" = ( -/obj/random/loot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/maintenance/bar) -"bIv" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryprep) -"bIw" = ( -/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/white, -/area/medical/surgeryprep) -"bIx" = ( -/obj/machinery/firealarm/east, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryprep) -"bIz" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"bIA" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "OR2" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "OR2" - }, -/obj/structure/window/reinforced/polarized{ - id = "OR2" - }, -/turf/simulated/floor/plating, -/area/medical/surgerywing) -"bIB" = ( -/obj/machinery/button/switch/windowtint{ - id = "OR2"; - pixel_x = -4; - pixel_y = -26; - req_access = list(66) - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/machinery/button/switch/holosign{ - id = 2; - pixel_x = 3; - pixel_y = -26 - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bIC" = ( -/obj/structure/table/standard, -/obj/item/device/radio/intercom/south, -/obj/item/device/radio{ - anchored = 1; - canhear_range = 7; - frequency = 1487; - icon_state = "red_phone"; - name = "Surgery Emergency Phone"; - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - icon_state = "sterilesprayblue"; - name = "Surgery Cleaner" - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"bIH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/machinery/meter{ - name = "Scrubbers" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"bII" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/blue, -/obj/machinery/meter{ - name = "Air supply" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"bIK" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/sleep/research) -"bIL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/rnd/telesci) -"bIM" = ( -/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, -/obj/machinery/door/airlock/glass_research{ - name = "Telescience"; - req_one_access = list(7,29); - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"bIN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/rnd/telesci) -"bIP" = ( -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"bIS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"bIT" = ( -/turf/simulated/wall, -/area/library) -"bIU" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Library" - }, -/obj/machinery/door/firedoor/multi_tile, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/library) -"bIV" = ( -/turf/simulated/floor/tiled, -/area/library) -"bIW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/library) -"bIX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/library) -"bIY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/library) -"bIZ" = ( -/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/firedoor{ - enable_smart_generation = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bJa" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hydroponics) -"bJb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hydroponics) -"bJc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hydroponics) -"bJd" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "barshutters01"; - name = "Bar Shutters" - }, -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/shaker, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bJe" = ( -/turf/simulated/floor/tiled, -/area/hydroponics) -"bJf" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bJg" = ( -/turf/simulated/floor/grass, -/area/hydroponics) -"bJi" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/grass, -/area/hydroponics) -"bJm" = ( -/obj/structure/curtain, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryprep) -"bJn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryprep) -"bJo" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryprep) -"bJp" = ( -/obj/structure/cable{ - 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/plating, -/area/maintenance/medbay) -"bJq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bJr" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bJt" = ( -/obj/structure/cable{ - 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/plating, -/area/maintenance/research_port) -"bJu" = ( -/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/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bJw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - 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/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bJx" = ( -/turf/simulated/open, -/area/turbolift/research_station) -"bJA" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"bJC" = ( -/obj/machinery/newscaster/east, -/obj/structure/table/standard, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/manipulator, -/obj/item/device/firing_pin/test_range, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bJD" = ( -/obj/structure/bed/stool/chair/office/light, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"bJF" = ( -/obj/structure/bookcase{ - name = "Forbidden Knowledge" - }, -/turf/simulated/floor/tiled/dark, -/area/library) -"bJG" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/library) -"bJH" = ( -/obj/machinery/disposal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/alarm/west, -/obj/machinery/newscaster/north, -/turf/simulated/floor/wood, -/area/library) -"bJI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/requests_console/north{ - department = "Library"; - departmentType = 1; - name = "Library Requests Console" - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/wood, -/area/library) -"bJJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/simulated/floor/wood, -/area/library) -"bJK" = ( -/obj/machinery/door/window/westright{ - dir = 4; - name = "Library Door"; - req_access = list(37) - }, -/obj/structure/table/wood, -/obj/machinery/firealarm/north, -/obj/machinery/librarycomp, -/turf/simulated/floor/wood, -/area/library) -"bJL" = ( -/turf/simulated/floor/carpet, -/area/library) -"bJM" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/library) -"bJN" = ( -/obj/structure/table/wood, -/turf/simulated/floor/wood, -/area/library) -"bJO" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/library) -"bJP" = ( -/obj/machinery/door/airlock/glass{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bJQ" = ( -/obj/machinery/door/airlock/glass{ - 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, -/area/hallway/primary/aft) -"bJR" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hydroponics) -"bJS" = ( -/obj/random/pottedplant, -/turf/simulated/floor/grass, -/area/hydroponics) -"bJU" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/grass, -/area/hydroponics) -"bJV" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/grass, -/area/hydroponics) -"bJW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bJX" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bJY" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hydroponics) -"bJZ" = ( -/obj/structure/largecrate/animal/chick, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"bKa" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"bKb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"bKc" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"bKd" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bKe" = ( -/obj/machinery/vending/hydroseeds{ - prices = list() - }, -/turf/simulated/floor/tiled, -/area/maintenance/bar) -"bKf" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"bKg" = ( -/obj/structure/disposalpipe/segment, -/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" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bKh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Pre-Op 2"; - dir = 1 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryprep) -"bKi" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryprep) -"bKj" = ( -/obj/machinery/door/airlock{ - name = "Changing Room"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryprep) -"bKk" = ( -/turf/simulated/floor/tiled/white, -/area/medical/surgeryprep) -"bKl" = ( -/obj/structure/table/rack, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryprep) -"bKo" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/random/loot, -/turf/simulated/floor/carpet/cyan, -/area/maintenance/medbay) -"bKp" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/folder/white, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet/cyan, -/area/maintenance/medbay) -"bKr" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/medical{ - name = "Room 3"; - req_one_access = list(12,66); - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay) -"bKs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"bKt" = ( -/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 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"bKw" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"bKx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"bKz" = ( -/obj/machinery/light, -/obj/machinery/chem_heater, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"bKB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green, -/obj/machinery/power/apc/east, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"bKD" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/machinery/newscaster/west, -/turf/simulated/floor/tiled/dark, -/area/library) -"bKE" = ( -/obj/effect/landmark/start{ - name = "Librarian" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/bed/stool/chair/padded/black, -/turf/simulated/floor/tiled/dark, -/area/library) -"bKF" = ( -/obj/structure/curtain/black, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"bKG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/library) -"bKH" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/library) -"bKI" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"bKJ" = ( -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Library Desk"; - req_access = list(37) - }, -/obj/structure/table/wood, -/obj/item/paper_scanner, -/turf/simulated/floor/wood, -/area/library) -"bKK" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/library) -"bKL" = ( -/turf/simulated/floor/wood, -/area/library) -"bKN" = ( -/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{ - enable_smart_generation = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bKO" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bKP" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bKQ" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bKR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bKS" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/standard, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Hydroponics - East"; - dir = 8; - network = list("Service") - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/quikpay, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bKU" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/grass, -/area/hydroponics) -"bKX" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/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" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bKY" = ( -/turf/simulated/floor/tiled, -/area/maintenance/bar) -"bKZ" = ( -/obj/structure/cable{ - 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/plating, -/area/maintenance/medbay) -"bLa" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bLb" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bLc" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet/cyan, -/area/maintenance/medbay) -"bLd" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/tiled/freezer, -/area/maintenance/medbay) -"bLf" = ( -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bLg" = ( -/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/structure/disposalpipe/segment, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bLh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"bLi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"bLk" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"bLl" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/pen/red, -/obj/item/device/eftpos{ - eftpos_name = "Library EFTPOS scanner" - }, -/obj/item/device/radio/headset/headset_service, -/turf/simulated/floor/tiled/dark, -/area/library) -"bLm" = ( -/obj/structure/cult/tome, -/turf/simulated/floor/tiled/dark, -/area/library) -"bLn" = ( -/obj/machinery/door/window/southright{ - name = "Library Desk"; - req_access = list(37) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/library) -"bLo" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/libraryscanner, -/turf/simulated/floor/wood, -/area/library) -"bLq" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/wood, -/area/library) -"bLr" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/wood, -/area/library) -"bLs" = ( -/obj/machinery/door/window/southright{ - name = "Library Display Area"; - req_access = list(37) - }, -/turf/simulated/floor/wood, -/area/library) -"bLt" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/library) -"bLu" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Aft Corridor - Camera 4"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bLw" = ( -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bLx" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bLy" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/vending/hydronutrients, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bLz" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/biogenerator, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bLA" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bLB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/hologram/holopad, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bLD" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/honey_extractor{ - density = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bLE" = ( -/obj/structure/window/reinforced, -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/grass, -/area/hydroponics) -"bLF" = ( -/obj/structure/window/reinforced, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/grass, -/area/hydroponics) -"bLG" = ( -/obj/machinery/door/window{ - name = "Hydroponics Backroom"; - req_access = list(35) - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/grass, -/area/hydroponics) -"bLJ" = ( -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bLK" = ( -/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/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintance"; - req_one_access = list(12,66); - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bLL" = ( -/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{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bLM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/examroom{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bLN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bLP" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/item/stack/tile/floor_white{ - pixel_x = 5; - pixel_y = -5 - }, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"bLQ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Starboard Ward"; - req_one_access = list(12,66); - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/plating, -/area/maintenance/medbay) -"bLR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/filingcabinet, -/turf/simulated/floor/carpet/cyan, -/area/maintenance/medbay) -"bLS" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/cleanable/blood/splatter, -/obj/random/medical, -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "patient_unit_1"; - name = "Door Bolt Control"; - pixel_x = 22; - pixel_y = 8; - specialfunctions = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/maintenance/medbay) -"bLU" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(19); - dir = 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/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"bLV" = ( -/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/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bLY" = ( -/obj/item/device/radio/intercom/south, -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bLZ" = ( -/obj/machinery/requests_console/south{ - department = "Research and Development"; - departmentType = 2; - name = "Research and Development Requests Console" - }, -/obj/structure/table/standard, -/obj/item/folder/purple, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bMd" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/power/apc/west, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/library) -"bMe" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"bMf" = ( -/obj/machinery/camera/network/civilian_main{ - c_tag = "Library - North"; - network = list("Service") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"bMg" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/seed_storage/garden, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bMh" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/seed_extractor, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bMi" = ( -/obj/effect/floor_decal/corner/dark_green, -/obj/structure/sink/kitchen{ - dir = 8; - name = "hydroponics sink"; - pixel_x = 20 - }, -/obj/item/device/radio/intercom/east, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bMj" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "barshutters01"; - name = "Bar Shutters" - }, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bMk" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bMm" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bMn" = ( -/obj/machinery/chem_master, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bMo" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/obj/machinery/reagentgrinder{ - pixel_y = 7 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bMp" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bMq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bMr" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access = list(12); - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bMs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintance"; - req_one_access = list(12,66); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bMu" = ( -/obj/effect/decal/warning_stripes, -/obj/structure/ladder/up{ - pixel_y = 16 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/bridge_elevator) -"bMv" = ( -/obj/structure/closet, -/obj/item/clothing/head/ushanka, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"bMw" = ( -/obj/structure/table/rack{ - dir = 1 - }, -/obj/item/clothing/suit/fire, -/obj/item/tank/oxygen, -/obj/item/clothing/mask/gas, -/obj/item/extinguisher, -/obj/item/clothing/head/hardhat/red, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bMx" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bMy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Research Division Maintenance"; - req_access = list(47); - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/telesci) -"bMz" = ( -/obj/structure/grille, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "chamber_a"; - name = "Lockdown Shutter"; - opacity = 0; - req_access = list(7) - }, -/turf/simulated/floor/plating, -/area/rnd/telesci) -"bMA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/northleft{ - req_one_access = list(7,29) - }, -/obj/machinery/door/window/southright{ - req_one_access = list(7,29) - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "chamber_a"; - name = "Lockdown Shutter"; - opacity = 0; - req_access = list(7) - }, -/turf/simulated/floor/reinforced, -/area/rnd/telesci) -"bMB" = ( -/obj/structure/grille, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "chamber_b"; - name = "Lockdown Shutter"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/telesci) -"bMC" = ( -/obj/structure/table/wood, -/obj/machinery/librarypubliccomp{ - pixel_y = 8 - }, -/turf/simulated/floor/wood, -/area/library) -"bMD" = ( -/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/wood, -/area/library) -"bME" = ( -/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/manifold4w/hidden/supply, -/turf/simulated/floor/wood, -/area/library) -"bMF" = ( -/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, -/area/library) -"bMG" = ( -/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/carpet, -/area/library) -"bMH" = ( -/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 - }, -/turf/simulated/floor/carpet, -/area/library) -"bMI" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Library" - }, -/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/multi_tile{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/library) -"bMJ" = ( -/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/hallway/primary/aft) -"bMK" = ( -/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/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bML" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bMM" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bMN" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bMO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bMP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bMR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bMS" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/bed/stool/chair/office/dark, -/obj/effect/landmark/start{ - name = "Gardener" - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bMT" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/spraybottles, -/obj/item/storage/box/fancy/vials, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bMU" = ( -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bMV" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bMW" = ( -/obj/structure/closet/walllocker/firecloset{ - pixel_x = -32 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bMX" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bMY" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/effect/decal/cleanable/dirt, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bNa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"bNb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table, -/obj/random/loot, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"bNd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bNe" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bNf" = ( -/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 = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"bNh" = ( -/obj/structure/closet, -/obj/item/clothing/head/ushanka, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bNi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bNj" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access = list(12); - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bNk" = ( -/turf/simulated/floor/reinforced, -/area/rnd/telesci) -"bNl" = ( -/turf/simulated/floor/reinforced, -/area/rnd/telesci) -"bNm" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research - Telescience Test Chamber B"; - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/telesci) -"bNn" = ( -/turf/simulated/floor/plating, -/area/maintenance/library) -"bNo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/library) -"bNp" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/library) -"bNq" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/carpet, -/area/library) -"bNr" = ( -/obj/effect/landmark/start{ - name = "Librarian" - }, -/obj/structure/bed/stool/chair/office/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/library) -"bNs" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/library) -"bNt" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/library) -"bNu" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"bNv" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/library) -"bNw" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bNz" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/hydroponics) -"bNE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bNF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - 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, -/area/hydroponics) -"bNG" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/machinery/power/apc/south, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bNH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - autoclose = 0; - dir = 2; - name = "Hydroponics"; - req_access = list(35) - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bNI" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/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/hydroponics) -"bNJ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/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/extinguisher_cabinet/south, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bNK" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 4; - name = "Hydroponics"; - sortType = "Hydroponics" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bNM" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bNN" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access = list(35); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hydroponics) -"bNO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bNQ" = ( -/obj/structure/table/rack{ - dir = 1 - }, -/obj/item/clothing/suit/fire, -/obj/item/tank/oxygen, -/obj/item/clothing/mask/gas, -/obj/item/extinguisher, -/obj/item/clothing/head/hardhat/red, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bNR" = ( -/obj/structure/closet, -/obj/item/clothing/head/ushanka, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bNS" = ( -/obj/item/device/t_scanner, -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bNT" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bNU" = ( -/obj/structure/curtain/medical, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"bNV" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bNW" = ( -/obj/structure/curtain/medical, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"bNX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"bNZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bOa" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bOb" = ( -/obj/item/device/t_scanner, -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bOc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - 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 = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bOd" = ( -/obj/effect/decal/cleanable/dirt, -/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/plating, -/area/maintenance/research_port) -"bOe" = ( -/obj/structure/sink/kitchen{ - name = "Autopsy sink"; - pixel_y = 28 - }, -/obj/random/junk, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"bOf" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/telesci) -"bOg" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/rnd/telesci) -"bOh" = ( -/obj/machinery/telepad, -/turf/simulated/floor/reinforced, -/area/rnd/telesci) -"bOi" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"bOj" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/paper_scanner{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/paper_scanner{ - pixel_x = -2; - pixel_y = -2 - }, -/turf/simulated/floor/wood, -/area/library) -"bOk" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/library) -"bOl" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green, -/turf/simulated/floor/wood, -/area/library) -"bOm" = ( -/obj/structure/table/wood, -/obj/item/toy/figure/librarian, -/turf/simulated/floor/wood, -/area/library) -"bOn" = ( -/obj/effect/landmark/start{ - name = "Librarian" - }, -/obj/structure/bed/stool/chair/office/dark, -/turf/simulated/floor/carpet, -/area/library) -"bOo" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/library) -"bOp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hydroponics) -"bOt" = ( -/turf/simulated/wall, -/area/crew_quarters/kitchen) -"bOv" = ( -/obj/structure/closet/crate, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bOw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"bOx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"bOy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bOz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"bOA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"bOB" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "civilian_eva_airlock"; - name = "interior access button"; - pixel_x = -25; - pixel_y = -25; - req_access = list(13) - }, -/obj/structure/sign/vacuum{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bOD" = ( -/obj/machinery/alarm/west, -/turf/simulated/floor/reinforced, -/area/rnd/telesci) -"bOE" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/library) -"bOF" = ( -/obj/machinery/bookbinder, -/obj/machinery/light/small, -/turf/simulated/floor/wood, -/area/library) -"bOG" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_y = -28 - }, -/turf/simulated/floor/wood, -/area/library) -"bOH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/disposal/small/north, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"bOI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/library) -"bOJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/wood, -/area/library) -"bOK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"bOL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/library) -"bOM" = ( -/obj/structure/bed/stool/chair/office/dark, -/turf/simulated/floor/carpet, -/area/library) -"bON" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green, -/turf/simulated/floor/carpet, -/area/library) -"bOO" = ( -/obj/structure/table/wood, -/obj/item/storage/card, -/obj/item/deck/tarot, -/obj/item/deck/cards, -/turf/simulated/floor/carpet, -/area/library) -"bOP" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/orderterminal{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/primary/aft) -"bOQ" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/newscaster/north, -/obj/structure/bed/stool/chair/sofa/left/red{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/primary/aft) -"bOR" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bOS" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/structure/bed/stool/chair/sofa/right/red{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/primary/aft) -"bOT" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled/white, -/area/hallway/primary/aft) -"bOU" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/door/airlock/glass{ - name = "Kitchen"; - req_access = list(28); - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bOV" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = 24 - }, -/obj/structure/sink/kitchen{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bOX" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bOZ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/stone/marble, -/obj/item/toy/figure/chef{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/stack/material/cardboard{ - amount = 10; - pixel_x = 1; - pixel_y = 2 - }, -/obj/item/storage/box/papersack, -/obj/item/storage/box/papersack, -/obj/item/storage/box/papersack, -/obj/item/storage/box/papersack, -/obj/item/storage/box/papersack, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bPa" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/requests_console/north{ - department = "Kitchen"; - departmentType = 1; - name = "Kitchen Requests Console" - }, -/obj/machinery/chem_heater, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bPb" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/stone/marble, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_y = 3 - }, -/obj/structure/noticeboard{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bPc" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/stone/marble, -/obj/machinery/appliance/mixer/cereal{ - pixel_x = -1; - pixel_y = 12 - }, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bPe" = ( -/obj/machinery/firealarm/west, -/obj/structure/table/stone/marble, -/obj/item/material/hatchet/butch, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/crew_quarters/kitchen/freezer) -"bPf" = ( -/obj/machinery/light{ - dir = 1; - name = "adjusted light fixture"; - pixel_x = -16; - icon_state = "tube_empty" - }, -/obj/structure/table/stone/marble, -/obj/item/material/hook, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/crew_quarters/kitchen/freezer) -"bPg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/padded, -/obj/item/bedsheet/medical, -/obj/random/action_figure, -/obj/random/plushie, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"bPh" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bPi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/padded, -/obj/item/bedsheet/medical, -/obj/effect/decal/cleanable/dirt, -/obj/random/loot, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"bPj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bPk" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "civilian_eva_inner"; - locked = 1; - name = "Engineering External Access"; - req_access = list(13); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bPl" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bPm" = ( -/obj/structure/computerframe, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"bPn" = ( -/obj/structure/table/standard, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/stack/tile/floor, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bPq" = ( -/obj/structure/closet/crate, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bPr" = ( -/obj/item/wrench, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bPs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bPt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bPu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/cable_coil, -/obj/random/junk, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"bPv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/alarm/west, -/obj/structure/bookcase/libraryspawn/fiction, -/turf/simulated/floor/carpet, -/area/library) -"bPw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/library) -"bPx" = ( -/obj/structure/table/wood, -/obj/item/storage/pill_bottle/dice/gaming, -/obj/item/storage/pill_bottle/dice, -/turf/simulated/floor/carpet, -/area/library) -"bPz" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bPA" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/bed/stool/padded/red, -/turf/simulated/floor/tiled/white, -/area/hallway/primary/aft) -"bPB" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/turf/simulated/floor/tiled/white, -/area/hallway/primary/aft) -"bPD" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bPF" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/firealarm/east, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bPG" = ( -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = -6 - }, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/crew_quarters/kitchen/freezer) -"bPH" = ( -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bPI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bPJ" = ( -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "civilian_eva_airlock"; - pixel_x = 25; - req_access = list(13); - tag_airpump = "civilian_eva_pump"; - tag_chamber_sensor = "civilian_eva_sensor"; - tag_exterior_door = "civilian_eva_outer"; - tag_interior_door = "civilian_eva_inner" - }, -/obj/machinery/airlock_sensor{ - id_tag = "civilian_eva_sensor"; - pixel_x = 25; - pixel_y = 12 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1379; - id_tag = "civilian_eva_pump" - }, -/obj/effect/decal/warning_stripes, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Aft Maint EVA"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bPK" = ( -/obj/item/stack/tile/floor, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bPL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"bPN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bPO" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/carpet, -/area/library) -"bPQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Library - West"; - dir = 4; - network = list("Service") - }, -/obj/structure/bookcase/libraryspawn/fiction, -/turf/simulated/floor/carpet, -/area/library) -"bPS" = ( -/obj/structure/bookcase/libraryspawn/religion, -/turf/simulated/floor/carpet, -/area/library) -"bPT" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/library) -"bPY" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/stone/marble, -/obj/machinery/door/window/westleft{ - name = "Display Window"; - req_access = list(28) - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "kitchenshutters01"; - name = "Kitchen Shutters" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bQa" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/appliance/cooker/oven, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bQb" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/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/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bQd" = ( -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/freezer{ - name = "Kitchen Freezer"; - req_access = list(28); - 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/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/crew_quarters/kitchen/freezer) -"bQe" = ( -/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/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/crew_quarters/kitchen/freezer) -"bQf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bQg" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "civilian_eva_outer"; - locked = 1; - name = "Engineering External Access"; - req_access = list(13); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bQh" = ( -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"bQi" = ( -/obj/random/junk, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"bQj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/loot, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"bQm" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/obj/machinery/alarm/west, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet, -/area/library) -"bQn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"bQo" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/library) -"bQp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/library) -"bQq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/library) -"bQr" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/library) -"bQs" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bQw" = ( -/obj/machinery/smartfridge/foodheater, -/obj/machinery/door/firedoor{ - dir = 8 - }, -/obj/structure/table/stone/marble, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "kitchenshutters03"; - name = "SmartHeater Shutter" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bQy" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/closet/secure_closet/refrigerator/standard, -/obj/item/storage/box/fancy/egg_box, -/obj/item/storage/box/fancy/egg_box, -/obj/item/reagent_containers/food/drinks/carton/soymilk, -/obj/item/reagent_containers/food/drinks/carton/soymilk, -/obj/item/reagent_containers/food/drinks/carton/milk, -/obj/item/reagent_containers/food/drinks/carton/milk, -/obj/structure/extinguisher_cabinet/east{ - pixel_y = -1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bQA" = ( -/obj/machinery/power/apc/west, -/obj/structure/cable/green, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/door/window/southleft, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/crew_quarters/kitchen/freezer) -"bQC" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/recharger, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"bQD" = ( -/obj/structure/table/reinforced/steel, -/obj/item/stack/tile/floor, -/obj/random/toolbox, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"bQE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bQF" = ( -/obj/structure/table/reinforced/steel, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bQG" = ( -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bQH" = ( -/obj/machinery/alarm/east, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"bQI" = ( -/obj/random/pottedplant, -/obj/machinery/firealarm/south, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/carpet, -/area/library) -"bQJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/library) -"bQK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"bQL" = ( -/obj/machinery/door/airlock{ - name = "Reading Room"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/wood, -/area/library) -"bQM" = ( -/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/carpet, -/area/library) -"bQN" = ( -/obj/structure/bookcase/libraryspawn/nonfiction, -/obj/machinery/firealarm/south, -/turf/simulated/floor/carpet, -/area/library) -"bQO" = ( -/obj/structure/bookcase/libraryspawn/nonfiction, -/turf/simulated/floor/carpet, -/area/library) -"bQP" = ( -/obj/structure/bookcase/libraryspawn/reference, -/turf/simulated/floor/carpet, -/area/library) -"bQQ" = ( -/obj/machinery/newscaster/south, -/turf/simulated/floor/wood, -/area/library) -"bQR" = ( -/obj/machinery/photocopier, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/library) -"bQT" = ( -/obj/machinery/lapvend, -/obj/machinery/alarm/south, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Library - East"; - dir = 1; - network = list("Service") - }, -/turf/simulated/floor/wood, -/area/library) -"bQU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bQV" = ( -/obj/structure/bed/stool/padded/red, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled/white, -/area/hallway/primary/aft) -"bQW" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/stone/marble, -/obj/machinery/door/blast/shutters{ - id = "kitchenshutters01"; - name = "Kitchen Shutters" - }, -/obj/machinery/door/firedoor{ - dir = 1 - }, -/obj/machinery/ringer_button{ - id = "kitchen_ringer"; - pixel_x = 10; - pixel_y = -10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bQZ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/stone/marble, -/obj/machinery/door/firedoor{ - dir = 8 - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "kitchenshutters01"; - name = "Kitchen Shutters" - }, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/pen{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bRe" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Kitchen - East"; - dir = 8; - network = list("Service"); - pixel_y = -14 - }, -/obj/machinery/ringer/east{ - department = "Kitchen"; - id = "kitchen_ringer"; - req_access = list(28) - }, -/obj/structure/table/stone/marble, -/obj/item/storage/box/gloves{ - pixel_x = 4; - pixel_y = 13 - }, -/obj/item/device/destTagger, -/obj/item/stack/packageWrap, -/obj/item/device/hand_labeler, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bRg" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'STAND CLEAR'."; - name = "\improper CAUTION: STAND CLEAR"; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/crew_quarters/kitchen/freezer) -"bRi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"bRm" = ( -/obj/item/stack/tile/floor, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"bRn" = ( -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bRo" = ( -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"bRp" = ( -/obj/item/stack/tile/floor, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bRt" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(12,37,66); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/library) -"bRv" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "kitchenshutters01"; - name = "Kitchen Shutters" - }, -/obj/structure/table/stone/marble, -/obj/machinery/door/firedoor{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bRw" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/stone/marble, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/shaker/peppermill{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/condiment/shaker/salt{ - pixel_x = 8; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/condiment/shaker/spacespice{ - pixel_x = 3; - pixel_y = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bRA" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bRB" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bRC" = ( -/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/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bRE" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"bRH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"bRI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"bRJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/north, -/turf/simulated/floor/plating, -/area/maintenance/library) -"bRK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"bRL" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"bRM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(12,66); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"bRP" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bRQ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bRU" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/sink/kitchen{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bRV" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bRW" = ( -/obj/structure/synthesized_instrument/synthesizer/piano, -/obj/structure/table/wood{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/maintenance/bar) -"bRX" = ( -/obj/structure/bed/stool/padded/red, -/obj/effect/decal/cleanable/dirt, -/obj/random/loot, -/turf/simulated/floor/carpet, -/area/maintenance/bar) -"bRY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/maintenance/bar) -"bSa" = ( -/obj/structure/curtain/black, -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"bSb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/chair/wood{ - dir = 8 - }, -/obj/random/loot, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"bSc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"bSd" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bSe" = ( -/obj/structure/target_stake, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bSf" = ( -/obj/structure/target_stake, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bSh" = ( -/turf/simulated/wall, -/area/chapel/office) -"bSi" = ( -/turf/simulated/wall, -/area/chapel/main) -"bSj" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bSk" = ( -/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/aft) -"bSm" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "kitchenshutters01"; - name = "Kitchen Shutters" - }, -/obj/structure/table/stone/marble, -/obj/machinery/door/firedoor{ - dir = 8 - }, -/obj/item/glass_jar, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bSn" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/button/remote/blast_door{ - id = "kitchenshutters01"; - name = "Kitchen Shutters Control"; - pixel_x = -8; - pixel_y = -26; - req_access = list(28) - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/machinery/button/remote/blast_door{ - id = "kitchenshutters03"; - name = "SmartHeater Shutter Control"; - pixel_x = 8; - pixel_y = -26; - req_access = list(28) - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bSo" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/structure/table/stone/marble, -/obj/item/device/radio/intercom/south, -/obj/machinery/chemical_dispenser/bar_soft/full{ - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bSp" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Kitchen - West"; - dir = 1; - network = list("Service") - }, -/obj/structure/table/stone/marble, -/obj/machinery/requests_console/south{ - department = "Kitchen"; - departmentType = 1; - name = "Kitchen Requests Console" - }, -/obj/item/reagent_containers/glass/rag{ - pixel_y = 4 - }, -/obj/item/holomenu, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bSq" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/stone/marble, -/obj/item/clothing/head/cakehat{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bSr" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - name = "adjusted light fixture"; - pixel_x = 16; - icon_state = "tube_empty" - }, -/obj/machinery/firealarm/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bSt" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/button/remote/blast_door{ - id = "kitchenshutters02"; - name = "Kitchen Shutters Control"; - pixel_y = -25; - req_access = list(28) - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bSw" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/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/white, -/area/crew_quarters/kitchen) -"bSx" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -8; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bSy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bSC" = ( -/obj/structure/morgue/crematorium{ - _wifi_id = "chapel_crema" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/office) -"bSD" = ( -/obj/machinery/button/switch/crematorium{ - _wifi_id = "chapel_crema"; - pixel_x = -32; - pixel_y = 25 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/office) -"bSE" = ( -/obj/structure/morgue{ - dir = 2 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/office) -"bSF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/button/switch/windowtint{ - id = "chapel_outer"; - pixel_x = -22; - pixel_y = 3 - }, -/turf/simulated/floor/carpet, -/area/chapel/main) -"bSG" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/chapel/main) -"bSH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/chapel/main) -"bSI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/chapel/main) -"bSJ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/chapel/main) -"bSK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/firealarm/north, -/turf/simulated/floor/wood, -/area/chapel/main) -"bSM" = ( -/turf/simulated/wall, -/area/crew_quarters/bar) -"bSN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/kitchen) -"bSO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/kitchen) -"bSP" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "barshutters01"; - name = "Bar Shutters" - }, -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/rag, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bSQ" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "barshutters01"; - name = "Bar Shutters" - }, -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/item/material/ashtray/bronze, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bSR" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "barshutters01"; - name = "Bar Shutters" - }, -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bST" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "barshutters01"; - name = "Bar Shutters" - }, -/obj/machinery/door/firedoor, -/obj/machinery/vending/cigarette, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bSU" = ( -/turf/simulated/wall, -/area/crew_quarters/locker/locker_toilet) -"bSV" = ( -/obj/structure/curtain/black{ - icon_state = "open"; - opacity = 0 - }, -/obj/machinery/door/window/northleft, -/turf/simulated/floor/tiled/ramp/bottom, -/area/maintenance/bar) -"bSW" = ( -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "theater" - }, -/obj/structure/window/reinforced/polarized{ - id = "theater" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/maintenance/bar) -"bSZ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bTa" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/chapel/office) -"bTb" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/chapel/office) -"bTc" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Chapel - Office"; - dir = 8; - network = list("Service") - }, -/turf/simulated/floor/wood, -/area/chapel/office) -"bTd" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "chapel" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "chapel" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "chapel" - }, -/turf/simulated/floor/plating, -/area/chapel/office) -"bTe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/chapel/main) -"bTg" = ( -/obj/random/pottedplant, -/turf/simulated/floor/carpet, -/area/chapel/main) -"bTh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/chapel/main) -"bTi" = ( -/obj/structure/bed/stool/chair/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/chapel/main) -"bTj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/chapel/main) -"bTk" = ( -/obj/machinery/door/firedoor, -/obj/effect/map_effect/window_spawner/reinforced/polarized{ - id = "chapel_outer" - }, -/turf/simulated/floor/plating, -/area/chapel/main) -"bTl" = ( -/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 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bTm" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bTn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/closet/secure_closet/cabinet/bar, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bTo" = ( -/obj/machinery/alarm/north, -/obj/structure/reagent_dispensers/keg/beerkeg, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bTp" = ( -/obj/structure/closet/gmcloset, -/obj/item/flame/lighter/zippo, -/obj/machinery/requests_console/north{ - department = "Bar"; - departmentType = 1; - name = "Bar Requests Console" - }, -/obj/item/storage/box/fancy/candle_box, -/obj/item/storage/box/fancy/candle_box, -/obj/item/reagent_containers/toothpaste, -/obj/item/reagent_containers/toothpaste, -/obj/item/device/quikpay, -/obj/item/storage/box/fancy/matches, -/obj/item/storage/box/fancy/candle_box, -/obj/item/storage/box/fancy/candle_box, -/obj/item/storage/box/fancy/candle_box, -/obj/item/storage/box/fancy/cigarettes/cigar, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bTq" = ( -/obj/structure/table/wood, -/obj/machinery/chemical_dispenser/coffeemaster/full{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bTt" = ( -/obj/machinery/vending/boozeomat{ - density = 0; - pixel_y = 32 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bTu" = ( -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bTv" = ( -/obj/structure/table/wood, -/obj/machinery/button/remote/blast_door{ - id = "kitchenshutters02"; - name = "Kitchen Shutters Control"; - pixel_x = 6; - req_access = list(25) - }, -/obj/machinery/button/remote/blast_door{ - id = "barshutters01"; - name = "Bar Shutters Control"; - pixel_x = -6; - req_access = list(25) - }, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Bar - Counter"; - network = list("Service") - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/item/toy/figure/bartender, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bTw" = ( -/obj/structure/table/wood, -/obj/machinery/reagentgrinder{ - pixel_y = 6 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bTx" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bTy" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/bar) -"bTz" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/grey/diagonal, -/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/white, -/area/crew_quarters/bar) -"bTA" = ( -/obj/machinery/firealarm/east, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/bar) -"bTB" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bTC" = ( -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bTD" = ( -/obj/machinery/door/airlock/freezer{ - id_tag = "main_unit_1"; - name = "Unit 1"; - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bTE" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/button/remote/airlock{ - id = "main_unit_1"; - name = "Door Bolt Control"; - pixel_x = 5; - pixel_y = 25; - specialfunctions = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bTG" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bTL" = ( -/obj/machinery/button/switch/windowtint{ - id = "chapel"; - pixel_x = -6; - pixel_y = 28 - }, -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control-switch for the office door."; - id = "chapdoor"; - name = "Office Door Control"; - pixel_x = 6; - pixel_y = 28; - req_access = list(22) - }, -/obj/item/pen, -/obj/machinery/newscaster/west, -/turf/simulated/floor/carpet, -/area/chapel/office) -"bTM" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp{ - pixel_y = 10 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/simulated/floor/carpet, -/area/chapel/office) -"bTN" = ( -/turf/simulated/floor/wood, -/area/chapel/office) -"bTO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/chapel/office) -"bTP" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "chapel" - }, -/obj/structure/window/reinforced/polarized{ - id = "chapel" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "chapel" - }, -/turf/simulated/floor/plating, -/area/chapel/office) -"bTQ" = ( -/turf/simulated/floor/carpet, -/area/chapel/main) -"bTR" = ( -/obj/structure/table/wood, -/obj/item/flame/candle, -/turf/simulated/floor/carpet, -/area/chapel/main) -"bTS" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/chapel/main) -"bTT" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/power/apc/east, -/turf/simulated/floor/wood, -/area/chapel/main) -"bTU" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/door/firedoor{ - enable_smart_generation = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bTV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bTW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/mob/living/carbon/human/monkey/punpun, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bTX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Bartender" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bTY" = ( -/obj/machinery/smartfridge/drinks{ - req_access = list(25,28) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bTZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bUa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bUb" = ( -/obj/effect/landmark/start{ - name = "Bartender" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bUc" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bUd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bUe" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - 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/lino, -/area/crew_quarters/bar) -"bUf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Unisex Restrooms"; - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bUg" = ( -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 1; - name = "Bar"; - sortType = "Bar" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/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/tiled/white, -/area/crew_quarters/bar) -"bUh" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/bar) -"bUi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - dir = 4; - pixel_x = -32 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bUj" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bUk" = ( -/obj/structure/bed/stool/padded/red, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bUo" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Chaplain" - }, -/obj/item/device/radio/intercom/west, -/turf/simulated/floor/carpet, -/area/chapel/office) -"bUp" = ( -/obj/structure/table/wood, -/obj/item/pen, -/obj/item/reagent_containers/food/drinks/bottle/holywater, -/obj/item/reagent_containers/spray/aspergillum, -/obj/item/nullrod/obsidianshards, -/turf/simulated/floor/carpet, -/area/chapel/office) -"bUq" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/chapel/office) -"bUr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/chapel/office) -"bUs" = ( -/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" - }, -/turf/simulated/floor/wood, -/area/chapel/office) -"bUt" = ( -/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{ - id_tag = "chapdoor"; - name = "Chaplain's Office"; - req_access = list(22); - dir = 4 - }, -/turf/simulated/floor/wood, -/area/chapel/office) -"bUu" = ( -/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 = 9 - }, -/turf/simulated/floor/carpet, -/area/chapel/main) -"bUw" = ( -/obj/structure/table/wood, -/obj/item/storage/bible, -/turf/simulated/floor/carpet, -/area/chapel/main) -"bUx" = ( -/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/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/chapel/main) -"bUy" = ( -/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{ - name = "Chapel"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/chapel/main) -"bUz" = ( -/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/aft) -"bUA" = ( -/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" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bUB" = ( -/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 = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bUC" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/item/stack/packageWrap, -/obj/item/book/manual/barman_recipes, -/obj/machinery/newscaster/west, -/obj/item/holomenu, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bUD" = ( -/obj/structure/table/wood, -/obj/item/paper{ - info = "This permit signifies that the Bartender is permitted to posess this firearm in the bar, and ONLY the bar. Failure to adhere to this permit will result in confiscation of the weapon and possibly arrest."; - name = "Shotgun permit" - }, -/obj/item/storage/box/beanbags, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/wrench, -/obj/item/reagent_containers/glass/beaker/teapot, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bUE" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bUF" = ( -/obj/structure/weapon_rack/double{ - pixel_x = -32 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bUG" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bUH" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bUI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/bar) -"bUJ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/bar) -"bUK" = ( -/obj/machinery/door/airlock/freezer{ - id_tag = "main_unit_2"; - name = "Unit 2"; - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bUL" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/button/remote/airlock{ - id = "main_unit_2"; - name = "Door Bolt Control"; - pixel_x = 5; - pixel_y = 25; - specialfunctions = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bUO" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/requests_console/west{ - department = "Chapel"; - departmentType = 1 - }, -/turf/simulated/floor/carpet, -/area/chapel/office) -"bUP" = ( -/obj/item/modular_computer/console/preset/civilian, -/turf/simulated/floor/carpet, -/area/chapel/office) -"bUQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/chapel/office) -"bUR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/chapel/office) -"bUS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet, -/area/chapel/main) -"bUU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bUW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Bar Backroom"; - req_access = list(25); - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bUX" = ( -/obj/machinery/door/airlock/glass{ - name = "Diner"; - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/crew_quarters/bar) -"bUY" = ( -/obj/machinery/door/airlock/glass{ - name = "Diner"; - 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 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/bar) -"bUZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(12,25); - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/bar) -"bVb" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/computer/arcade/orion_trail, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bVc" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bVd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(12,25); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/bar) -"bVe" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/computer/arcade/battle, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bVf" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/orderterminal{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bVi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - 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/plating, -/area/maintenance/research_port) -"bVj" = ( -/obj/structure/bed/stool/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"bVl" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chaplain Office's Maintenance"; - req_one_access = list(22); - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/chapel/office) -"bVm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/chapel/office) -"bVn" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/chapel/office) -"bVo" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/chapel/office) -"bVp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/chapel/office) -"bVs" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/chapel/main) -"bVt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/chapel/main) -"bVu" = ( -/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/aft) -"bVv" = ( -/obj/item/device/radio/intercom/east, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bVw" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Bar - Northeast"; - network = list("Service") - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bVx" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Bar - West"; - dir = 4; - network = list("Service") - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bVz" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/bed/stool/bar/padded/red, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bVA" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bVC" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/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/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/bar) -"bVD" = ( -/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/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/bar) -"bVE" = ( -/obj/machinery/light/spot{ - dir = 4; - must_start_working = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bVG" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bVH" = ( -/obj/machinery/door/airlock/freezer{ - id_tag = "main_unit_3"; - name = "Unit 3"; - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bVI" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/button/remote/airlock{ - id = "main_unit_3"; - name = "Door Bolt Control"; - pixel_x = 5; - pixel_y = 25; - specialfunctions = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bVJ" = ( -/turf/simulated/floor/tiled/ramp/bottom, -/area/maintenance/bar) -"bVK" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/obj/item/storage/box/fancy/crayons, -/obj/item/storage/box/fancy/candle_box, -/obj/item/storage/box/fancy/candle_box, -/turf/simulated/floor/wood, -/area/chapel/office) -"bVM" = ( -/obj/machinery/firealarm/south, -/turf/simulated/floor/wood, -/area/chapel/office) -"bVN" = ( -/obj/random/pottedplant, -/obj/machinery/power/apc/east, -/obj/structure/cable/green, -/turf/simulated/floor/wood, -/area/chapel/office) -"bVO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/carpet, -/area/chapel/main) -"bVP" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/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/ramp/bottom{ - dir = 4 - }, -/area/chapel/main) -"bVQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/chapel/main) -"bVR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/chapel/main) -"bVS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Chapel - Main"; - dir = 1; - network = list("Service") - }, -/turf/simulated/floor/wood, -/area/chapel/main) -"bVT" = ( -/obj/machinery/light, -/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, -/area/chapel/main) -"bVU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/chapel/main) -"bVW" = ( -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/crew_quarters/bar) -"bVX" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bVY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bVZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/apc/west, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/bar) -"bWa" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bWb" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bWf" = ( -/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/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"bWg" = ( -/turf/simulated/wall, -/area/quartermaster/lobby) -"bWh" = ( -/obj/machinery/camera/network/civilian_main{ - c_tag = "Aft Corridor - Camera 1"; - dir = 4 - }, -/obj/machinery/newscaster/west, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bWi" = ( -/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" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bWk" = ( -/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/ramp/bottom{ - dir = 4 - }, -/area/crew_quarters/bar) -"bWl" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - 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, -/area/crew_quarters/bar) -"bWm" = ( -/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, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bWo" = ( -/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, -/area/crew_quarters/bar) -"bWp" = ( -/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/wood, -/area/crew_quarters/bar) -"bWq" = ( -/obj/effect/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/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bWr" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/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/white, -/area/crew_quarters/bar) -"bWs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/bar) -"bWt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/bar) -"bWu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/firealarm/south, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/bar) -"bWv" = ( -/obj/machinery/camera/network/civilian_main{ - c_tag = "Bar -Theatre"; - dir = 8; - network = list("Service") - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bWw" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/alarm/north, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bWy" = ( -/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/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"bWz" = ( -/turf/simulated/floor/tiled/dark, -/area/turbolift/cargo_station) -"bWA" = ( -/obj/machinery/status_display/supply_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/turbolift/cargo_station) -"bWB" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/status_display/supply_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bWC" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/machinery/papershredder, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bWD" = ( -/obj/structure/extinguisher_cabinet/west{ - pixel_y = 30 - }, -/obj/machinery/autolathe, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bWE" = ( -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen/red{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/machinery/atm{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bWF" = ( -/obj/item/modular_computer/console/preset/supply, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/ringer/east{ - department = "Cargo"; - id = "cargo_ringer"; - pixel_y = 28; - req_access = list(31) - }, -/obj/machinery/button/remote/blast_door{ - id = "cargo_cockblock"; - name = "Cargo Shutters Control"; - pixel_x = -6; - pixel_y = 24; - req_access = list(31) - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bWG" = ( -/obj/item/modular_computer/console/preset/supply, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/status_display/supply_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bWK" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/bed/stool/padded/red, -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/bar) -"bWL" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bWM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bWN" = ( -/turf/simulated/floor/tiled/ramp/bottom, -/area/crew_quarters/bar) -"bWP" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/machinery/computer/guestpass{ - pixel_x = -32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bWQ" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bWR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bWS" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bWT" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bWU" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bWV" = ( -/obj/structure/sign/double/barsign, -/turf/simulated/wall, -/area/crew_quarters/bar) -"bWW" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/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" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bWY" = ( -/obj/effect/large_stock_marker, -/turf/simulated/floor/tiled/dark, -/area/turbolift/cargo_station) -"bWZ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/turbolift/cargo_station) -"bXa" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bXb" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bXc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bXd" = ( -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bXe" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bXf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - name = "Cargo Desk"; - req_access = list(50) - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/ringer_button{ - id = "cargo_ringer"; - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "cargo_cockblock"; - name = "Cargo" - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bXg" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bXh" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atm{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bXi" = ( -/turf/simulated/floor/tiled/ramp/bottom, -/area/hallway/primary/aft) -"bXj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/primary/aft) -"bXk" = ( -/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 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bXl" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/bar) -"bXm" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/bar) -"bXn" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bXo" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bXp" = ( -/obj/machinery/computer/slot_machine, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/bar) -"bXq" = ( -/obj/structure/table/rack, -/obj/random/arcade, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bXr" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bXs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bXt" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bXu" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bXv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "cargo_cockblock"; - name = "Cargo" - }, -/turf/simulated/floor/plating, -/area/quartermaster/lobby) -"bXw" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bXx" = ( -/obj/effect/floor_decal/industrial/loading/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bXy" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bXz" = ( -/obj/effect/floor_decal/corner/brown, -/obj/machinery/light{ - dir = 4; - name = "adjusted light fixture"; - pixel_y = 16; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bXA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/primary/aft) -"bXB" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bXC" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/obj/random/pottedplant{ - pixel_x = 16; - pixel_y = 16 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/bar) -"bXD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/bar) -"bXG" = ( -/obj/structure/curtain/black, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bXI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/maintenance/substation/supply) -"bXJ" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d1 = 16; - d2 = 0; - icon_state = "12-0" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/supply) -"bXK" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bXL" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bXM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "cargo_cockblock"; - name = "Cargo" - }, -/turf/simulated/floor/plating, -/area/quartermaster/lobby) -"bXN" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bXO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bXP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bXQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/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/aft) -"bXR" = ( -/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/sign/flag/scc{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bXS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bXT" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bXU" = ( -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/crew_quarters/bar) -"bXV" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/computer/slot_machine, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/bar) -"bXX" = ( -/turf/simulated/wall, -/area/maintenance/substation/civilian_west) -"bXY" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled/dark, -/area/turbolift/cargo_station) -"bXZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bYa" = ( -/obj/structure/bed/stool/chair/office/dark, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bYb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bYc" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bYd" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bYe" = ( -/obj/machinery/door/firedoor/multi_tile{ - dir = 1 - }, -/obj/structure/sign/flag/scc{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bYf" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bYg" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=CC2"; - location = "Civ" - }, -/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/aft) -"bYi" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bYm" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/random/loot, -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/maintenance/substation/supply) -"bYn" = ( -/obj/machinery/power/terminal, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable, -/turf/simulated/floor/plating, -/area/maintenance/substation/supply) -"bYo" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Civilian Main Substation Bypass" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian_west) -"bYp" = ( -/obj/turbolift_map_holder/aurora/cargo, -/turf/simulated/floor/tiled/dark, -/area/turbolift/cargo_station) -"bYq" = ( -/obj/item/folder/yellow, -/obj/item/device/eftpos{ - eftpos_name = "Cargo Bay EFTPOS scanner" - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/camera/network/supply{ - c_tag = "Cargo - Main Desk"; - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/item/device/multitool, -/obj/machinery/computer/guestpass{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bYr" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/structure/table/standard, -/obj/item/paper_scanner, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen/red{ - pixel_x = 2; - pixel_y = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bYs" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bYt" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bYu" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bYv" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bYw" = ( -/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/aft) -"bYx" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bYy" = ( -/obj/structure/table/wood, -/obj/machinery/light, -/turf/simulated/floor/carpet, -/area/crew_quarters/bar) -"bYA" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bYB" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bYD" = ( -/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/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"bYE" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Supply Main" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/supply) -"bYF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/supply) -"bYG" = ( -/obj/item/storage/belt/utility, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/machinery/requests_console/west{ - department = "Cargo Bay"; - departmentType = 2; - name = "Cargo Requests Console" - }, -/obj/item/tape_roll, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bYH" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bYI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "cargo_cockblock"; - name = "Cargo" - }, -/turf/simulated/floor/plating, -/area/quartermaster/lobby) -"bYK" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bYL" = ( -/obj/machinery/firealarm/east, -/obj/machinery/door/firedoor{ - enable_smart_generation = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bYM" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/bar) -"bYN" = ( -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/bar) -"bYO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Civilian - Supply Substation"; - dir = 4 - }, -/obj/machinery/power/apc/west, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/maintenance/substation/supply) -"bYQ" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/quartermaster/storage) -"bYR" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "cargo_toup" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/quartermaster/storage) -"bYS" = ( -/obj/machinery/conveyor{ - dir = 9; - id = "cargo_toup"; - reversed = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/quartermaster/storage) -"bYT" = ( -/obj/machinery/newscaster/west{ - pixel_y = 1 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/effect/floor_decal/corner/brown/full, -/obj/item/storage/firstaid/regular, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bYU" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bYV" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/obj/structure/filingcabinet/filingcabinet, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bYW" = ( -/obj/machinery/door/firedoor/multi_tile, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bYX" = ( -/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/aft) -"bYY" = ( -/obj/structure/table/wood, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Bar - Booths"; - dir = 1; - network = list("Service") - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/bar) -"bYZ" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bZb" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bZc" = ( -/obj/structure/bed/stool/padded/red, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/bar) -"bZf" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall, -/area/maintenance/substation/supply) -"bZg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Supply (Main Level) Substation"; - req_access = list(31,10); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/supply) -"bZh" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall, -/area/quartermaster/storage) -"bZi" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "cargo_toup" - }, -/obj/structure/plasticflaps, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/quartermaster/storage) -"bZj" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/west, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bZk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bZl" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet/west{ - pixel_y = 30 - }, -/obj/machinery/light_switch{ - pixel_x = 12; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bZm" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/quartermaster/lobby) -"bZn" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bZp" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/zora, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bZq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bZr" = ( -/obj/machinery/vending/cola, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bZs" = ( -/obj/structure/bed/stool/chair/wood, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bZu" = ( -/obj/structure/bed/stool/chair/sofa/right/red{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/bar) -"bZw" = ( -/obj/structure/extinguisher_cabinet/east, -/obj/machinery/firealarm/south, -/obj/machinery/computer/slot_machine, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/bar) -"bZx" = ( -/turf/simulated/wall, -/area/quartermaster/storage) -"bZy" = ( -/obj/structure/closet/crate, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bZz" = ( -/obj/structure/closet/crate/medical, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bZA" = ( -/obj/machinery/ringer/north{ - department = "Cargo"; - id = "cargo_ringer"; - req_access = list(31) - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/large_stock_marker, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bZB" = ( -/obj/machinery/camera/network/supply{ - c_tag = "Warehouse - Lower North" - }, -/obj/structure/disposalpipe/tagger{ - dir = 2; - name = "Sorting Office"; - no_override = 1; - sort_tag = "Sorting Office" - }, -/obj/machinery/status_display/supply_display{ - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/quartermaster/storage) -"bZC" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/large_stock_marker, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bZD" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/large_stock_marker, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bZE" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/machinery/firealarm/west, -/obj/structure/table/standard, -/obj/item/stack/packageWrap, -/obj/item/device/destTagger, -/obj/item/pen, -/obj/item/device/hand_labeler, -/obj/item/stack/wrapping_paper, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bZF" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bZG" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/obj/machinery/conveyor_switch/oneway{ - id = "cargo_toup" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bZH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/alarm/west, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bZI" = ( -/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/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bZJ" = ( -/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, -/area/quartermaster/lobby) -"bZK" = ( -/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/lobby) -"bZL" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/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/lobby) -"bZM" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo Bay"; - req_one_access = list(31,48,26,67); - 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/firedoor, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bZN" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/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, -/area/quartermaster/lobby) -"bZO" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bZP" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 4; - name = "broken light fixture"; - status = 2 - }, -/obj/effect/large_stock_marker, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"bZQ" = ( -/obj/structure/noticeboard{ - dir = 4; - pixel_x = -32 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bZR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bZS" = ( -/obj/structure/curtain/black, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 1 - }, -/area/crew_quarters/bar) -"bZV" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/west, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bZW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bZX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bZY" = ( -/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/segment, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bZZ" = ( -/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/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"caa" = ( -/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/window/reinforced, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cab" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "qm_warehouse"; - name = "Warehouse Shutters" - }, -/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, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cac" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"cad" = ( -/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 = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"cae" = ( -/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/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"caf" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Equipment Storage"; - req_access = list(31); - dir = 4 - }, -/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" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"cag" = ( -/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 = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"cah" = ( -/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" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"cai" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"caj" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"cak" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"cal" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/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/item/device/radio/intercom/south, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"cam" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/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, -/area/quartermaster/lobby) -"can" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/large_stock_marker, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"cao" = ( -/obj/structure/window/reinforced, -/obj/structure/table/standard, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/machinery/alarm/west, -/obj/item/stack/wrapping_paper, -/obj/item/stack/wrapping_paper, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"cap" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/tagger{ - dir = 2; - name = "Sorting Office"; - no_override = 1; - sort_tag = "Sorting Office" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"caq" = ( -/obj/structure/extinguisher_cabinet/east, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"cas" = ( -/obj/structure/closet/crate/internals, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cat" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cau" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cav" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"caw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cax" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/tiled/ramp, -/area/quartermaster/storage) -"cay" = ( -/obj/machinery/button/remote/blast_door{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_x = -24; - req_access = list(31) - }, -/obj/effect/floor_decal/corner/brown/full, -/obj/machinery/alarm/south, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/large_stock_marker, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"caz" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/machinery/camera/network/supply{ - c_tag = "Cargo - Warehouse Entrance"; - dir = 1 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"caA" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/large_stock_marker, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"caB" = ( -/turf/simulated/wall, -/area/quartermaster/break_room) -"caC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/glass_mining{ - name = "Break Room"; - req_one_access = list(31,48,26,67); - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/map_effect/door_helper/unres, -/turf/simulated/floor/tiled, -/area/quartermaster/break_room) -"caD" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/quartermaster/break_room) -"caE" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/quartermaster/break_room) -"caF" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_mining{ - name = "Mail Sorting"; - req_access = list(50); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/quartermaster/mail_room) -"caG" = ( -/turf/simulated/wall, -/area/quartermaster/mail_room) -"caH" = ( -/obj/machinery/disposal{ - name = "mailing disposal unit" - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/eastleft{ - name = "To: Mail sorting office" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"caI" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"caJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"caK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(12,26); - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/bar) -"caL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"caM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"caN" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/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" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"caO" = ( -/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{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"caP" = ( -/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{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"caQ" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - name = "Sorting Office"; - sortType = "Sorting Office" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"caR" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"caS" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/maintenance/bar) -"caT" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"caU" = ( -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"caV" = ( -/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" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"caW" = ( -/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, -/area/quartermaster/storage) -"caY" = ( -/turf/simulated/floor/tiled/ramp, -/area/quartermaster/storage) -"caZ" = ( -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/break_room) -"cba" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown{ - 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, -/area/quartermaster/break_room) -"cbb" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/noticeboard{ - pixel_y = 27 - }, -/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, -/area/quartermaster/break_room) -"cbc" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/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, -/area/quartermaster/break_room) -"cbd" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/break_room) -"cbe" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/status_display/supply_display{ - pixel_x = -32 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/mail_room) -"cbf" = ( -/obj/machinery/power/apc/north, -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light_switch{ - pixel_x = 12; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/mail_room) -"cbg" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"cbh" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/disposal) -"cbi" = ( -/obj/structure/sign/securearea{ - name = "\improper CAUTION: TRASH COMPACTOR" - }, -/turf/simulated/wall/r_wall, -/area/maintenance/disposal) -"cbj" = ( -/obj/machinery/door/airlock/hatch{ - name = "Disposals Maintenance"; - req_one_access = list(12,26,50); - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/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/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/disposal) -"cbk" = ( -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/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/bar) -"cbl" = ( -/obj/structure/disposalpipe/sortjunction/untagged, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"cbm" = ( -/obj/structure/ladder/up, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"cbn" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/plastic, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cbo" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cbq" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cbr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"cbs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"cbt" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Maintenance"; - req_one_access = list(31,48); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"cbu" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/break_room) -"cbv" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/break_room) -"cbw" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled, -/area/quartermaster/break_room) -"cbx" = ( -/obj/structure/bed/stool/chair, -/obj/effect/landmark/start{ - name = "Cargo Technician" - }, -/turf/simulated/floor/carpet, -/area/quartermaster/break_room) -"cby" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/quartermaster/break_room) -"cbz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/mail_room) -"cbA" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/mail_room) -"cbB" = ( -/obj/structure/table/standard, -/obj/item/device/hand_labeler, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm/north, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/mail_room) -"cbC" = ( -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/mail_room) -"cbD" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/deliveryChute, -/turf/simulated/floor/plating, -/area/quartermaster/mail_room) -"cbE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall, -/area/quartermaster/mail_room) -"cbF" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"cbG" = ( -/obj/structure/ladder, -/turf/simulated/open, -/area/maintenance/disposal) -"cbH" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/alarm/north, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"cbI" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"cbJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/north, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"cbK" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"cbL" = ( -/obj/structure/disposalpipe/segment, -/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/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"cbM" = ( -/obj/structure/disposalpipe/segment, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"cbQ" = ( -/turf/simulated/wall, -/area/maintenance/cargo) -"cbU" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cbV" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cbW" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"cbX" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled, -/area/quartermaster/break_room) -"cbY" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/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/scrubbers, -/turf/simulated/floor/tiled, -/area/quartermaster/break_room) -"cbZ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"cca" = ( -/obj/structure/table/standard, -/turf/simulated/floor/carpet, -/area/quartermaster/break_room) -"ccb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/quartermaster/break_room) -"ccc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/structure/table/rack, -/turf/simulated/floor/tiled, -/area/quartermaster/mail_room) -"ccd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/mail_room) -"cce" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/mail_room) -"ccf" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/west{ - pixel_y = 30 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/mail_room) -"ccg" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "mail_chute" - }, -/obj/structure/plasticflaps, -/turf/simulated/floor/plating, -/area/quartermaster/mail_room) -"cch" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"cci" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"ccj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"cck" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"ccl" = ( -/obj/structure/disposalpipe/segment, -/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/bar) -"ccm" = ( -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"ccn" = ( -/obj/structure/disposalpipe/up{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 16; - d2 = 0; - icon_state = "12-0" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"cco" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall, -/area/maintenance/bar) -"ccp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"ccq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"ccr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/machinery/meter{ - name = "Scrubbers" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"ccs" = ( -/obj/structure/blocker, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"cct" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"ccu" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/freezer, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"ccv" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"ccw" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/standard, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"ccx" = ( -/obj/structure/weightlifter, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/effect/landmark/start{ - name = "Shaft Miner" - }, -/obj/machinery/firealarm/west, -/obj/structure/extinguisher_cabinet/west{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/break_room) -"ccy" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/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/break_room) -"ccz" = ( -/obj/structure/table/standard, -/obj/item/deck/cards, -/turf/simulated/floor/carpet, -/area/quartermaster/break_room) -"ccA" = ( -/obj/structure/table/standard, -/obj/item/trash/tray, -/turf/simulated/floor/carpet, -/area/quartermaster/break_room) -"ccB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/structure/table/rack, -/turf/simulated/floor/tiled, -/area/quartermaster/mail_room) -"ccC" = ( -/turf/simulated/floor/tiled, -/area/quartermaster/mail_room) -"ccD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/conveyor_switch/oneway{ - id = "mail_chute" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/mail_room) -"ccE" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "mail_chute" - }, -/turf/simulated/floor/plating, -/area/quartermaster/mail_room) -"ccF" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/quartermaster/mail_room) -"ccG" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"ccH" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"ccI" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"ccJ" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"ccK" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/item/device/radio/intercom/east, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"ccL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - 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/plating, -/area/maintenance/bar) -"ccM" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/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/plating, -/area/maintenance/bar) -"ccN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"ccO" = ( -/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/machinery/door/firedoor, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/maintenance/bar) -"ccP" = ( -/obj/structure/cable{ - 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 = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"ccQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"ccR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/machinery/meter{ - name = "Air supply" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"ccT" = ( -/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/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"ccU" = ( -/obj/structure/cable{ - 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/plating, -/area/maintenance/bar) -"ccV" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"ccW" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/status_display/supply_display{ - pixel_x = -32 - }, -/obj/machinery/camera/network/supply{ - c_tag = "Cargo - Break Room"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/break_room) -"ccX" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/quartermaster/break_room) -"ccY" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Shaft Miner" - }, -/turf/simulated/floor/carpet, -/area/quartermaster/break_room) -"ccZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table/standard, -/obj/item/stack/packageWrap, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/mail_room) -"cda" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/quartermaster/mail_room) -"cdb" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/mail_room) -"cdc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/quartermaster/mail_room) -"cdd" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"cde" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/landmark{ - name = "borerstart" - }, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"cdf" = ( -/turf/simulated/open, -/area/maintenance/disposal) -"cdg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"cdh" = ( -/obj/structure/disposalpipe/segment, -/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/plating, -/area/maintenance/bar) -"cdi" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"cdj" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"cdk" = ( -/obj/structure/closet, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"cdl" = ( -/obj/machinery/light/small/emergency, -/obj/structure/closet/crate, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"cdm" = ( -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"cdn" = ( -/obj/machinery/alarm/south, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cdo" = ( -/obj/machinery/camera/network/supply{ - c_tag = "Cargo - Lower Warehouse"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cdp" = ( -/obj/effect/floor_decal/corner/brown/full, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/break_room) -"cdq" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/break_room) -"cdr" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/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, -/area/quartermaster/break_room) -"cdt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/quartermaster/break_room) -"cdu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table/standard, -/obj/item/stack/packageWrap, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/mail_room) -"cdv" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/mail_room) -"cdw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/quartermaster/mail_room) -"cdx" = ( -/obj/structure/sign/drop, -/turf/simulated/wall/r_wall, -/area/maintenance/disposal) -"cdy" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1; - external_pressure_bound = 102; - external_pressure_bound_default = 102; - icon_state = "map_vent_in"; - pump_direction = 0 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"cdz" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"cdA" = ( -/obj/structure/table/rack, -/obj/random/loot, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"cdB" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Warehouse Maintenance"; - req_access = list(31); - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/quartermaster/storage) -"cdC" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"cdD" = ( -/obj/structure/punching_bag, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/break_room) -"cdE" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled, -/area/quartermaster/break_room) -"cdF" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/break_room) -"cdG" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/newscaster/south, -/turf/simulated/floor/tiled, -/area/quartermaster/break_room) -"cdH" = ( -/obj/machinery/vending/cigarette, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled, -/area/quartermaster/break_room) -"cdI" = ( -/obj/machinery/vending/snack, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/break_room) -"cdJ" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled, -/area/quartermaster/break_room) -"cdK" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/table/standard, -/obj/item/stack/wrapping_paper, -/obj/effect/floor_decal/corner/brown/full, -/turf/simulated/floor/tiled, -/area/quartermaster/mail_room) -"cdL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/item/device/radio/intercom/south, -/obj/item/stack/wrapping_paper, -/turf/simulated/floor/tiled, -/area/quartermaster/mail_room) -"cdM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/device/destTagger, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/machinery/light, -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/mail_room) -"cdN" = ( -/obj/structure/disposalpipe/junction/yjunction, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/mail_room) -"cdO" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/obj/machinery/camera/network/supply{ - c_tag = "Cargo - Mail Sorting"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/mail_room) -"cdP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"cdQ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"cdR" = ( -/obj/structure/closet/crate, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"cdS" = ( -/obj/structure/cable{ - 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 = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"cdT" = ( -/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/plating, -/area/maintenance/cargo) -"cdV" = ( -/obj/structure/cable{ - 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/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"cdW" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"cdX" = ( -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"cdZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_mining{ - name = "Break Room"; - req_one_access = list(31,48,67); - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/map_effect/door_helper/unres, -/turf/simulated/floor/tiled, -/area/quartermaster/break_room) -"cea" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Mail Maintenance"; - req_access = list(50); - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"ceb" = ( -/obj/structure/disposaloutlet{ - dir = 1; - name = "mail outlet"; - spread_point = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/mail_room) -"cec" = ( -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 1; - name = "Sorting Office"; - sortType = "Sorting Office" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"ced" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/network/supply{ - c_tag = "Cargo - Disposals, Upper"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"cee" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"cef" = ( -/obj/structure/disposaloutlet{ - dir = 1; - spread = 360; - spread_point = 2 - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/disposal) -"ceg" = ( -/obj/random/junk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"ceh" = ( -/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/disposalpipe/sortjunction/flipped{ - dir = 4; - name = "Cargo"; - sortType = "Cargo" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"cei" = ( -/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/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"cej" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(12,54); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"cek" = ( -/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/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cel" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - name = "Mining"; - sortType = "Mining" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cem" = ( -/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/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cen" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(12,54); - 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" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"ceo" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"cep" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"ceq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/plating, -/area/maintenance/bar) -"cer" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"ces" = ( -/obj/structure/disposalpipe/junction, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"cet" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall, -/area/maintenance/disposal) -"ceu" = ( -/obj/structure/track{ - icon_state = "track6" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"cev" = ( -/obj/structure/track{ - icon_state = "track12" - }, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"cew" = ( -/obj/structure/track{ - icon_state = "track12" - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"cex" = ( -/obj/structure/track{ - icon_state = "track10" - }, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"cey" = ( -/turf/simulated/wall, -/area/outpost/mining_main/eva) -"cez" = ( -/turf/simulated/wall, -/area/outpost/mining_main/refinery) -"ceA" = ( -/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/door/airlock/glass_mining{ - name = "Mining"; - req_one_access = list(31,48,67); - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/map_effect/door_helper/unres, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"ceB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Mining Processing Hatch"; - req_access = list(48); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"ceC" = ( -/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/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"ceE" = ( -/obj/structure/disposalpipe/tagger/partial{ - dir = 8; - tag = "Sorting Office" - }, -/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/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"ceF" = ( -/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 = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"ceG" = ( -/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/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"ceH" = ( -/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/plating, -/area/maintenance/bar) -"ceI" = ( -/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/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"ceJ" = ( -/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 = 1; - icon_state = "pipe-c" - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"ceK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"ceL" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - 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/plating, -/area/maintenance/bar) -"ceM" = ( -/obj/structure/track{ - icon_state = "track3" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"ceN" = ( -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"ceO" = ( -/obj/structure/track{ - icon_state = "track3" - }, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"ceP" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"ceQ" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"ceR" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"ceS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet/north, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"ceT" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"ceU" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/alarm/north, -/obj/machinery/power/apc/super/west, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"ceV" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/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, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"ceW" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/obj/machinery/mineral/stacking_unit_console{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"ceX" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/obj/machinery/door/firedoor, -/obj/structure/plasticflaps, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"ceY" = ( -/obj/machinery/mineral/stacking_machine{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"ceZ" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cfa" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cfb" = ( -/obj/machinery/conveyor{ - dir = 9; - id = "mining_internal"; - reversed = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cfc" = ( -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cfd" = ( -/obj/structure/track{ - icon_state = "track4" - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"cfe" = ( -/obj/structure/track{ - icon_state = "track12" - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"cff" = ( -/obj/structure/track{ - icon_state = "track13" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"cfg" = ( -/obj/vehicle/train/cargo/engine/mining{ - dir = 2 - }, -/obj/structure/track{ - icon_state = "track12" - }, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"cfh" = ( -/obj/vehicle/train/cargo/trolley/mining, -/obj/structure/track{ - icon_state = "track12" - }, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"cfi" = ( -/obj/structure/track{ - icon_state = "track9" - }, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"cfj" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cfk" = ( -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cfl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cfm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cfn" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cfo" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cfp" = ( -/obj/structure/disposalpipe/segment, -/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, -/area/outpost/mining_main/refinery) -"cfq" = ( -/obj/machinery/mineral/stacking_unit_console{ - pixel_y = -32 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cft" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/outpost/mining_main/eva) -"cfu" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"cfv" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/outpost/mining_main/eva) -"cfx" = ( -/obj/structure/ore_box{ - icon_state = "orebox1" - }, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"cfy" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cfA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cfB" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cfC" = ( -/obj/effect/floor_decal/corner/brown/full, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/west, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cfD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/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, -/area/outpost/mining_main/refinery) -"cfE" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cfF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cfG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cfH" = ( -/obj/machinery/mineral/processing_unit{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cfL" = ( -/obj/structure/closet/secure_closet/miner, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cfM" = ( -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cfN" = ( -/obj/machinery/door/window/southleft, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cfO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/window/southright, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/brown, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cfP" = ( -/obj/structure/window/reinforced, -/obj/structure/closet/crate, -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cfQ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cfR" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cfS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_mining{ - name = "Mining"; - req_one_access = list(48,67); - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/map_effect/door_helper/unres, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cfT" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/mineral/equipment_vendor, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cfU" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/obj/machinery/mineral/equipment_vendor, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cfV" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cfW" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "mining_internal" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cfX" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"cfY" = ( -/obj/machinery/recharge_station, -/obj/machinery/alarm/west, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"cfZ" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/item/hoist_kit, -/obj/structure/table/rack{ - dir = 1 - }, -/obj/item/ladder_mobile, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cga" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgb" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"cgc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"cgd" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cge" = ( -/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, -/area/outpost/mining_main/refinery) -"cgf" = ( -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cgg" = ( -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cgh" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cgi" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cgj" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "mining_internal" - }, -/obj/machinery/door/firedoor, -/obj/structure/plasticflaps, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cgl" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"cgm" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1379; - id_tag = "mining_east_pump" - }, -/obj/structure/sign/vacuum{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgn" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1379; - id_tag = "mining_east_pump" - }, -/obj/structure/closet/walllocker/emerglocker/north, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgo" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"cgp" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/camera/network/mining{ - c_tag = "Mining - Airlock"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgq" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgt" = ( -/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/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgu" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/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, -/area/outpost/mining_main/eva) -"cgv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/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, -/area/outpost/mining_main/refinery) -"cgw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cgx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cgy" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cgz" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cgA" = ( -/obj/machinery/mineral/unloading_machine{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cgB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgC" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgE" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "mining_east_inner"; - locked = 1; - name = "Mining External Access"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgF" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "mining_east_airlock"; - name = "interior access button"; - pixel_x = -27; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/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/outpost/mining_main/eva) -"cgJ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgK" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cgL" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cgM" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cgN" = ( -/obj/machinery/mineral/processing_unit_console{ - pixel_y = 32 - }, -/obj/machinery/conveyor_switch/oneway{ - id = "mining_internal"; - name = "mining conveyor" - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cgO" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cgP" = ( -/obj/machinery/mineral/processing_unit_console{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cgQ" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/ore_box, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cgR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cgS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgT" = ( -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "mining_east_airlock"; - pixel_y = -25; - tag_airpump = "mining_east_pump"; - tag_chamber_sensor = "mining_east_sensor"; - tag_exterior_door = "mining_east_outer"; - tag_interior_door = "mining_east_inner" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1379; - id_tag = "mining_east_pump" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgU" = ( -/obj/machinery/airlock_sensor{ - id_tag = "mining_east_sensor"; - master_tag = "mining_east_airlock"; - pixel_y = -25 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1379; - id_tag = "mining_east_pump" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgV" = ( -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgW" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - name = "Distro to Canisters"; - target_pressure = 150 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"cgX" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"cgY" = ( -/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" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgZ" = ( -/obj/effect/floor_decal/corner/brown, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cha" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"chb" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"chc" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"chd" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"che" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"chf" = ( -/obj/effect/floor_decal/corner/brown/full, -/obj/structure/table/rack{ - dir = 1 - }, -/obj/item/pickaxe{ - pixel_x = 5 - }, -/obj/item/shovel{ - pixel_x = -5 - }, -/obj/item/wrench, -/obj/item/crowbar, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/power/apc/super/south, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"chh" = ( -/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, -/area/outpost/mining_main/eva) -"chi" = ( -/obj/structure/table/standard, -/obj/item/device/suit_cooling_unit, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/storage/belt/utility, -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"chj" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"chk" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"chl" = ( -/obj/structure/ladder{ - pixel_y = 16 - }, -/turf/simulated/open/airless, -/area/outpost/mining_main/eva) -"chm" = ( -/obj/structure/ladder/up{ - pixel_y = 16 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"chn" = ( -/obj/structure/sign/drop, -/turf/simulated/wall, -/area/outpost/mining_main/eva) -"cho" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/machinery/mineral/rigpress, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"chp" = ( -/obj/machinery/door/window/northleft, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"chq" = ( -/obj/machinery/door/window/northright, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"chr" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/stack/flag/purple, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/head/helmet/space/void/mining, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"chs" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/machinery/papershredder, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cht" = ( -/obj/effect/floor_decal/corner/brown, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"chu" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 8 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"chw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"chx" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"chy" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"chz" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"chA" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"chB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"chC" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"chD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"chE" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/stack/flag/red, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/machinery/alarm/east, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/head/helmet/space/void/mining, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"chF" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"chG" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"chH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"chI" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/machinery/requests_console/east{ - department = "Mining"; - departmentType = 2; - name = "Mining Requests Console" - }, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"chJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"chK" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"chL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"chM" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"chN" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/stack/flag/green, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/head/helmet/space/void/mining, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"chO" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/item/pen/red, -/obj/item/pen/blue, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"chP" = ( -/obj/structure/bed/stool/chair/office/dark, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"chQ" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"chR" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"chS" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"chT" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/outpost/mining_main/eva) -"chU" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/outpost/mining_main/eva) -"chV" = ( -/obj/item/wrench, -/obj/item/screwdriver, -/obj/item/crowbar, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"chW" = ( -/obj/item/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"chX" = ( -/obj/machinery/cell_charger, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"chY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"chZ" = ( -/obj/machinery/suit_cycler/mining, -/obj/effect/floor_decal/corner/brown/full, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cia" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cib" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cic" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/stack/flag/yellow, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/head/helmet/space/void/mining, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cid" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown, -/obj/item/device/destTagger, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cie" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/item/stack/packageWrap, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cif" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/machinery/camera/network/mining{ - c_tag = "Mining - Office"; - dir = 1 - }, -/obj/structure/extinguisher_cabinet/south, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cig" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/item/device/hand_labeler, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cih" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/obj/item/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cii" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cij" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"cik" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"cil" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"cim" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cin" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10; - tag = "icon-warning_dust (SOUTHWEST)" - }, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"cio" = ( -/obj/effect/shuttle_landmark/skipjack/caverns, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"cip" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/item/clothing/head/fez, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/maintenance/vault) -"ciu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/r_wall, -/area/security/nuke_storage) -"ciw" = ( -/obj/item/trash/tray, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"cix" = ( -/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 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"ciy" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"ciz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"ciI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor{ - dir = 10; - icon_state = "conveyor-broken" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"ciZ" = ( -/obj/structure/curtain/black, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 1 - }, -/area/maintenance/bar) -"cjd" = ( -/obj/machinery/conveyor{ - backwards = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"cjf" = ( -/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/bed/stool/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"ckM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"ckY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window{ - dir = 1; - req_one_access = list(35) - }, -/obj/machinery/door/window{ - req_one_access = list(28) - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"clK" = ( -/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, -/area/medical/medbay2) -"cmp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/atmos_control) -"cnM" = ( -/obj/structure/closet{ - name = "Patient's Closet" - }, -/obj/item/clothing/under/medical_gown/white, -/obj/item/clothing/shoes/sneakers, -/obj/random/loot, -/obj/random/junk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"coB" = ( -/obj/structure/table/steel, -/obj/item/storage/firstaid/empty, -/obj/item/storage/firstaid/empty, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/machinery/firealarm/south, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = 16; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = 16; - pixel_y = 2 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = 38 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = 28 - }, -/turf/simulated/floor/carpet/rubber, -/area/assembly/robotics/workshop) -"coP" = ( -/turf/simulated/wall/r_wall, -/area/engineering/storage_eva) -"cpS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "FT Op" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/forensics_office) -"cqu" = ( -/obj/machinery/door/firedoor, -/obj/structure/plasticflaps/airtight{ - }, -/obj/machinery/door/airlock/security{ - name = "Autopsy Lab"; - req_access = list(4); - 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" - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics_morgue) -"cqF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"csb" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/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/white, -/area/assembly/robotics_cyborgification) -"ctD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"ctY" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/open, -/area/engineering/atmos/storage) -"cuh" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/dirt, -/obj/item/bedsheet/medical, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"cva" = ( -/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/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"cvy" = ( -/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/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"cwb" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"cwl" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"cwC" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"cxA" = ( -/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/item/flame/candle{ - pixel_y = -10 - }, -/obj/structure/table/reinforced/wood, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"cxC" = ( -/obj/machinery/porta_turret/stationary, -/obj/effect/floor_decal/industrial/warning/full, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"cyq" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/rnd/lab) -"czw" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"cBk" = ( -/obj/structure/table/wood, -/turf/simulated/floor/wood, -/area/lawoffice) -"cBC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cBK" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/constructable_frame/temp_deco, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"cCf" = ( -/obj/machinery/camera/network/civilian_main{ - c_tag = "Diplomatic Reception Exterior"; - network = list("Civilian Main","Rep_Office"); - pixel_x = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"cER" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/stone/marble, -/obj/item/material/kitchen/rollingpin{ - pixel_x = 6; - pixel_y = 17 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/condiment/sugar{ - pixel_x = 7; - pixel_y = 8 - }, -/obj/item/reagent_containers/cooking_container/board/bowl, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"cFc" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/security/forensics_office) -"cGg" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"cHF" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/appliance/cooker/fryer, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"cHJ" = ( -/obj/machinery/door/airlock/security{ - name = "Interrogation"; - req_access = list(1); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"cJo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/cabinet, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"cJN" = ( -/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/plating, -/area/maintenance/research_port) -"cMe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/machinery/meter{ - name = "Air supply" - }, -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/security_starboard) -"cMI" = ( -/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, -/area/chapel/main) -"cNp" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"cPY" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/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/door/airlock/glass_command{ - name = "Diplomatic Reception"; - dir = 1 - }, -/turf/simulated/floor/wood, -/area/lawoffice) -"cQE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"cRg" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"cTo" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/bridge) -"cUy" = ( -/obj/machinery/door/firedoor{ - enable_smart_generation = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"cUQ" = ( -/obj/machinery/ringer_button{ - id = "Consular"; - name = "Consular ringer button"; - pixel_x = 24; - pixel_y = -23 - }, -/turf/simulated/floor/carpet, -/area/lawoffice) -"cVC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/wood, -/area/chapel/main) -"cVM" = ( -/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/bed/stool/chair/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"cWR" = ( -/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/effect/landmark{ - name = "RevenantRift" - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"cXE" = ( -/obj/item/device/taperecorder{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/briefcase, -/obj/item/device/flash, -/obj/item/storage/secure/briefcase, -/obj/item/device/eftpos{ - eftpos_name = "Internal Affairs EFTPOS scanner" - }, -/obj/item/clothing/under/suit_jacket/really_black, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/shoes/laceup, -/obj/item/clipboard, -/obj/item/pen/multi, -/obj/item/device/camera, -/obj/machinery/ringer/east{ - department = "Representative"; - id = "Representative"; - pixel_y = 28 - }, -/obj/machinery/newscaster/east, -/obj/structure/closet/lawcloset, -/turf/simulated/floor/wood, -/area/lawoffice/representative) -"cXG" = ( -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"cXM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"cXY" = ( -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"das" = ( -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/library) -"dbC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"dbJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/chess_piece, -/turf/simulated/floor/marble/dark, -/area/maintenance/cargo) -"dcu" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"dcF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/bed/stool/chair/wood, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"dde" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - 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/plating, -/area/maintenance/cargo) -"dez" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/firealarm/north, -/turf/simulated/floor/plating, -/area/storage/tech) -"dfb" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/r_n_d/circuit_imprinter, -/obj/structure/reagent_dispensers/acid{ - pixel_x = 2; - pixel_y = -29 - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"dgR" = ( -/obj/machinery/conveyor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"dgV" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/bed/stool/chair, -/obj/random/loot, -/turf/simulated/floor/tiled, -/area/maintenance/bar) -"dhL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"djF" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/item/device/taperecorder, -/turf/simulated/floor/tiled/dark, -/area/security/forensics_office) -"dmg" = ( -/obj/structure/table/reinforced/wood, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"dnl" = ( -/mob/living/simple_animal/rat/hooded, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"dob" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/power/apc/low/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/forensics_laboratory) -"doy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/table/reinforced/wood, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"dpr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/mob/living/simple_animal/rat/brown, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"dpy" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal{ - name = "MediExpress - Quarantine" - }, -/obj/effect/floor_decal/corner_wide/pink/full{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"dqb" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Civilian - Civilian Substation"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian_west) -"dqs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/computerframe, -/turf/simulated/floor/carpet/cyan, -/area/maintenance/medbay) -"drh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/cargo) -"drO" = ( -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"dsl" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"dsn" = ( -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"dsE" = ( -/obj/structure/closet/crate, -/obj/item/circuitboard/autolathe, -/obj/item/circuitboard/rtg, -/obj/item/circuitboard/recharge_station, -/obj/item/circuitboard/mech_recharger, -/obj/item/circuitboard/optable, -/obj/item/circuitboard/security/engineering, -/obj/item/circuitboard/grill, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/workshop) -"dtt" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"dwg" = ( -/obj/item/chess_piece/rook, -/turf/simulated/floor/marble/dark, -/area/maintenance/cargo) -"dwz" = ( -/obj/machinery/photocopier, -/obj/machinery/newscaster/north, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/forensics_office) -"dwP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"dxG" = ( -/obj/structure/window/reinforced/polarized{ - id = "theater" - }, -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/carpet, -/area/maintenance/bar) -"dxM" = ( -/obj/structure/grille/broken, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"dyX" = ( -/obj/structure/toilet, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/button/remote/airlock{ - id = "sec_unit_2"; - name = "Door Bolt Control"; - pixel_x = 5; - pixel_y = 25; - specialfunctions = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/main) -"dzV" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1379; - id_tag = "mining_east_pump" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"dBt" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/maintenance/library) -"dBv" = ( -/obj/item/stack/tile/floor_white{ - pixel_x = -3; - pixel_y = -5 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"dBV" = ( -/obj/structure/window/reinforced{ - name = "adjusted reinforced window" - }, -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/snacks/fish/fishfillet, -/obj/item/reagent_containers/food/snacks/fish/fishfillet, -/obj/item/reagent_containers/food/snacks/fish/fishfillet, -/obj/item/reagent_containers/food/snacks/fish/fishfillet, -/obj/item/reagent_containers/food/snacks/fish/fishfillet, -/obj/item/reagent_containers/food/snacks/fish/fishfillet, -/obj/item/reagent_containers/food/snacks/fish/fishfillet, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/crew_quarters/kitchen/freezer) -"dCk" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "eng_fore_inner"; - locked = 1; - luminosity = 1; - name = "Engineering Fore Exterior Airlock"; - req_access = list(10,13); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"dDC" = ( -/obj/item/stack/tile/floor, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"dEr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/blood/ripped, -/obj/effect/decal/cleanable/blood/splatter, -/turf/simulated/floor/tiled/freezer, -/area/maintenance/medbay) -"dED" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_access = list(63); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"dEG" = ( -/obj/machinery/camera/network/civilian_main{ - c_tag = "Hydroponics - West"; - dir = 1 - }, -/obj/random/pottedplant, -/turf/simulated/floor/grass, -/area/hydroponics) -"dFK" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"dFX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"dGq" = ( -/obj/effect/floor_decal/corner/orange{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"dGy" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/appliance/cooker/grill, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"dGU" = ( -/obj/effect/decal/cleanable/spiderling_remains, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/workshop) -"dGX" = ( -/obj/machinery/power/apc/west, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"dJe" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/plating, -/area/medical/cryo) -"dKk" = ( -/obj/machinery/computer/guestpass{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"dKN" = ( -/obj/effect/mazegen/generator/blockwise{ - mheight = 7; - mwidth = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"dMw" = ( -/obj/item/flame/candle{ - pixel_x = -16; - pixel_y = 4 - }, -/obj/structure/table/reinforced/wood, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"dMA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/bed/stool/chair/wood, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"dMD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/bed/stool/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"dNy" = ( -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"dPs" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"dQv" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"dRX" = ( -/obj/item/chess_piece/king, -/turf/simulated/floor/marble/dark, -/area/maintenance/cargo) -"dTb" = ( -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"dTN" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/misc_lab) -"dTO" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"dUU" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"dVB" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled, -/area/security/nuke_storage) -"dWO" = ( -/obj/structure/bed/stool/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"dXf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"dXu" = ( -/obj/item/flame/candle{ - pixel_x = 1; - pixel_y = -10 - }, -/obj/structure/table/reinforced/wood, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"dXS" = ( -/obj/item/chess_piece/black, -/turf/simulated/floor/marble, -/area/maintenance/cargo) -"dYN" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(12,66); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"eco" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"edb" = ( -/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/machinery/alarm/east, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"edU" = ( -/obj/effect/landmark{ - name = "RevenantRift" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"eeM" = ( -/obj/structure/disposalpipe/segment, -/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/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"eiB" = ( -/obj/machinery/door/blast/shutters{ - dir = 2 - }, -/obj/machinery/conveyor{ - icon_state = "conveyor-broken" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"eiT" = ( -/obj/structure/disposalpipe/segment, -/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/plating, -/area/maintenance/medbay) -"ekr" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/engineering_ladder) -"elI" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/wall, -/area/crew_quarters/kitchen) -"enl" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/bar) -"enx" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/window/reinforced, -/obj/structure/table/standard, -/obj/item/roller{ - pixel_x = -1; - pixel_y = 3 - }, -/obj/item/roller{ - pixel_x = -1; - pixel_y = 3 - }, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"eqc" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/material/wood{ - amount = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"eqx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt, -/obj/structure/table/steel, -/obj/item/material/ashtray, -/turf/simulated/floor/tiled, -/area/maintenance/bar) -"erq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/shaker/peppermill{ - pixel_x = -8 - }, -/obj/item/reagent_containers/food/condiment/shaker/salt{ - pixel_x = 8; - pixel_y = 14 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"esz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"etp" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/body_scanconsole{ - dir = 1; - pixel_y = 6 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/forensics_morgue) -"etG" = ( -/obj/structure/table/rack, -/obj/item/device/paint_sprayer, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"euo" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/large_stock_marker, -/obj/machinery/light_switch{ - pixel_x = 24; - pixel_y = -4 - }, -/obj/machinery/button/remote/blast_door{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_x = 24; - pixel_y = 4; - req_access = list(31) - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"eux" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"exI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"exQ" = ( -/obj/machinery/mech_recharger, -/obj/machinery/firealarm/west, -/turf/simulated/floor/reinforced, -/area/assembly/chargebay) -"eyb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/landmark{ - name = "RevenantRift" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/lobby) -"eye" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/bed/stool/chair/office/wheelchair, -/obj/item/extinguisher, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"ezQ" = ( -/obj/effect/floor_decal/corner_wide/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"eCY" = ( -/obj/structure/morgue{ - dir = 2 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/forensics_morgue) -"eEQ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"eFC" = ( -/obj/structure/closet/crate, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"eFJ" = ( -/obj/item/stack/rods, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"eFN" = ( -/turf/simulated/floor/tiled/ramp{ - dir = 1 - }, -/area/hallway/primary/starboard) -"eFQ" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/library) -"eFZ" = ( -/obj/random/junk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"eGj" = ( -/obj/structure/bed/stool/padded/red, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"eHa" = ( -/obj/structure/disposalpipe/segment, -/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" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"eHm" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"eJt" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Security Lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/forensics_laboratory) -"eJy" = ( -/obj/item/chess_piece/black, -/turf/simulated/floor/marble/dark, -/area/maintenance/cargo) -"eJM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/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 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"eKX" = ( -/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/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"eLR" = ( -/obj/item/device/radio/intercom/interrogation/broadcasting/south, -/turf/simulated/floor/tiled, -/area/security/brig) -"eMv" = ( -/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 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"eMM" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/modular_computer/console/preset/security/investigations, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/forensics_office) -"eNv" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/table/glass, -/obj/machinery/newscaster/north, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"eNR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"eOZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"ePx" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"ePU" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - 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/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"eQr" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/forensics_morgue) -"eSt" = ( -/obj/structure/cable/green{ - icon_state = "4-9" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/maintenance/vault) -"eSY" = ( -/obj/item/flame/candle{ - pixel_y = -10 - }, -/obj/structure/table/reinforced/wood, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"eTB" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/library) -"eUk" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/supply) -"eXU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"eZE" = ( -/obj/machinery/alarm/west, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"eZL" = ( -/obj/machinery/status_display, -/turf/simulated/wall, -/area/security/brig) -"eZZ" = ( -/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/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"fap" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/security/forensics_office) -"fbb" = ( -/obj/structure/cable{ - 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/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"fbL" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"fdl" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/assembly/robotics/workshop) -"fdq" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"fdD" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "CHE2shutters"; - name = "Pharmacy Window Shutters" - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced, -/turf/simulated/floor/plating, -/area/medical/reception) -"fdP" = ( -/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/security{ - id_tag = "investdoor"; - name = "Investigations Office"; - req_access = list(4); - dir = 1 - }, -/turf/simulated/floor/lino, -/area/security/forensics_office) -"feo" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - welded = 1; - dir = 1 - }, -/obj/item/tape/engineering{ - icon_state = "engineering_door"; - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/workshop) -"ffC" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/marble, -/area/maintenance/cargo) -"ffY" = ( -/obj/machinery/power/portgen/basic, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"fgj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"fij" = ( -/turf/simulated/wall/r_wall, -/area/hallway/primary/port) -"fiO" = ( -/obj/structure/closet/crate/freezer, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/forensics_morgue) -"fiR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"fiX" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille{ - opacity = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/electricshock, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/supply) -"fjR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/maintenance/vault) -"fkF" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"fla" = ( -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "cobweb1" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/maintenance/vault) -"fnn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/flame/candle{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/structure/table/reinforced/wood, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"fnE" = ( -/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/plating, -/area/maintenance/vault) -"fom" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/light/spot{ - dir = 8; - must_start_working = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"fpa" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(28); - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"fpS" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"fpX" = ( -/obj/effect/floor_decal/corner_wide/paleblue/full, -/turf/simulated/floor/tiled, -/area/bridge) -"fqD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"fri" = ( -/obj/random/plushie, -/obj/item/stack/material/wood{ - amount = 10; - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"frq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/alarm/east, -/obj/random/pottedplant, -/turf/simulated/floor/plating, -/area/maintenance/library) -"ftD" = ( -/obj/structure/table/standard, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"fwl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"fxa" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/random/junk, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay) -"fzd" = ( -/obj/machinery/papershredder, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) -"fBZ" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/crew_quarters/kitchen/freezer) -"fCl" = ( -/obj/machinery/newscaster/east, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"fCY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Civilian (Main Level) Substation"; - req_one_access = list(11,24); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian_west) -"fEW" = ( -/obj/structure/table/rack, -/obj/random/loot, -/obj/item/clothing/glasses/welding, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"fFb" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/security/forensics_office) -"fFe" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-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/plating, -/area/maintenance/library) -"fFw" = ( -/obj/machinery/light/small/emergency, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"fGk" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"fGD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/bed/stool/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"fHA" = ( -/turf/simulated/floor/tiled, -/area/security/nuke_storage) -"fIX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"fJU" = ( -/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/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"fKb" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/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, -/area/hydroponics) -"fKx" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"fKZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/carpet/rubber, -/area/assembly/robotics/workshop) -"fLv" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"fMf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"fNI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/item/wrench, -/obj/machinery/firealarm/east, -/turf/simulated/floor/plating, -/area/medical/cryo) -"fNM" = ( -/obj/structure/table/standard, -/obj/item/tape_roll, -/obj/item/tape_roll, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"fQV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet/cyan, -/area/maintenance/medbay) -"fRQ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/carpet, -/area/library) -"fSk" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching security cameras."; - name = "Office Cameras"; - network = list("Rep_Office"); - pixel_x = -31; - pixel_y = -4 - }, -/obj/item/device/flashlight/lamp, -/obj/structure/table/wood{ - table_reinf = "wood" - }, -/obj/structure/noticeboard{ - pixel_y = 28 - }, -/turf/simulated/floor/carpet/rubber, -/area/lawoffice/representative) -"fSn" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"fSC" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Civilian (Main Level)"; - name_tag = "Civilian (Main Level) Subgrid" - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian_west) -"fSR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Research and Development Maintenance"; - req_access = list(7); - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/chemistry) -"fTZ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/small/west{ - pixel_x = 12; - pixel_y = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"fUO" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/black, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"fXr" = ( -/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 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"fXR" = ( -/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/lino, -/area/security/forensics_office) -"fYe" = ( -/obj/effect/landmark{ - name = "borerstart" - }, -/turf/simulated/floor/plating, -/area/storage/tech) -"fZm" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/security/brig) -"fZq" = ( -/obj/structure/closet, -/obj/random/junk, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/library) -"fZL" = ( -/obj/structure/table/rack, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"fZZ" = ( -/obj/machinery/newscaster, -/turf/simulated/wall, -/area/security/brig) -"gaR" = ( -/obj/machinery/power/tesla_beacon, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"gbQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"gcr" = ( -/obj/structure/table/standard, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/random/loot, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/engineering) -"gcN" = ( -/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 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"gdi" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Civilian Main" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian_west) -"gdq" = ( -/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/maintenance{ - name = "Security Maintenance"; - req_access = list(63); - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"gen" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/maintenance/engineering) -"gfh" = ( -/obj/machinery/light/small/emergency{ - dir = 1; - name = "adjusted light fixture"; - pixel_x = 14 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"gfB" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/bridge) -"gfO" = ( -/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/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"gfU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/bar) -"ggP" = ( -/obj/structure/bed/stool/chair/padded/brown, -/turf/simulated/floor/carpet, -/area/library) -"ggV" = ( -/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/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"ghU" = ( -/obj/random/pottedplant, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/forensics_laboratory) -"gjz" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 1; - name = "Kitchen"; - sortType = "Kitchen" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"gkK" = ( -/obj/structure/window/reinforced, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/forensics_morgue) -"gmg" = ( -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/pen, -/obj/item/device/radio/intercom/north, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/investigations_storage) -"gmt" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "mining_east_airlock"; - name = "exterior access button"; - pixel_x = 26; - pixel_y = -7 - }, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"gnE" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/cargo) -"goR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"grF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"gsM" = ( -/obj/structure/disposalpipe/segment, -/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 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"guf" = ( -/obj/structure/closet/crate/freezer{ - name = "Fridge" - }, -/obj/item/storage/box/bloodpacks, -/obj/item/storage/box/freezer/organcooler, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/medical/surgerywing) -"gxO" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/lawoffice/representative) -"gxP" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"gxS" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/random/pottedplant, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"gxX" = ( -/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/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(12,25,28,66); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"gzn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = 23 - }, -/turf/simulated/floor/carpet, -/area/chapel/main) -"gBi" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"gBP" = ( -/obj/structure/closet{ - name = "Patient's Closet" - }, -/obj/item/clothing/under/medical_gown/white, -/obj/item/clothing/shoes/sneakers, -/obj/random/loot, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"gCl" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/conveyor{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"gFM" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "eng_fore_outer"; - locked = 1; - luminosity = 1; - name = "Engineering Fore Exterior Airlock"; - req_access = list(10,13); - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"gGa" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/leafybush{ - pixel_x = -7; - pixel_y = -1 - }, -/turf/simulated/floor/grass, -/area/bridge) -"gGr" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"gHJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/walllocker/medical{ - desc = "It's wall-mounted storage unit for medical supplies. It has almost come off its mounts."; - name = "Dilapitated medical closet"; - pixel_y = -32 - }, -/obj/item/clothing/head/nursehat, -/obj/random/loot, -/obj/item/clothing/gloves/latex, -/obj/item/clothing/mask/surgical, -/obj/random/medical, -/obj/random/medical, -/turf/simulated/floor/carpet/cyan, -/area/maintenance/medbay) -"gIw" = ( -/obj/structure/bed/stool/padded/red, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/vault) -"gJn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"gKs" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"gKF" = ( -/obj/structure/table/standard, -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/obj/random/medical, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"gKH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"gKO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/crew_quarters/kitchen/freezer) -"gNO" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"gNS" = ( -/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/forensics_office) -"gOO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"gQK" = ( -/obj/effect/shuttle_landmark/legion/medical, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"gRf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/workshop) -"gSO" = ( -/obj/item/extinguisher, -/obj/item/extinguisher{ - pixel_x = 10 - }, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"gVl" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"gVC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"gWk" = ( -/obj/machinery/power/apc/west, -/obj/structure/table/rack, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/item/stack/packageWrap, -/obj/item/device/hand_labeler, -/turf/simulated/floor/lino, -/area/security/forensics_office) -"gXa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"gXA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/crowbar/red, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"gYm" = ( -/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" - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"gYT" = ( -/obj/structure/bed/stool/padded/red, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"gZD" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/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/glass_medical{ - name = "First Responder Quarters"; - req_access = list(67); - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"gZP" = ( -/obj/effect/floor_decal/corner_wide/orange{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"haE" = ( -/obj/machinery/vending/boozeomat{ - random_itemcount = 1 - }, -/turf/simulated/floor/wood, -/area/maintenance/vault) -"haW" = ( -/obj/structure/lattice, -/obj/item/beach_ball/holoball{ - desc = "An old and ash covered basketball."; - name = "old basketball" - }, -/turf/simulated/open/airless, -/area/mine/unexplored) -"hbG" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "barshutters01"; - name = "Bar Shutters" - }, -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/media/jukebox/phonograph{ - anchored = 1; - pixel_y = 10 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"hcd" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"hcZ" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/tinted/frosted, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"hdD" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"heb" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"heQ" = ( -/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/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"hfc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/marble/dark, -/area/maintenance/cargo) -"hfd" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "eng_fore_pump" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"hgW" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"hib" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"hiV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/alarm/north, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/vault) -"hji" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - on = 0; - pixel_y = 4 - }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular) -"hjQ" = ( -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"hkL" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"hmb" = ( -/obj/machinery/computer/operating, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"hnM" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - name = "Diplomatic Reception"; - sortType = "Diplomatic Reception" - }, -/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/carpet, -/area/lawoffice) -"hoG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/obj/structure/cable/green, -/obj/machinery/power/apc/low/east, -/turf/simulated/floor/tiled/ramp/bottom, -/area/security/forensics_morgue) -"hoV" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"hpp" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/assembly/robotics/workshop) -"hqy" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"hqT" = ( -/obj/item/clothing/mask/gas/mime, -/obj/item/clothing/shoes/sneakers, -/obj/item/toy/figure/mime, -/obj/structure/closet/cabinet, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"hsb" = ( -/obj/structure/table/standard, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"hsj" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/bed/stool/chair/sofa/left/red{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/primary/aft) -"htm" = ( -/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/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"hwc" = ( -/obj/item/chess_piece/knight/black, -/turf/simulated/floor/marble/dark, -/area/maintenance/cargo) -"hwh" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/misc_lab) -"hwm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/chess_piece/queen, -/turf/simulated/floor/marble, -/area/maintenance/cargo) -"hxb" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"hxQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"hxZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/blocker, -/obj/structure/curtain/black, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 1 - }, -/area/maintenance/bar) -"hza" = ( -/obj/structure/bed/stool/chair/padded/black{ - dir = 1; - icon_state = "chair_padding_over" - }, -/turf/simulated/floor/carpet/rubber, -/area/lawoffice/representative) -"hzA" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"hAn" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"hAo" = ( -/obj/machinery/power/apc/west, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"hAB" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark{ - name = "RevenantRift" - }, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"hAQ" = ( -/obj/structure/table/standard, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/folder/white, -/obj/item/pen, -/turf/simulated/floor/carpet/cyan, -/area/maintenance/medbay) -"hBb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"hCL" = ( -/obj/machinery/atmospherics/omni/filter{ - tag_east = 1; - tag_south = 5; - tag_west = 2; - use_power = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"hEd" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/obj/item/material/shard, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"hFB" = ( -/obj/structure/bed/stool/padded/red, -/obj/effect/decal/cleanable/dirt, -/obj/random/loot, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"hFM" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"hGk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"hIh" = ( -/obj/structure/disposalpipe/segment, -/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/railing/mapped{ - name = "polished railing" - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/wood, -/area/hallway/primary/starboard) -"hIi" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"hIP" = ( -/obj/structure/table/standard, -/obj/item/device/radio/intercom/west, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/forensics_morgue) -"hKl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/random/loot, -/obj/item/storage/box/fancy/candle_box, -/obj/item/storage/box/fancy/matches, -/turf/simulated/floor/wood, -/area/maintenance/vault) -"hKS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"hLy" = ( -/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/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"hLJ" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"hMF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - 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/wood, -/area/lawoffice) -"hNn" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"hNs" = ( -/obj/effect/landmark{ - name = "RevenantRift" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"hND" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/crew_quarters/kitchen/freezer) -"hOu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"hPn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"hPx" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/quartermaster/storage) -"hQf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"hQD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"hRF" = ( -/obj/structure/closet, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"hRJ" = ( -/obj/machinery/alarm/east, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"hSk" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/maintenance/security_starboard) -"hSJ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/bed/stool/chair/office/wheelchair, -/obj/item/extinguisher, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"hTz" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"hTO" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/bridge_elevator) -"hUy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"hUU" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"hVm" = ( -/obj/structure/railing/mapped{ - name = "polished railing" - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 8 - }, -/area/hallway/primary/starboard) -"hXd" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"hYa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"hYA" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"iap" = ( -/obj/structure/railing/mapped{ - name = "polished railing" - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/hallway/primary/starboard) -"iaC" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Supply Main Substation Bypass" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/supply) -"iaV" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"ibm" = ( -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = -26 - }, -/turf/simulated/floor/lino, -/area/security/forensics_office) -"icb" = ( -/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/effect/landmark{ - name = "Revenant" - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"idi" = ( -/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/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(12,29); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/port) -"ifx" = ( -/obj/structure/closet/crate/freezer{ - name = "Assorted Blood Packs" - }, -/obj/item/reagent_containers/blood/OPlus, -/obj/item/reagent_containers/blood/OPlus, -/obj/item/reagent_containers/blood/BPlus, -/obj/item/reagent_containers/blood/BPlus, -/obj/item/reagent_containers/blood/BMinus, -/obj/item/reagent_containers/blood/BMinus, -/obj/item/reagent_containers/blood/APlus, -/obj/item/reagent_containers/blood/APlus, -/obj/item/reagent_containers/blood/AMinus, -/obj/item/reagent_containers/blood/AMinus, -/obj/effect/floor_decal/corner_wide/green{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"igy" = ( -/obj/effect/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/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics_cyborgification) -"ijX" = ( -/obj/random/pottedplant, -/obj/machinery/firealarm/east, -/turf/simulated/floor/wood, -/area/journalistoffice) -"ikm" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/stone/marble, -/obj/item/material/knife{ - pixel_x = -9; - pixel_y = -14 - }, -/obj/item/storage/box/produce{ - pixel_x = 3; - pixel_y = -11 - }, -/obj/item/reagent_containers/food/snacks/mint{ - pixel_x = 3; - pixel_y = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"ikn" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 6 - }, -/obj/item/device/radio/sci, -/obj/item/device/radio/sci, -/obj/item/device/radio/sci, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"ikR" = ( -/obj/random/gloves, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"imd" = ( -/obj/structure/sign/flag/scc{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"ipL" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"iqX" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"isH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"itk" = ( -/obj/machinery/mech_recharger, -/obj/machinery/alarm/north, -/turf/simulated/floor/reinforced, -/area/assembly/chargebay) -"itx" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"ivh" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - name = "Surgery"; - sortType = "Surgery" - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"ivR" = ( -/obj/structure/table/wood, -/obj/item/flame/candle{ - pixel_x = 17; - pixel_y = -11 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/bar) -"ixU" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"izC" = ( -/obj/structure/ladder/up{ - pixel_y = 16 - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/maintenance/substation/supply) -"izE" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"iAK" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"iBt" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/landmark/start{ - name = "Chef" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"iBL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/chair/plastic, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"iCN" = ( -/obj/structure/kitchenspike, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/crew_quarters/kitchen/freezer) -"iFr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"iFV" = ( -/turf/simulated/floor/reinforced, -/area/assembly/chargebay) -"iHb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/maintenance/vault) -"iHM" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/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/tiled/dark, -/area/security/forensics_office) -"iIv" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Security Lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/forensics_laboratory) -"iKN" = ( -/obj/machinery/door/firedoor, -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - backwards = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"iNe" = ( -/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/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - req_access = list(29); - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/assembly/robotics/workshop) -"iNl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"iNI" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "eng_fore_pump" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"iOU" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet/cyan, -/area/crew_quarters/heads/cryo) -"iPv" = ( -/turf/simulated/wall/r_wall, -/area/rnd/chemistry) -"iPS" = ( -/obj/machinery/conveyor{ - dir = 8; - icon_state = "conveyor-broken" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"iSy" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/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/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"iTH" = ( -/obj/machinery/alarm/west, -/turf/simulated/floor/wood, -/area/lawoffice) -"iUC" = ( -/obj/structure/cable{ - 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/starboard) -"iUR" = ( -/turf/simulated/wall, -/area/hallway/primary/aft) -"iWs" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"iXN" = ( -/obj/item/bodybag, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"iZx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"iZV" = ( -/obj/structure/table/standard, -/obj/item/clothing/ears/earmuffs{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/ears/earmuffs{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"jch" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/grass, -/area/hydroponics) -"jck" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"jcx" = ( -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"jdn" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/lino, -/area/security/forensics_office) -"jjD" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/rnd/lab) -"jkh" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/cargo) -"jkj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/forensics_office) -"jky" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"jlG" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"jmf" = ( -/obj/effect/landmark{ - name = "RevenantRift" - }, -/turf/simulated/floor/holofloor/reinforced, -/area/holodeck/alphadeck) -"jnD" = ( -/obj/structure/table/wood, -/turf/simulated/floor/carpet, -/area/crew_quarters/bar) -"jnE" = ( -/obj/structure/cable{ - 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/plating, -/area/maintenance/vault) -"jpf" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted/frosted, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"jru" = ( -/turf/simulated/wall, -/area/assembly/chargebay) -"juv" = ( -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"jvm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/library) -"jvW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - autoclose = 0; - icon_state = "door_open"; - name = "Intensive Care Unit"; - req_access = list(66); - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/medical/icu) -"jyi" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"jBK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/machinery/meter{ - name = "Air supply" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"jCe" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"jCo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"jDA" = ( -/turf/simulated/wall, -/area/engineering/atmos) -"jFC" = ( -/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/medical/medbay2) -"jGj" = ( -/obj/structure/lattice, -/turf/simulated/open/airless, -/area/mine/unexplored) -"jHQ" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"jLO" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "messhallshutters"; - name = "Mess hall shutters" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"jMq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/chess_piece/knight/black, -/turf/simulated/floor/marble, -/area/maintenance/cargo) -"jOm" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/medical{ - name = "Room 1"; - req_one_access = list(12,66); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"jPX" = ( -/turf/simulated/wall, -/area/crew_quarters/kitchen/freezer) -"jQc" = ( -/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/vault) -"jSO" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/engineering) -"jTV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"jUF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"jXn" = ( -/obj/item/chess_piece/rook/black, -/turf/simulated/floor/marble, -/area/maintenance/cargo) -"jXv" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/mining{ - name = "Storeroom 2"; - req_one_access = list(12,31); - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/cargo) -"kaa" = ( -/obj/random/loot, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/internals, -/obj/random/junk, -/obj/random/smalltank, -/obj/item/clothing/mask/gas/alt, -/turf/simulated/floor/tiled, -/area/maintenance/cargo) -"kaW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"kbF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/alarm/north, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"kbS" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Medbay Subgrid"; - name_tag = "Medbay Subgrid" - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/maintenance/substation/medical) -"kcx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - autoclose = 0; - icon_state = "door_open"; - name = "General Treatment Room"; - req_access = list(66); - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/medical/gen_treatment) -"kcG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"kdp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"kdE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/decal/cleanable/dirt, -/obj/structure/curtain/medical, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"keq" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/stone/marble, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"keE" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "mining_east_inner"; - locked = 1; - name = "Mining External Access"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"kgr" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/crew_quarters/kitchen/freezer) -"khX" = ( -/obj/random/junk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"kiM" = ( -/obj/effect/floor_decal/corner/grey{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/tile/floor_white{ - pixel_x = 5; - pixel_y = -5 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"kjO" = ( -/obj/structure/table/wood, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/spline/plain, -/obj/item/material/ashtray/bronze, -/turf/simulated/floor/carpet, -/area/lawoffice/consular) -"klC" = ( -/turf/simulated/wall, -/area/security/forensics_morgue) -"kmW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"kuR" = ( -/obj/structure/closet/crate, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/library) -"kvH" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"kvP" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"kwa" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"kwt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - 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, -/area/lawoffice/representative) -"kwJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"kwM" = ( -/obj/random/loot, -/obj/structure/table/steel, -/obj/item/crowbar/red, -/turf/simulated/floor/tiled, -/area/maintenance/bar) -"kxP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"kzh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark{ - name = "RevenantRift" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"kzl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"kzx" = ( -/obj/structure/table/standard, -/obj/item/folder/sec, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/security/forensics_office) -"kzA" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/landmark/engine_setup/coolant_canister, -/obj/machinery/firealarm/east, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"kzE" = ( -/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/white, -/area/rnd/chemistry) -"kAK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "5-10" - }, -/turf/simulated/floor/tiled, -/area/maintenance/vault) -"kAV" = ( -/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/crew_quarters/medbreak) -"kEs" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/largecrate/animal/goat, -/obj/machinery/alarm/east, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"kFz" = ( -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"kGv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool, -/turf/simulated/floor/tiled, -/area/maintenance/cargo) -"kGA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"kHW" = ( -/turf/simulated/wall, -/area/maintenance/substation/engineering) -"kIj" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1379; - id_tag = "mining_east_pump" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"kJP" = ( -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"kKq" = ( -/obj/machinery/power/smes/batteryrack{ - input_attempt = 1; - input_level = 50000; - output_attempt = 1; - output_level = 45000 - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/workshop) -"kKt" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"kMO" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"kQn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/cabinet, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"kRp" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"kRK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"kTl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/chair/office/dark, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"kUL" = ( -/obj/structure/bed/stool/chair/office/dark, -/turf/simulated/floor/tiled/dark, -/area/security/forensics_office) -"kVx" = ( -/obj/effect/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/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics_cyborgification) -"kVD" = ( -/obj/structure/bed/stool/padded/red, -/obj/structure/cable/green{ - icon_state = "6-8" - }, -/mob/living/simple_animal/rat/gray, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"kWH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor{ - enable_smart_generation = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"kWX" = ( -/obj/structure/cable/green{ - icon_state = "4-10" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"kYd" = ( -/obj/item/stack/tile/floor_white{ - pixel_x = -3; - pixel_y = -5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"kYi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"kYT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "FT Op" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/forensics_office) -"kZT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"lbk" = ( -/obj/effect/floor_decal/corner/mauve/full, -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"lbN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/alarm/west, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"lbQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/standard, -/obj/random/loot, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet/cyan, -/area/maintenance/medbay) -"lcc" = ( -/obj/effect/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/security_starboard) -"leW" = ( -/obj/structure/table/standard, -/obj/item/storage/box/cups, -/turf/simulated/floor/tiled, -/area/security/brig) -"leY" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "Robocompo" - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics/workshop) -"lgq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"lhs" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - welded = 1; - dir = 4 - }, -/obj/item/tape/engineering{ - icon_state = "engineering_door"; - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/workshop) -"lhK" = ( -/obj/structure/table/standard, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"lhZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"liq" = ( -/obj/structure/table/steel, -/obj/item/reagent_containers/glass/beaker/sulphuric{ - pixel_y = 3 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"liM" = ( -/obj/item/toy/figure/clown, -/obj/structure/closet/cabinet, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"ljh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/tiled/white, -/area/maintenance/research_port) -"ljr" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/hallway/primary/aft) -"ljA" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/landmark/engine_setup/empty_canister, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"lmd" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"lnw" = ( -/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/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"lpw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"lpH" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - dir = 8 - }, -/obj/random/soap, -/turf/simulated/floor/tiled/freezer, -/area/maintenance/medbay) -"lrT" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/bed/stool/padded/red, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"ltW" = ( -/obj/machinery/firealarm/west, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/forensics_laboratory) -"luk" = ( -/obj/machinery/atmospherics/unary/freezer{ - icon_state = "freezer" - }, -/obj/effect/landmark/engine_setup/freezer, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"lut" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"luK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"luT" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/nuke_storage) -"lvP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/forensics_morgue) -"lyh" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Maintenance - Atmospherics" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/atmos_control) -"lAa" = ( -/obj/structure/cable/green{ - icon_state = "6-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"lAi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - req_one_access = list(11,24); - dir = 4 - }, -/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" - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"lAJ" = ( -/obj/structure/cable{ - 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 - }, -/obj/structure/lattice/catwalk/indoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/supply) -"lAM" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"lFg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"lFD" = ( -/obj/item/chess_piece/knight, -/turf/simulated/floor/marble/dark, -/area/maintenance/cargo) -"lGd" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/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/manifold/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"lIG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Medbay Substation"; - req_access = list(5); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/medical) -"lJh" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"lJu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"lKe" = ( -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"lKZ" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/structure/table/wood{ - table_reinf = "wood" - }, -/obj/machinery/alarm/west, -/obj/item/material/ashtray/bronze, -/turf/simulated/floor/carpet/rubber, -/area/lawoffice/representative) -"lNA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/library) -"lPl" = ( -/obj/structure/extinguisher_cabinet, -/turf/simulated/wall, -/area/security/brig) -"lQu" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"lQC" = ( -/obj/item/material/shard, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"lSK" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(5); - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/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/plating, -/area/maintenance/medbay) -"lSY" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/medical/medbay2) -"lTg" = ( -/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/engineering/engineering_hallway_main) -"lUQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/machinery/meter{ - name = "Scrubbers" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"lVe" = ( -/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/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"lVA" = ( -/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{ - 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/medbay) -"maY" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/bed/stool/chair/sofa/right/red{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/primary/aft) -"mbc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintance"; - req_access = list(12); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"mbJ" = ( -/obj/structure/table/wood, -/turf/simulated/floor/carpet, -/area/library) -"mbS" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"mbW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"mdx" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Fore Airlock Exterior 1"; - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"mdO" = ( -/obj/item/device/taperecorder{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/briefcase, -/obj/item/device/flash, -/obj/item/storage/secure/briefcase, -/obj/item/device/eftpos{ - eftpos_name = "Internal Affairs EFTPOS scanner" - }, -/obj/item/clothing/under/suit_jacket/really_black, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/shoes/laceup, -/obj/item/clipboard, -/obj/item/pen/multi, -/obj/item/device/camera, -/obj/structure/closet/cabinet{ - desc = "It's a storage unit for courtroom apparel and items."; - name = "legal closet" - }, -/obj/item/clothing/under/lawyer/red, -/obj/item/clothing/under/lawyer/purple, -/obj/item/clothing/suit/storage/lawyer/purpjacket, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/clothing/shoes/sneakers/black, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/item/device/radio/intercom/north, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/wood, -/area/lawoffice/consular) -"mdY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"meJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/crew_quarters/kitchen/freezer) -"meT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/engineering) -"mhb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/paper, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"mhV" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"mjl" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/table/reinforced, -/obj/item/paper_scanner, -/turf/simulated/floor/tiled, -/area/bridge) -"mlB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics_cyborgification) -"mlY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(58); - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"mmr" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -6; - pixel_y = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"mmQ" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/random/loot, -/obj/effect/landmark{ - name = "Revenant" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"mnI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/red{ - dir = 1 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"mqp" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"mqr" = ( -/obj/structure/table/standard, -/obj/machinery/recharger, -/turf/simulated/floor/carpet, -/area/quartermaster/break_room) -"mqs" = ( -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/tiled, -/area/security/brig) -"mqT" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/disposalpipe/tagger{ - dir = 4; - name = "Quarantine"; - sort_tag = "Quarantine" - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/medical/icu) -"mtd" = ( -/obj/effect/floor_decal/corner_wide/paleblue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"mvJ" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/item/clothing/glasses/welding, -/obj/item/clothing/glasses/welding, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"mxd" = ( -/obj/structure/table/rack, -/obj/random/arcade, -/obj/random/arcade, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"mxN" = ( -/obj/structure/bed/stool/padded/red, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"mxT" = ( -/turf/simulated/floor/carpet/rubber, -/area/assembly/robotics/workshop) -"mxX" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"mya" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/door/blast/shutters{ - id = "kitchenshutters01"; - name = "Kitchen Shutters" - }, -/obj/structure/table/stone/marble, -/obj/machinery/door/firedoor{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"myj" = ( -/obj/structure/curtain/medical, -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"mzO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"mBl" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"mBV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/walllocker/medical/secure{ - desc = "It's a secure wall-mounted storage unit for first aid supplies. It looks neglected."; - name = "Dusty Medication Closet"; - pixel_x = -32 - }, -/obj/random/medical, -/obj/random/medical, -/obj/random/medical, -/turf/simulated/floor/carpet/cyan, -/area/maintenance/medbay) -"mCf" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"mCz" = ( -/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 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"mDD" = ( -/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/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"mEf" = ( -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"mEM" = ( -/obj/machinery/door/firedoor{ - enable_smart_generation = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"mFA" = ( -/obj/structure/table/standard, -/obj/effect/decal/cleanable/cobweb, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"mFU" = ( -/obj/structure/sink/kitchen{ - dir = 8; - name = "Autopsy sink"; - pixel_x = 20 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/forensics_morgue) -"mGm" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 16; - d2 = 0; - icon_state = "12-0" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/disposalpipe/up{ - dir = 8 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/bridge_elevator) -"mGq" = ( -/obj/machinery/door/firedoor, -/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{ - name = "Telecomms Access"; - req_access = list(12); - dir = 4 - }, -/obj/structure/sign/directions/tcom{ - dir = 4; - pixel_y = 24 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/supply) -"mIp" = ( -/obj/effect/landmark{ - name = "borerstart" - }, -/turf/simulated/floor/carpet/cyan, -/area/crew_quarters/heads/cryo) -"mIZ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"mJH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"mKz" = ( -/turf/simulated/wall, -/area/maintenance/library) -"mKD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"mNw" = ( -/obj/structure/closet, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/library) -"mNP" = ( -/turf/simulated/wall, -/area/engineering/locker_room) -"mOb" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/ringer_button{ - id = "Representative"; - name = "Representative ringer button"; - pixel_x = -24; - pixel_y = 32 - }, -/turf/simulated/floor/carpet, -/area/lawoffice) -"mPJ" = ( -/obj/item/modular_computer/laptop/preset/representative{ - pixel_y = 4 - }, -/obj/structure/table/wood{ - table_reinf = "wood" - }, -/obj/structure/sign/flag/nanotrasen/large/north, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Representative Office" - }, -/turf/simulated/floor/carpet/rubber, -/area/lawoffice/representative) -"mPY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/curtain/medical, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"mQI" = ( -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 2; - name = "Chapel Office"; - sortType = "Chapel Office" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"mRu" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"mSx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue, -/obj/effect/floor_decal/corner/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"mUs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/engineering) -"mUZ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/brig/processing) -"mVr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"mVD" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"mVU" = ( -/obj/machinery/button/switch/windowtint{ - id = "consular"; - pixel_x = -21; - pixel_y = -24 - }, -/obj/machinery/button/remote/airlock{ - dir = 1; - id = "consular_office"; - name = "consular door control"; - pixel_x = -13; - pixel_y = -25 - }, -/obj/machinery/button/remote/airlock{ - dir = 1; - id = "consular_office"; - name = "consular door bolts"; - pixel_x = -13; - pixel_y = -34; - specialfunctions = 4 - }, -/obj/structure/bed/stool/chair/office/bridge/generic{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular) -"mWk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/workshop) -"mWu" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "mining_east_outer"; - locked = 1; - name = "Mining External Access"; - req_access = list(10,13); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"mXs" = ( -/obj/machinery/papershredder, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"naj" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - icon_state = "map_on"; - target_pressure = 150; - use_power = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"naQ" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/bed/stool/chair/office/light, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"nbB" = ( -/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, -/area/security/brig) -"nbN" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/machinery/light, -/obj/structure/table/rack, -/obj/item/storage/briefcase/crimekit, -/obj/item/storage/briefcase/crimekit{ - pixel_y = 16 - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"ncB" = ( -/obj/structure/table/standard, -/obj/effect/decal/cleanable/dirt, -/obj/item/towel/random, -/obj/random/medical, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"ncH" = ( -/obj/structure/cable/green{ - 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/plating, -/area/maintenance/vault) -"ndP" = ( -/turf/simulated/floor/lino, -/area/security/forensics_office) -"ndR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/smartfridge/secure, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"nfX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/forensics_office) -"nhV" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"niw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"njB" = ( -/obj/random/junk, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"njF" = ( -/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 = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"njT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/marble, -/area/maintenance/cargo) -"nlu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Civilian (Main Level) Substation"; - req_one_access = list(11,24); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian_west) -"nlD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/splatter, -/turf/simulated/floor/tiled/freezer, -/area/maintenance/medbay) -"nmV" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet{ - name = "Evidence Closet" - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/investigations_storage) -"nnj" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"nnH" = ( -/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/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"noF" = ( -/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, -/area/security/nuke_storage) -"npO" = ( -/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/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"nqF" = ( -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/workshop) -"nrw" = ( -/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/lino, -/area/security/forensics_office) -"nsd" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "civilian_eva_airlock"; - name = "exterior access button"; - pixel_x = 25; - pixel_y = 25; - req_access = list(13) - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"nsW" = ( -/obj/machinery/optable{ - desc = "Used for advanced medical procedures, such as removing brains for cyborgification. Also used to repair unlawed synthetics."; - name = "Robotics Operating Table" - }, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics_cyborgification) -"ntc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"ntF" = ( -/obj/structure/filingcabinet{ - pixel_x = -7 - }, -/obj/structure/filingcabinet{ - pixel_x = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/item/device/radio/intercom/north, -/turf/simulated/floor/tiled/dark, -/area/security/forensics_office) -"nug" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"nvu" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/light, -/obj/item/device/taperecorder, -/turf/simulated/floor/tiled/dark, -/area/security/forensics_office) -"nxq" = ( -/obj/item/robot_parts/robot_suit, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"nyV" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/lawoffice/representative) -"nAn" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/vault) -"nCg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/library) -"nCJ" = ( -/obj/structure/bed/stool/padded/red, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/maintenance/vault) -"nFQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/vault) -"nGA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"nHe" = ( -/turf/simulated/wall, -/area/maintenance/vault) -"nIc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"nIf" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"nJe" = ( -/obj/structure/closet{ - name = "Patient's Closet" - }, -/obj/item/clothing/under/medical_gown/white, -/obj/item/clothing/shoes/sneakers, -/obj/random/junk, -/obj/effect/decal/cleanable/dirt, -/obj/random/loot, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"nJZ" = ( -/turf/simulated/floor/marble, -/area/maintenance/cargo) -"nKn" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/firealarm/north, -/obj/structure/table/standard, -/obj/item/paper_scanner, -/obj/item/paper_scanner, -/turf/simulated/floor/tiled/dark, -/area/security/forensics_office) -"nKv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled, -/area/maintenance/engineering) -"nKE" = ( -/obj/structure/table/rack, -/obj/random/loot, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"nLf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/noticeboard{ - pixel_x = -32 - }, -/obj/structure/bed/stool/chair/office/light, -/turf/simulated/floor/carpet/cyan, -/area/maintenance/medbay) -"nLD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"nLT" = ( -/turf/simulated/wall/r_wall, -/area/security/brig/control_room) -"nMW" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"nOq" = ( -/obj/structure/disposalpipe/segment, -/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 - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"nOy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/loot, -/turf/simulated/floor/tiled, -/area/maintenance/vault) -"nOE" = ( -/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/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"nQe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"nQp" = ( -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"nRq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"nTY" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA" - }, -/turf/simulated/wall/r_wall, -/area/engineering/engineering_hallway_main) -"nXe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/cabinet, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"nXX" = ( -/obj/effect/floor_decal/corner/grey, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"nZH" = ( -/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/assembly/robotics) -"oaQ" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/westright{ - dir = 2; - name = "Emergency Coolant"; - req_access = null; - req_one_access = list(11,24) - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"oaR" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/stone/marble, -/obj/item/material/kitchen/rollingpin{ - pixel_x = 6; - pixel_y = 17 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/condiment/sugar{ - pixel_x = 7; - pixel_y = 8 - }, -/obj/item/reagent_containers/cooking_container/board/bowl, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"odf" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "Robocompo" - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics/workshop) -"odl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/workshop) -"odr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/obj/machinery/disposal/small/east, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled, -/area/hydroponics) -"ofm" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/medical{ - name = "Room 2"; - req_one_access = list(12,66); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"ohn" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"ohv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/library) -"ohF" = ( -/obj/machinery/conveyor_switch/oneway, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/cargo) -"ohL" = ( -/obj/structure/table/rack{ - dir = 8; - }, -/obj/item/circuitboard/protolathe, -/obj/item/circuitboard/destructive_analyzer{ - pixel_y = 8 - }, -/turf/simulated/floor/plating, -/area/storage/tech) -"ois" = ( -/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/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"okn" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"oms" = ( -/obj/random/loot, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"omB" = ( -/turf/simulated/wall, -/area/security/brig/processing) -"ony" = ( -/obj/structure/cable/green{ - icon_state = "4-9" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"onC" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/chem_master/condimaster{ - pixel_y = 1 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"opv" = ( -/obj/structure/closet, -/obj/item/pickaxe{ - pixel_x = 5 - }, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"opW" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"oqn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"oqH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"orj" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"orw" = ( -/obj/structure/cable{ - d1 = 32; - d2 = 2; - icon_state = "11-2" - }, -/turf/simulated/open, -/area/maintenance/security_starboard) -"osb" = ( -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"otn" = ( -/obj/item/chess_piece/bishop, -/turf/simulated/floor/marble, -/area/maintenance/cargo) -"oud" = ( -/turf/simulated/wall, -/area/maintenance/substation/supply) -"ovf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "RnDShutters"; - name = "Research and Development"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/lab) -"ovg" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Starboard Ward"; - req_one_access = list(12,66); - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/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/plating, -/area/maintenance/medbay) -"ovG" = ( -/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/plating, -/area/maintenance/research_port) -"owz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"owA" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"oxt" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - use_power = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"oAO" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "2-5" - }, -/obj/machinery/door/airlock/maintenance{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"oDu" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/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/plating, -/area/maintenance/research_port) -"oDJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"oEG" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"oEL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/standard, -/obj/item/pen/crayon/rainbow, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"oGq" = ( -/obj/effect/shuttle_landmark/burglar/caverns, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"oGG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"oGJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/tile/wood, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"oHM" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"oIE" = ( -/obj/machinery/icecream_vat, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/crew_quarters/kitchen/freezer) -"oKJ" = ( -/obj/structure/table/wood/gamblingtable, -/turf/simulated/floor/lino, -/area/engineering/foyer) -"oLd" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/forensics_office) -"oMh" = ( -/obj/item/storage/box/fancy/crayons/chalkbox, -/obj/structure/table/wood/gamblingtable, -/turf/simulated/floor/lino, -/area/engineering/foyer) -"oNS" = ( -/turf/simulated/wall/r_wall, -/area/lawoffice/consular) -"oOw" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/table/glass, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"oQQ" = ( -/obj/structure/filingcabinet/filingcabinet{ - desc = "A large cabinet with drawers. There seems to be a layer of dust covering it." - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/ringer/north{ - department = "Forensic Lab"; - id = "investigation_ringer"; - req_access = list(1) - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/investigations_storage) -"oQU" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/lawoffice) -"oRx" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/assembly/robotics/workshop) -"oRI" = ( -/turf/simulated/wall, -/area/engineering/drone_fabrication) -"oSi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/maintenance/bar) -"oST" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"oUb" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"oUD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/target_stake, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"oUH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/forensics_laboratory) -"oVj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_research{ - name = "Exploratory Chemistry"; - req_access = list(7); - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"oWv" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"oXa" = ( -/obj/machinery/power/smes/buildable, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"oYi" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted/frosted, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"oZo" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"oZN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"pam" = ( -/obj/machinery/power/portgen/basic, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"pch" = ( -/turf/simulated/floor/plating, -/area/maintenance/workshop) -"pcx" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/lawoffice/consular) -"pcB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/kitchen) -"pdM" = ( -/obj/structure/table/standard, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"pdN" = ( -/obj/structure/table/wood, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/carpet, -/area/lawoffice/consular) -"peg" = ( -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"pfO" = ( -/obj/structure/noticeboard{ - dir = 8; - pixel_x = 32; - pixel_y = 2 - }, -/obj/machinery/papershredder, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/forensics_office) -"pgz" = ( -/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/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"pgB" = ( -/obj/structure/door_assembly{ - anchored = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"pgM" = ( -/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/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"phk" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/machinery/ringer/south{ - department = "Forensic Lab"; - id = "investigation_ringer"; - req_access = list(1) - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"phM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"pie" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"piz" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/eastleft{ - name = "Emergency Shower" - }, -/obj/machinery/shower{ - dir = 4; - pixel_y = -6 - }, -/turf/simulated/floor/tiled, -/area/medical/pharmacy) -"piW" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/lawoffice/representative) -"pjq" = ( -/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 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"pju" = ( -/obj/structure/cryofeed{ - dir = 2 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/main) -"pjv" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"pjA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/door/airlock/engineering{ - name = "Supply (Main Level) Substation"; - req_one_access = list(11,24); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/supply) -"pkV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"png" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"pnC" = ( -/obj/machinery/alarm/east, -/obj/structure/table/wood, -/obj/machinery/recharger{ - pixel_x = 8; - pixel_y = 15 - }, -/obj/item/clipboard{ - pixel_x = 1; - pixel_y = -2 - }, -/obj/item/pen/multi{ - }, -/turf/simulated/floor/wood, -/area/lawoffice/consular) -"pnI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/engineering) -"pnV" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"pok" = ( -/obj/structure/curtain/medical, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"ppp" = ( -/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{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"ppS" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/north, -/obj/structure/flora/pottedplant{ - icon_state = "plant-32" - }, -/turf/simulated/floor/wood, -/area/lawoffice/consular) -"pqu" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"prp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"prr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - id = "FT Op" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/forensics_office) -"prS" = ( -/obj/structure/table/wood, -/obj/random/loot, -/obj/item/material/ashtray/bronze, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt, -/turf/simulated/floor/plating, -/area/maintenance/library) -"prY" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - id_tag = "patient_unit_1"; - name = "Patient Bathroom"; - req_one_access = list(12,66); - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/maintenance/medbay) -"psk" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"psI" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"pxU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"pyd" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Starboard 2"; - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/medical/medbay2) -"pyu" = ( -/turf/simulated/wall, -/area/security/brig/control_room) -"pzj" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/stone/marble, -/obj/machinery/appliance/mixer/candy{ - pixel_y = 13 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"pzv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"pBN" = ( -/obj/structure/closet/bombcloset, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/telesci) -"pDF" = ( -/obj/structure/cable{ - 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/plating, -/area/maintenance/bar) -"pFt" = ( -/obj/structure/table/standard, -/obj/item/stock_parts/matter_bin, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"pFK" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"pFU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"pHY" = ( -/obj/machinery/requests_console/west{ - department = "Representative's Office"; - departmentType = 5 - }, -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "rep_office"; - name = "representative door bolts"; - pixel_x = -8; - pixel_y = 17; - specialfunctions = 4 - }, -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "rep_office"; - name = "representative door control"; - pixel_x = 1; - pixel_y = 17 - }, -/obj/machinery/button/switch/windowtint{ - id = "rep_inner"; - pixel_x = 9; - pixel_y = 16; - req_access = list(38) - }, -/obj/structure/table/wood{ - table_reinf = "wood" - }, -/turf/simulated/floor/carpet/rubber, -/area/lawoffice/representative) -"pIA" = ( -/obj/effect/floor_decal/corner/pink, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"pIK" = ( -/obj/machinery/conveyor{ - icon_state = "conveyor-broken" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"pKY" = ( -/obj/item/stack/tile/floor_white{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"pLP" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/brig) -"pQp" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"pQT" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/chemistry) -"pRZ" = ( -/obj/item/stack/tile/wood, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"pSX" = ( -/obj/structure/cable{ - 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/carpet, -/area/lawoffice) -"pUs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/machinery/meter{ - name = "Air supply" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"pUR" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/command{ - id_tag = "rep_office"; - name = "Representative Office"; - req_access = list(38); - dir = 1 - }, -/turf/simulated/floor/wood, -/area/lawoffice/representative) -"pXw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"pYZ" = ( -/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/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"pZo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"pZE" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/table/glass, -/obj/item/storage/box/sharps{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/box/sharps, -/obj/structure/noticeboard{ - dir = 8; - pixel_x = 32; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"pZF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"qaB" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"qba" = ( -/turf/simulated/wall, -/area/maintenance/atmos_control) -"qde" = ( -/obj/structure/table/reinforced/steel, -/obj/random/toolbox, -/obj/random/tool, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/workshop) -"qdR" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/workshop) -"qea" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"qgs" = ( -/obj/structure/table/rack, -/obj/random/loot, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"qgC" = ( -/obj/random/junk, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"qiE" = ( -/obj/machinery/conveyor{ - icon_state = "conveyor-broken" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"qkc" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/forensics_laboratory) -"qkU" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/requests_console/west{ - department = "Investigations"; - departmentType = 5 - }, -/turf/simulated/floor/lino, -/area/security/forensics_office) -"qlw" = ( -/obj/structure/bed/stool/chair/sofa/left/red{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/bar) -"qow" = ( -/obj/machinery/button/remote/blast_door{ - id = "messhallshutters"; - name = "Shutter control"; - pixel_x = 6; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/rat/brown, -/turf/simulated/floor/tiled, -/area/maintenance/vault) -"qoC" = ( -/obj/structure/bed/stool/padded/red, -/obj/structure/cable/green{ - icon_state = "4-10" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/vault) -"qqx" = ( -/obj/structure/table/standard, -/obj/item/storage/box/lights/mixed, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"qqz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"qqW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/machinery/meter{ - name = "Scrubbers" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"qrb" = ( -/obj/structure/closet/crate, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/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/item/stock_parts/manipulator, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/scanning_module, -/obj/item/stock_parts/scanning_module, -/obj/item/stock_parts/scanning_module, -/obj/item/stock_parts/console_screen, -/obj/item/stock_parts/console_screen, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/workshop) -"qre" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/wall, -/area/maintenance/cargo) -"qrt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_research{ - name = "Mech Bay"; - req_access = list(29); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"qrJ" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted/frosted, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"qrQ" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/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/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"qtu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"quy" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - name = "Psychiatry"; - sortType = "Psychiatry" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"qvD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/machinery/meter{ - name = "Scrubbers" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/purple/full{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/item/pickaxe, -/turf/simulated/floor/tiled, -/area/maintenance/security_starboard) -"qvR" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/cyan, -/area/rnd/rdoffice) -"qwE" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/rnd/misc_lab) -"qxd" = ( -/obj/item/chess_piece, -/turf/simulated/floor/marble, -/area/maintenance/cargo) -"qzm" = ( -/obj/structure/table/steel, -/obj/random/loot, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"qBC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"qCl" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/workshop) -"qCw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/chess_piece/black, -/turf/simulated/floor/marble, -/area/maintenance/cargo) -"qCZ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"qGK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/vault) -"qHj" = ( -/obj/machinery/door/window/northleft{ - name = "Nurse's Station" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet/cyan, -/area/maintenance/medbay) -"qHy" = ( -/obj/structure/coatrack, -/obj/structure/reagent_dispensers/peppertank/luminol{ - pixel_x = -31 - }, -/turf/simulated/floor/lino, -/area/security/forensics_office) -"qJD" = ( -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"qKU" = ( -/obj/item/chess_piece/knight, -/turf/simulated/floor/marble, -/area/maintenance/cargo) -"qKZ" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"qLi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"qLp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian_west) -"qLv" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"qMn" = ( -/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/plating, -/area/maintenance/medbay) -"qNm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"qNo" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"qNw" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular) -"qOc" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/structure/table/wood, -/obj/item/folder/blue{ - pixel_x = -8 - }, -/obj/item/folder/red{ - pixel_x = 7 - }, -/obj/item/folder/yellow, -/turf/simulated/floor/wood, -/area/lawoffice) -"qOq" = ( -/obj/machinery/conveyor{ - dir = 8; - icon_state = "conveyor-broken" - }, -/obj/machinery/door/firedoor, -/obj/structure/blocker/steel, -/obj/structure/plasticflaps/mining, -/turf/simulated/floor/plating, -/area/assembly/robotics/workshop) -"qOD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Supply (Main Level)"; - name_tag = "Supply (Main Level) Subgrid" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/supply) -"qOK" = ( -/obj/structure/sign/flag/dpra{ - pixel_y = 30 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"qOX" = ( -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/library) -"qPd" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/random/junk, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"qPN" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"qQD" = ( -/obj/structure/computerframe, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"qRE" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/phoron_scarce, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"qSv" = ( -/obj/machinery/alarm/north, -/obj/structure/closet, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"qSC" = ( -/turf/simulated/wall, -/area/lawoffice/consular) -"qWz" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"qWI" = ( -/obj/structure/reagent_dispensers/acid{ - pixel_x = -30; - pixel_y = 30 - }, -/turf/simulated/floor/carpet/rubber, -/area/assembly/robotics/workshop) -"qYj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/medical/surgerywing) -"qYo" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 8; - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - d1 = 16; - d2 = 0; - icon_state = "12-0" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/supply) -"qYu" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled, -/area/security/brig) -"qYx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/loot, -/obj/random/junk, -/obj/structure/closet, -/turf/simulated/floor/tiled, -/area/maintenance/cargo) -"qYU" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"qZF" = ( -/obj/machinery/constructable_frame/machine_frame, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/workshop) -"qZS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled, -/area/maintenance/engineering) -"raN" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/coatrack{ - pixel_x = 4 - }, -/turf/simulated/floor/tiled, -/area/security/forensics_laboratory) -"rbT" = ( -/obj/structure/closet, -/obj/random/loot, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"rcu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/plating, -/area/maintenance/medbay) -"rdt" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"rgq" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - 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/sign/patients_only{ - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"rgP" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - 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/maintenance{ - id_tag = "rep_back"; - req_access = list(38); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/lawoffice/representative) -"rhw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - 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/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"rkk" = ( -/obj/machinery/constructable_frame/temp_deco, -/obj/item/toy/figure/roboticist, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"rko" = ( -/obj/item/paper_scanner{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/structure/table/wood, -/turf/simulated/floor/wood, -/area/lawoffice) -"rkv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"rlA" = ( -/obj/structure/closet/crate/trashcart{ - opened = 1 - }, -/obj/item/shreddedp, -/obj/item/shreddedp, -/obj/item/shreddedp, -/obj/item/shreddedp, -/obj/item/shreddedp, -/obj/machinery/light/small{ - dir = 4 - }, -/mob/living/simple_animal/rat/irish, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"rlF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"rmm" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Port 1"; - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"rnc" = ( -/obj/structure/largecrate/animal/cow, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"rnR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/trashcart, -/obj/random/loot, -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"rpx" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"rpy" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"rqe" = ( -/obj/item/modular_computer/console/preset/security/investigations, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/ringer/east{ - department = "Forensic Lab"; - id = "investigation_ringer"; - req_access = list(1) - }, -/turf/simulated/floor/tiled/dark, -/area/security/forensics_office) -"rsz" = ( -/obj/item/chess_piece/bishop/black, -/turf/simulated/floor/marble, -/area/maintenance/cargo) -"rsL" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/window/reinforced, -/obj/structure/table/rack, -/obj/random/toolbox, -/obj/random/tool, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"rtt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/medical/cryo) -"rut" = ( -/obj/item/chess_piece/rook, -/turf/simulated/floor/marble, -/area/maintenance/cargo) -"ruA" = ( -/obj/item/chess_piece/bishop, -/turf/simulated/floor/marble/dark, -/area/maintenance/cargo) -"ruO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/synthesized_instrument/violin, -/obj/structure/table/wood{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"rvb" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/item/device/t_scanner, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"rxp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Autopsy Lab"; - req_access = list(12); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"rxH" = ( -/obj/effect/floor_decal/corner_wide/paleblue/diagonal, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/white, -/area/bridge) -"rxS" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/engineering) -"ryo" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/small/south, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Diplomatic Reception"; - network = list("Civilian Main","Rep_Office") - }, -/turf/simulated/floor/carpet, -/area/lawoffice) -"ryB" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/lawoffice/consular) -"rzp" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"rzD" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/workshop) -"rAy" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/obj/random/loot, -/obj/structure/closet, -/turf/simulated/floor/tiled, -/area/maintenance/cargo) -"rBa" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"rBJ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/workshop) -"rDW" = ( -/obj/machinery/atmospherics/omni/filter{ - tag_east = 1; - tag_north = 3; - tag_west = 2; - use_power = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/engineering) -"rEi" = ( -/obj/structure/table/reinforced/steel, -/obj/random/tool, -/obj/random/glowstick, -/obj/random/glowstick, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/workshop) -"rGp" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/mining{ - name = "Storeroom 1"; - req_one_access = list(12,31); - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/cargo) -"rGO" = ( -/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/starboard) -"rHm" = ( -/obj/structure/table/standard, -/obj/item/folder/purple, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"rHX" = ( -/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, -/area/security/nuke_storage) -"rJh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"rJi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"rJq" = ( -/obj/structure/table/steel, -/obj/machinery/requests_console/east{ - department = "Robotics"; - departmentType = 2; - name = "Robotics RC" - }, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"rJs" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/light_switch{ - pixel_x = 21; - pixel_y = 21 - }, -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/lawoffice) -"rKr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"rMJ" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - pixel_y = 7 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"rNi" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"rOC" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/simulated/floor/carpet/cyan, -/area/crew_quarters/heads/cryo) -"rOK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/random/pottedplant, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"rPZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Test Range"; - req_access = list(12); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"rTq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/workshop) -"rUQ" = ( -/obj/effect/floor_decal/corner/grey{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"rVd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/random/loot, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"rVl" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/ramp/bottom, -/area/maintenance/vault) -"rVo" = ( -/obj/structure/table/standard, -/obj/item/device/taperecorder, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"rWE" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/engineering) -"rWM" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"rXO" = ( -/obj/random/loot, -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"sad" = ( -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"saq" = ( -/obj/effect/floor_decal/industrial/loading/yellow, -/obj/machinery/alarm/east, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"saL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/standard, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"saU" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/chair/office/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"saW" = ( -/obj/structure/closet, -/obj/random/loot, -/turf/simulated/floor/tiled, -/area/maintenance/bar) -"sbf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"sbm" = ( -/obj/structure/table/wood, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"sby" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"sdh" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/table/glass, -/obj/item/folder/sec, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"sdW" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance{ - id_tag = "con_back"; - req_access = list(72); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/lawoffice/consular) -"sez" = ( -/obj/machinery/camera/network/civilian_main{ - c_tag = "Aft Corridor - Camera 3"; - dir = 4 - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"seD" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "CybGlass" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "CybGlass" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "CybGlass" - }, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/assembly/robotics_cyborgification) -"sfh" = ( -/obj/machinery/photocopier/faxmachine{ - anchored = 0; - department = "Representative's Office"; - pixel_y = 4 - }, -/obj/structure/table/wood{ - table_reinf = "wood" - }, -/turf/simulated/floor/carpet/rubber, -/area/lawoffice/representative) -"sig" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "CybGlass" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "CybGlass" - }, -/obj/structure/window/reinforced/polarized{ - id = "CybGlass" - }, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/assembly/robotics_cyborgification) -"siH" = ( -/obj/effect/decal/cleanable/flour, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"siM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"siO" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-21" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/wood, -/area/lawoffice/representative) -"sjg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"skc" = ( -/obj/structure/table/steel, -/obj/item/paper_scanner, -/turf/simulated/floor/carpet/rubber, -/area/rnd/misc_lab) -"slG" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"slK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastleft{ - name = "Kitchen" - }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "messhallshutters"; - name = "Mess hall shutters" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"slM" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/lawoffice) -"slV" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/cable/green, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "rep_inner" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "rep_inner" - }, -/obj/structure/window/reinforced/polarized{ - id = "rep_inner" - }, -/turf/simulated/floor/plating, -/area/lawoffice/representative) -"snu" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/main) -"snv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/standard, -/obj/item/storage/box/snack{ - desc = "A box full of snack foods. A label is attached that reads, 'Sorry about the microwaves.'"; - name = "corporate care package"; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/snack{ - desc = "A box full of snack foods. A label is attached that reads, 'Sorry about the microwaves.'"; - name = "corporate care package" - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"sny" = ( -/obj/machinery/power/apc/north, -/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/maintenance/substation/civilian_west) -"soq" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/misc_lab) -"sqh" = ( -/turf/simulated/wall, -/area/engineering/atmos/monitoring) -"sry" = ( -/obj/random/tech_supply, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"srX" = ( -/turf/simulated/wall, -/area/security/forensics_laboratory) -"ssY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/tile/wood, -/obj/machinery/alarm/west, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"stM" = ( -/obj/random/loot, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"swo" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"szC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/cabinet, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"sAC" = ( -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"sAE" = ( -/obj/structure/disposalpipe/segment, -/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/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"sCs" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"sCx" = ( -/mob/living/simple_animal/rat/gray, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"sDV" = ( -/turf/simulated/floor/carpet, -/area/lawoffice/consular) -"sEV" = ( -/obj/structure/bed/stool/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"sHd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/chess_piece, -/turf/simulated/floor/marble, -/area/maintenance/cargo) -"sHo" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"sHA" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"sJg" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "consular" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "consular" - }, -/obj/structure/window/reinforced/polarized{ - id = "consular" - }, -/turf/simulated/floor/plating, -/area/lawoffice/consular) -"sJu" = ( -/obj/machinery/alarm/west, -/turf/simulated/floor/lino, -/area/security/forensics_office) -"sJK" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled, -/area/medical/custodial_closet) -"sJR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner_wide/paleblue, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"sJS" = ( -/obj/machinery/computer/rdconsole/robotics, -/obj/machinery/alarm/west, -/obj/machinery/ringer/west{ - department = "Robotics"; - id = "robo_ringer"; - pixel_y = 28; - req_access = list(29) - }, -/turf/simulated/floor/carpet/rubber, -/area/assembly/robotics/workshop) -"sKS" = ( -/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/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"sNw" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/grass, -/area/hydroponics) -"sNG" = ( -/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/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"sOQ" = ( -/obj/structure/window/reinforced/polarized{ - id = "theater" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/maintenance/bar) -"sPj" = ( -/obj/machinery/conveyor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"sPY" = ( -/obj/structure/filingcabinet{ - pixel_x = 8 - }, -/obj/structure/filingcabinet{ - pixel_x = -7 - }, -/obj/machinery/status_display{ - pixel_y = 31 - }, -/turf/simulated/floor/carpet/rubber, -/area/lawoffice/representative) -"sQo" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/stone/marble, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/westright{ - name = "Display Window"; - req_access = list(28) - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "kitchenshutters01"; - name = "Kitchen Shutters" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"sQW" = ( -/obj/machinery/power/apc/north{ - is_critical = 1 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"sSo" = ( -/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/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"sSJ" = ( -/obj/structure/reagent_dispensers/cookingoil, -/obj/machinery/alarm/cold/east{ - alarm_id = "kitchen_freezer"; - req_one_access = list(24,11,28) - }, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/crew_quarters/kitchen/freezer) -"sSW" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "eng_fore_pump" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"sTA" = ( -/obj/structure/disposalpipe/down{ - dir = 8 - }, -/obj/structure/lattice/catwalk, -/turf/simulated/open, -/area/maintenance/medbay) -"sVA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/glass_research{ - name = "Robotics Lab"; - req_access = list(29); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"sYi" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/table/glass, -/obj/machinery/microscope{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/device/radio/intercom/north, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"sYI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"sZw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/purple/full, -/turf/simulated/floor/tiled, -/area/maintenance/security_starboard) -"taq" = ( -/obj/structure/extinguisher_cabinet/south, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/mob/living/simple_animal/rat/brown, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"tdj" = ( -/obj/structure/table/rack, -/obj/random/loot, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"tek" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/alarm/cold/north, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/forensics_morgue) -"tgD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/wall, -/area/maintenance/security_starboard) -"tgQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"thk" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(29); - 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/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/assembly/robotics_cyborgification) -"tid" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/crew_quarters/kitchen/freezer) -"tiv" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/closet/secure_closet/medical_para, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"tjb" = ( -/obj/item/chess_piece/queen/black, -/turf/simulated/floor/marble/dark, -/area/maintenance/cargo) -"tjF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"tlL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/chess_piece, -/turf/simulated/floor/marble, -/area/maintenance/cargo) -"tlV" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"tnQ" = ( -/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, -/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/maintenance/security_starboard) -"tow" = ( -/obj/structure/table/standard, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/random/toolbox, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"toT" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "5-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"tpv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"tpZ" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engineering_hallway_main) -"tst" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/mirror, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"tsx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"tti" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/assembly/robotics) -"ttC" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/chapel/main) -"tuN" = ( -/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/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"txe" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"txW" = ( -/obj/machinery/door/airlock/highsecurity{ - id_tag = "bunker1"; - name = "Command Teleporter Maintenance"; - req_access = list(19); - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"tzn" = ( -/obj/structure/curtain/medical, -/obj/random/loot, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"tzT" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "cargo_toup" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/quartermaster/storage) -"tzU" = ( -/turf/simulated/floor/plating, -/area/maintenance/vault) -"tBd" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"tBH" = ( -/obj/machinery/mecha_part_fabricator{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/assembly/robotics/workshop) -"tCf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"tCB" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - dir = 4; - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"tCH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - id = "FT Op" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/forensics_office) -"tCT" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"tDa" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - 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/machinery/computer/guestpass{ - pixel_x = -27; - pixel_y = -2 - }, -/turf/simulated/floor/wood, -/area/lawoffice) -"tEq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/cable{ - 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/plating, -/area/maintenance/medbay) -"tEu" = ( -/obj/item/stack/tile/floor_white{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"tFj" = ( -/obj/structure/closet, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"tGq" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/cable/green, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "consular" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "consular" - }, -/obj/structure/window/reinforced/polarized{ - id = "consular" - }, -/turf/simulated/floor/plating, -/area/lawoffice/consular) -"tHD" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/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/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"tHM" = ( -/obj/structure/table/standard, -/obj/machinery/button/switch/windowtint{ - id = "FT Op"; - pixel_x = 28; - pixel_y = 7 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/storage/slide_projector, -/turf/simulated/floor/tiled/dark, -/area/security/forensics_office) -"tII" = ( -/obj/structure/bookcase/libraryspawn/fiction, -/turf/simulated/floor/carpet, -/area/library) -"tIQ" = ( -/obj/machinery/vending/dinnerware/plastic{ - pixel_x = -4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/bar) -"tJU" = ( -/obj/effect/mazegen/module_loot/trash, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"tKo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/flour, -/obj/structure/table, -/obj/item/reagent_containers/cooking_container/board/bowl, -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"tKw" = ( -/obj/structure/table/steel, -/obj/random/loot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"tKz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/chess_piece/rook/black, -/turf/simulated/floor/marble/dark, -/area/maintenance/cargo) -"tKG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"tLI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"tLL" = ( -/obj/machinery/gibber, -/obj/machinery/door/window/eastleft, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/crew_quarters/kitchen/freezer) -"tOQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/forensics_laboratory) -"tPg" = ( -/obj/structure/bed/stool/chair/sofa/left/red{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/bar) -"tPt" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "CybGlass" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "CybGlass" - }, -/obj/structure/window/reinforced/polarized{ - id = "CybGlass" - }, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/assembly/robotics_cyborgification) -"tPQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"tQm" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"tTz" = ( -/obj/structure/table/standard, -/obj/effect/decal/cleanable/dirt, -/obj/random/loot, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"tTC" = ( -/obj/machinery/ringer/east{ - department = "Kitchen"; - id = "kitchen_ringer"; - req_access = list(28) - }, -/obj/structure/closet/secure_closet/freezer/meat, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/crew_quarters/kitchen/freezer) -"tUJ" = ( -/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/plating, -/area/maintenance/medbay) -"tVF" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"tXm" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/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 - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"tXo" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/rnd/misc_lab) -"tYo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/carpet, -/area/maintenance/bar) -"tZz" = ( -/obj/random/pottedplant, -/obj/machinery/recharger/wallcharger{ - pixel_y = 22 - }, -/turf/simulated/floor/lino, -/area/security/forensics_office) -"uaI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/maintenance/cargo) -"ubk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/glass/bucket, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"ubm" = ( -/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, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"ubB" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"ubL" = ( -/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/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"ubP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"ubY" = ( -/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" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"ucD" = ( -/obj/structure/table/standard, -/obj/item/storage/toolbox/electrical, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"ucY" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 1; - icon_state = "freezer" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/medical/cryo) -"udn" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"udz" = ( -/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/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"uea" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/vending/dinnerware, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"ueV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"ufU" = ( -/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/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"uho" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"uhH" = ( -/obj/machinery/photocopier/faxmachine{ - anchored = 0; - department = "Consular's Office"; - pixel_y = 4; - req_one_access = list(38,19,72) - }, -/obj/structure/table/wood, -/obj/item/storage/secure/safe{ - pixel_x = 33; - pixel_y = -3 - }, -/obj/machinery/firealarm/north, -/obj/machinery/button/remote/airlock{ - id = "con_back"; - name = "maintenance door bolts"; - pixel_x = -5; - pixel_y = 33; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/lawoffice/consular) -"uiD" = ( -/obj/random/junk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"uiJ" = ( -/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, -/area/security/brig/control_room) -"ujv" = ( -/obj/structure/disposalpipe/segment, -/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/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"ujU" = ( -/obj/structure/table/standard, -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"ulg" = ( -/obj/machinery/chemical_dispenser/coffee/full{ - pixel_x = 1; - pixel_y = 8; - spawn_cartridges = list(/obj/item/reagent_containers/chem_disp_cartridge/coffee,/obj/item/reagent_containers/chem_disp_cartridge/milk,/obj/item/reagent_containers/chem_disp_cartridge/cream,/obj/item/reagent_containers/chem_disp_cartridge/sugar) - }, -/obj/structure/table/wood, -/obj/machinery/firealarm/east{ - pixel_y = 6 - }, -/turf/simulated/floor/carpet, -/area/lawoffice) -"ulG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/vault) -"ump" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/forensics_office) -"uni" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"uoq" = ( -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"uox" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Physical Therapy"; - req_one_access = list(12,66); - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay) -"urT" = ( -/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/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"usi" = ( -/turf/simulated/floor/carpet/rubber, -/area/lawoffice/representative) -"usI" = ( -/obj/structure/table, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"usO" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/random/loot, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"utY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"uuz" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/reagent_containers/food/condiment/shaker/peppermill{ - pixel_x = 3; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/condiment/shaker/salt{ - pixel_x = -4; - pixel_y = 10 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/primary/aft) -"uvr" = ( -/obj/structure/table/rack, -/obj/random/loot, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/maintenance/cargo) -"uvI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"uwa" = ( -/turf/simulated/floor/carpet/rubber, -/area/maintenance/workshop) -"uwF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"uxI" = ( -/obj/machinery/door/firedoor, -/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" - }, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"uym" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"uyu" = ( -/obj/item/storage/secure/safe{ - pixel_x = 33; - pixel_y = 27 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/lawoffice/representative) -"uzs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"uzx" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"uAB" = ( -/obj/effect/floor_decal/industrial/loading/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/cargo) -"uAI" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"uBE" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"uFr" = ( -/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 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"uJK" = ( -/turf/simulated/wall, -/area/engineering/atmos/storage) -"uKO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet/cyan, -/area/maintenance/medbay) -"uLs" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"uLu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/standard, -/obj/random/toolbox, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"uLz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"uNI" = ( -/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/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"uNQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"uNT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 24 - }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/workshop) -"uOu" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"uRt" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"uRH" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/low/west, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/workshop) -"uRY" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "barshutters01"; - name = "Bar Shutters" - }, -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/item/glass_jar{ - desc = "A small empty jar that is mostly used for giving a tip."; - name = "tip jar" - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"uVj" = ( -/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 = 8; - icon_state = "2-8" - }, -/obj/random/pottedplant, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"uVs" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"uWB" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"uXj" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chess Arena"; - req_access = list(12); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"uXN" = ( -/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/tiled/dark, -/area/security/forensics_office) -"vak" = ( -/obj/structure/flora/ausbushes/leafybush{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/simulated/floor/grass, -/area/bridge) -"vap" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/storage) -"vaK" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/workshop) -"vdx" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/forensics_office) -"vdA" = ( -/obj/structure/door_assembly/multi_tile{ - anchored = 1; - dir = 2; - icon_state = "door_as_g0" - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/grille{ - }, -/obj/structure/blocker{ - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"veq" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"vfO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/window/reinforced, -/obj/structure/bed/stool/chair/remote/robot/prison, -/obj/machinery/door/window/brigdoor/northright{ - id = "Remote Chair"; - name = "Remote Chair"; - req_access = list(2) - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"vgi" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/medical/medbay2) -"vgA" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/machinery/dnaforensics{ - pixel_y = 1 - }, -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/reagent_dispensers/peppertank/luminol{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"vgB" = ( -/turf/simulated/wall/r_wall, -/area/assembly/chargebay) -"vgH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"vhg" = ( -/obj/structure/sign/directions/medical{ - dir = 1; - pixel_x = 32; - pixel_y = -4 - }, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = 32; - pixel_y = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"vhY" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"viQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"vjA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"vjG" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - dir = 4; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/freezer, -/area/maintenance/medbay) -"vkv" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/library) -"vmm" = ( -/turf/simulated/floor/tiled, -/area/security/training) -"vmC" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"vnf" = ( -/obj/machinery/camera/network/civilian_main{ - c_tag = "Aft Corridor - Camera 2"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"vnR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/flour, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/maintenance/vault) -"voO" = ( -/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" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - icon_state = "pipe-j2s"; - name = "Surgery"; - sortType = "Surgery" - }, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/medical/medbay2) -"voT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"vpt" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/obj/item/material/shard, -/turf/simulated/floor/plating, -/area/maintenance/library) -"vpV" = ( -/obj/machinery/status_display{ - pixel_y = -5 - }, -/turf/simulated/wall, -/area/assembly/chargebay) -"vsB" = ( -/obj/structure/closet/secure_closet/investigator, -/turf/simulated/floor/lino, -/area/security/forensics_office) -"vtA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/lawoffice/consular) -"vtZ" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled, -/area/security/nuke_storage) -"vuW" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/security/brig) -"vvS" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/carpet, -/area/lawoffice/consular) -"vxo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"vyK" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/flora/pottedplant{ - desc = "A tag with the name 'Harvey, Ph.D.' has been taped to the rim of this strange fern's plant pot."; - icon_state = "plant-35"; - name = "Harvey" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"vyU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/northleft{ - req_one_access = list(7,29) - }, -/obj/machinery/door/window/southright{ - req_one_access = list(7,29) - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "chamber_b"; - name = "Lockdown Shutter"; - opacity = 0 - }, -/turf/simulated/floor/reinforced, -/area/rnd/telesci) -"vAC" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"vBH" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/random/vendor, -/turf/simulated/floor/tiled, -/area/maintenance/cargo) -"vCz" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass, -/area/bridge) -"vEy" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/stone/marble, -/obj/machinery/reagentgrinder{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/material/knife{ - pixel_x = -9; - pixel_y = -14 - }, -/obj/item/storage/box/produce{ - pixel_x = 3; - pixel_y = -11 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"vFG" = ( -/turf/simulated/wall, -/area/security/training) -"vGn" = ( -/obj/structure/bed/stool/padded/red, -/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{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/investigations_storage) -"vGu" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"vHa" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/westleft{ - dir = 2; - name = "Emergency Coolant"; - req_access = null; - req_one_access = list(11,24) - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"vIq" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/grass, -/area/hydroponics) -"vIC" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/bed/stool/chair/office/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"vIU" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"vIW" = ( -/obj/machinery/button/switch/windowtint{ - id = "theater"; - pixel_x = 24; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/maintenance/bar) -"vJf" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "eng_fore_pump" - }, -/obj/machinery/airlock_sensor{ - id_tag = "eng_fore_sensor"; - master_tag = "eng_sl_eva_airlock"; - pixel_y = -24 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Fore Airlock"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"vJE" = ( -/obj/effect/floor_decal/corner/grey{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"vJL" = ( -/obj/machinery/conveyor{ - backwards = 1; - id = "Engie Delivery" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"vKR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/pottedplant{ - dead = 1; - icon_state = "plant-dead"; - name = "dead plant" - }, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"vLA" = ( -/obj/structure/disposalpipe/segment, -/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/plating, -/area/maintenance/vault) -"vMv" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "eng_fore_airlock"; - name = "exterior access button"; - pixel_x = -26; - req_access = list(10,13) - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Fore Airlock Exterior 2"; - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"vNh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/atmos_control) -"vNp" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/misc_lab) -"vNK" = ( -/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 = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"vOd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/atmos_control) -"vOq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"vOs" = ( -/obj/machinery/door/window/brigdoor/southright{ - dir = 1; - req_access = list(56) - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/mob/living/silicon/robot/drone/construction/matriarch, -/turf/simulated/floor/carpet/rubber, -/area/engineering/drone_fabrication) -"vPm" = ( -/obj/effect/decal/cleanable/dirt, -/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/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"vPv" = ( -/obj/structure/disposalpipe/up, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d1 = 16; - d2 = 0; - icon_state = "12-0" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"vRw" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"vRT" = ( -/obj/structure/table/rack, -/obj/random/loot, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"vSb" = ( -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"vTy" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/forensics_office) -"vTE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/chess_piece/black, -/turf/simulated/floor/marble/dark, -/area/maintenance/cargo) -"vTW" = ( -/obj/structure/closet/crate, -/obj/random/loot, -/obj/random/junk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/cargo) -"vVT" = ( -/turf/simulated/wall, -/area/assembly/robotics/workshop) -"vWF" = ( -/obj/structure/table/standard, -/obj/item/storage/box/snack{ - desc = "A box full of snack foods. A label is attached that reads, 'Sorry about the microwaves.'"; - name = "corporate care package" - }, -/turf/simulated/floor/carpet, -/area/quartermaster/break_room) -"vXj" = ( -/obj/item/chess_piece, -/turf/simulated/floor/marble/dark, -/area/maintenance/cargo) -"vXD" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/lawoffice) -"vYh" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/library) -"vYB" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/tiled/ramp, -/area/hallway/primary/aft) -"vZF" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/investigations_storage) -"wbf" = ( -/obj/structure/cable{ - 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{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"wbX" = ( -/obj/structure/table/reinforced/steel, -/obj/item/storage/bag/circuits/basic, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/workshop) -"wcO" = ( -/obj/structure/table/wood, -/obj/item/material/ashtray/bronze, -/turf/simulated/floor/carpet, -/area/crew_quarters/bar) -"wdj" = ( -/obj/structure/cable/green{ - icon_state = "1-6" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"wdB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/radial_floodlight, -/turf/simulated/floor/plating, -/area/engineering/storage_hard) -"wee" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"weJ" = ( -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"wfx" = ( -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "rep_office"; - name = "Representative door control"; - pixel_x = 24; - pixel_y = -23; - req_access = list(38) - }, -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "consular_office"; - name = "Consular door control"; - pixel_x = 24; - pixel_y = -33; - req_access = list(72) - }, -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/lawoffice) -"wfI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/lipstick/random, -/obj/item/lipstick/random, -/obj/item/lipstick/random, -/obj/item/haircomb/random, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"whu" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner_wide/mauve/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"whG" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/workshop) -"whV" = ( -/obj/structure/table/wood/gamblingtable, -/obj/item/storage/slide_projector, -/turf/simulated/floor/lino, -/area/engineering/foyer) -"wil" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/closet/secure_closet/kitchen_cabinet/standard, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"wiQ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/atm{ - pixel_x = 32; - pixel_y = -3 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"wje" = ( -/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 = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"wkb" = ( -/obj/machinery/vending/snack, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"wkn" = ( -/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/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/maintenance/security_starboard) -"wlr" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/assembly/robotics/workshop) -"wlZ" = ( -/obj/structure/ladder/up{ - pixel_y = 16 - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"wmQ" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"wnj" = ( -/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/effect/floor_decal/corner/lime/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"won" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"woI" = ( -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/crew_quarters/kitchen/freezer) -"woU" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/morgue{ - pixel_y = -1 - }, -/obj/machinery/ringer/west{ - department = "Robotics"; - id = "robo_ringer"; - pixel_y = 6; - req_access = list(29) - }, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics_cyborgification) -"wpR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - 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/carpet, -/area/lawoffice) -"wra" = ( -/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/plating, -/area/maintenance/vault) -"wsP" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "CybGlass" - }, -/obj/structure/window/reinforced/polarized{ - id = "CybGlass" - }, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/assembly/robotics_cyborgification) -"wtZ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"wvm" = ( -/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 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"wwF" = ( -/obj/machinery/optable{ - name = "Autopsy Table" - }, -/obj/effect/decal/warning_stripes, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/forensics_morgue) -"wwP" = ( -/obj/structure/table/reinforced/steel, -/obj/random/contraband, -/obj/random/contraband, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/workshop) -"wxq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/random/medical, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"wxx" = ( -/obj/effect/map_effect/window_spawner/reinforced/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"wzc" = ( -/obj/structure/table/steel, -/obj/item/device/mmi/digital/posibrain{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/device/mmi/digital/posibrain{ - pixel_x = 11; - pixel_y = 3 - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"wzv" = ( -/turf/simulated/wall, -/area/lawoffice/representative) -"wzO" = ( -/obj/structure/closet/walllocker/firecloset{ - pixel_x = -30 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"wzR" = ( -/obj/structure/table/standard, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"wAi" = ( -/obj/item/chess_piece/bishop/black, -/turf/simulated/floor/marble/dark, -/area/maintenance/cargo) -"wAF" = ( -/obj/structure/cable{ - 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/plating, -/area/maintenance/medbay) -"wDp" = ( -/turf/simulated/wall, -/area/assembly/robotics_cyborgification) -"wEn" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/freezer, -/area/maintenance/medbay) -"wHH" = ( -/turf/simulated/floor/tiled, -/area/security/forensics_laboratory) -"wIa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"wIn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"wJm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/lawoffice/consular) -"wLl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall, -/area/medical/surgerywing) -"wLt" = ( -/turf/simulated/wall/r_wall, -/area/security/brig/processing) -"wOW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"wQC" = ( -/obj/machinery/conveyor{ - backwards = 10; - dir = 5; - id = null - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"wQX" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"wRS" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/newscaster/north, -/obj/structure/coatrack, -/turf/simulated/floor/wood, -/area/lawoffice/consular) -"wRZ" = ( -/obj/structure/table/wood{ - table_reinf = "wood" - }, -/obj/item/stamp/denied{ - pixel_x = 1; - pixel_y = 1 - }, -/obj/item/stamp{ - name = "representative stamp"; - pixel_x = -8; - pixel_y = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/lawoffice/representative) -"wVv" = ( -/obj/structure/bed/stool/chair/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"wZe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/obj/machinery/alarm/west, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"wZf" = ( -/obj/structure/sign/drop{ - pixel_x = 32 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"wZD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"xaB" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/structure/sign/nosmoking_1{ - pixel_y = -32 - }, -/obj/effect/floor_decal/corner_wide/mauve/full, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"xbS" = ( -/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/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"xcr" = ( -/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/machinery/door/airlock/glass_research{ - name = "Research and Development"; - req_access = list(7); - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"xcZ" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/table/glass, -/obj/machinery/requests_console/north{ - department = "Forensics Lab"; - departmentType = 5 - }, -/obj/item/paper_scanner{ - pixel_x = -8 - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"xdi" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/disposalpipe/tagger{ - dir = 4; - name = "Surgery"; - sort_tag = "Surgery" - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/medical/icu) -"xdT" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"xeb" = ( -/turf/simulated/floor/marble/dark, -/area/maintenance/cargo) -"xfy" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/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/item/device/radio/intercom/south, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"xge" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(12,66); - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"xhe" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/structure/cable/green{ - 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/plating, -/area/maintenance/vault) -"xhA" = ( -/obj/machinery/constructable_frame/temp_deco, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/research_port) -"xhU" = ( -/obj/structure/bed/stool/padded/red, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"xin" = ( -/obj/machinery/firealarm/west, -/turf/simulated/floor/reinforced, -/area/security/nuke_storage) -"xjD" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"xjS" = ( -/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" - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_hallway_main) -"xkB" = ( -/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/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"xlC" = ( -/obj/machinery/optable{ - name = "Autopsy Table" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"xmq" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"xmv" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"xmZ" = ( -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - req_access = list(28); - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/crew_quarters/kitchen/freezer) -"xnn" = ( -/turf/simulated/floor/tiled, -/area/security/brig/control_room) -"xnZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/borosilicate/reinforced{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/chemistry) -"xoG" = ( -/obj/structure/table/standard, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/carpet/cyan, -/area/maintenance/medbay) -"xoJ" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"xoV" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"xpb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/morgue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"xpf" = ( -/obj/machinery/door/airlock/engineering{ - name = "Medbay Substation"; - req_one_access = list(11,24); - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/medical) -"xqw" = ( -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/maintenance/library) -"xsS" = ( -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "rep_back"; - name = "maintenance door bolts"; - pixel_x = 23; - pixel_y = 6; - specialfunctions = 4 - }, -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/lawoffice/representative) -"xuu" = ( -/obj/machinery/constructable_frame/machine_frame, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/workshop) -"xuR" = ( -/obj/structure/table/standard, -/obj/item/clipboard, -/obj/item/pen/red{ - pixel_x = 2; - pixel_y = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"xwD" = ( -/obj/machinery/firealarm/west, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"xxd" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/table/glass, -/obj/item/storage/lockbox/vials/forensic, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = 15; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"xxw" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Gardener" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"xxH" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"xyO" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/reinforced, -/area/assembly/robotics) -"xzX" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/table/glass, -/obj/item/storage/box/slides{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/box/syringes, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"xAe" = ( -/obj/structure/table/reinforced/steel, -/obj/random/toolbox, -/obj/random/tool, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/workshop) -"xBh" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/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/door/airlock/maintenance{ - req_one_access = list(12,38,72); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/lawoffice) -"xBx" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/turf/simulated/floor/tiled/white, -/area/security/forensics_laboratory) -"xBz" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"xDh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"xDq" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"xDx" = ( -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 2; - name = "Library"; - sortType = "Library" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"xEE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"xFo" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/obj/item/storage/bag/crystal, -/turf/simulated/floor/tiled, -/area/maintenance/security_starboard) -"xGz" = ( -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"xGF" = ( -/obj/machinery/camera/network/civilian_main{ - c_tag = "Port Corridor - Camera 1" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"xHy" = ( -/obj/structure/closet/crate/freezer, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/turf/simulated/floor/tiled/freezer, -/area/maintenance/medbay) -"xJi" = ( -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "eng_fore_airlock"; - name = "Engineering Fore Airlock Console"; - pixel_x = -1; - pixel_y = 25; - req_access = list(13,10); - tag_airpump = "eng_fore_pump"; - tag_chamber_sensor = "eng_fore_sensor"; - tag_exterior_door = "eng_fore_outer"; - tag_interior_door = "eng_fore_inner" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"xJo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/random/loot, -/turf/simulated/floor/wood, -/area/maintenance/bar) -"xJp" = ( -/obj/effect/floor_decal/corner_wide/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"xJq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"xKm" = ( -/obj/machinery/r_n_d/circuit_imprinter{ - dir = 1; - product_offset = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/assembly/robotics/workshop) -"xKP" = ( -/obj/structure/table/rack, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/turf/simulated/floor/tiled/asteroid/airless, -/area/outpost/mining_main/eva) -"xLG" = ( -/obj/item/chess_piece/king/black, -/turf/simulated/floor/marble, -/area/maintenance/cargo) -"xLH" = ( -/obj/structure/reagent_dispensers/extinguisher, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"xLK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"xMi" = ( -/obj/structure/cable/green{ - icon_state = "2-9" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"xNV" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"xOq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"xOt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/forensics_morgue) -"xOM" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/cable/green, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "consular" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "consular" - }, -/obj/structure/window/reinforced/polarized{ - id = "consular" - }, -/turf/simulated/floor/plating, -/area/lawoffice/consular) -"xOZ" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/small/north, -/turf/simulated/floor/tiled, -/area/security/lobby) -"xQD" = ( -/obj/structure/door_assembly/door_assembly_generic{ - anchored = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"xRc" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/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/white, -/area/crew_quarters/kitchen) -"xSa" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/wall, -/area/security/training) -"xSs" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen/multi{ - pixel_x = -1; - pixel_y = 2 - }, -/turf/simulated/floor/wood, -/area/lawoffice) -"xTd" = ( -/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/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(12,31); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"xTH" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/appliance/cooker/stove, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"xUe" = ( -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/main) -"xVv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"yaL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/investigations_storage) -"ych" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"yck" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/down{ - dir = 1 - }, -/turf/simulated/open, -/area/maintenance/security_starboard) -"ydb" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/security/brig) -"ydw" = ( -/obj/random/junk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"yfc" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/item/device/radio/intercom/north, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/crew_quarters/kitchen/freezer) -"yfl" = ( -/obj/structure/table/standard, -/obj/item/folder/sec, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/item/device/hand_labeler{ - pixel_x = 16 - }, -/obj/machinery/alarm/north{ - target_temperature = 278 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/security/investigations_storage) -"yft" = ( -/obj/structure/table/steel, -/obj/item/tape_roll{ - pixel_y = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/assembly/robotics/workshop) -"yfB" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/closet/chefcloset{ - desc = "It's a storage unit for foodservice equipment." - }, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/shoes/laceup, -/obj/item/device/quikpay{ - pixel_y = 8 - }, -/obj/item/clothing/gloves/latex/nitrile/tajara, -/obj/item/clothing/gloves/latex/nitrile/tajara, -/obj/item/clothing/gloves/latex/nitrile/unathi, -/obj/item/clothing/gloves/latex/nitrile/unathi, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"yfI" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "eng_fore_airlock"; - name = "exterior access button"; - pixel_x = 24; - req_access = list(10,13) - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"yiF" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced, -/turf/simulated/floor/wood, -/area/library) -"yiH" = ( -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_x = 7 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/button/remote/airlock{ - id = "investdoor"; - name = "Office Door"; - pixel_x = -6; - pixel_y = 8; - req_access = list(4) - }, -/obj/item/pen{ - pixel_x = -4 - }, -/obj/item/pen/red, -/turf/simulated/floor/tiled/dark, -/area/security/forensics_office) -"ykb" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/button/switch/windowtint{ - id = "CybGlass"; - pixel_x = 8; - pixel_y = -22 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics_cyborgification) -"ykd" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"ylS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/vault) -"ymb" = ( -/obj/structure/bed/stool/chair/sofa/right/red{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/bar) - -(1,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(2,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(3,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(4,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(5,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(6,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(7,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(8,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(9,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(10,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(11,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(12,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(13,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(14,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(15,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(16,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -asq -aaa -asq -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(17,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ahi -ahi -ahi -ahi -ahi -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(18,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -asq -ahi -avp -awV -avp -ahi -asq -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(19,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -ahi -avp -avp -avp -ahi -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(20,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aaa -asq -ahi -avp -avp -avp -ahi -asq -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(21,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -atJ -avq -avq -avq -aAl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(22,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -avr -avr -avr -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(23,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -avr -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(24,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aox -aab -avr -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(25,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aab -aab -aab -aox -asq -avr -avr -aab -aox -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(26,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aox -aox -avr -avr -avr -asq -aox -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(27,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aox -aox -aox -aox -asq -avr -avr -avr -aox -aox -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(28,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aox -aox -aox -avr -avr -avr -asq -aox -aox -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(29,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aox -asq -avr -avr -avr -aox -aox -aox -aox -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(30,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -avr -avr -asq -aox -aox -aox -aox -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(31,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -avr -aab -aox -aox -aox -aox -aox -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(32,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -avr -aab -aab -aab -aox -aab -aab -aab -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(33,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -avr -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(34,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -avr -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(35,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -avr -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(36,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -avr -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(37,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -avr -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(38,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -avr -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aox -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(39,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -avr -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aox -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(40,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -avr -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(41,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -avr -avr -avr -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(42,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -alk -alk -alk -alk -alk -alk -alk -alk -awW -alk -alk -alk -alk -alk -alk -alk -alk -alk -alk -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(43,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -alk -vHa -tKG -anu -aqX -asr -atK -avs -awX -avt -atK -aBG -aDA -aFo -aHp -anw -aKJ -aMv -alk -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(44,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -alk -alk -oaQ -tKG -anu -anu -asr -atL -avt -awY -avt -atL -aBH -anu -aFp -aHq -aIR -anu -aMw -alk -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(45,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -alk -amm -hxb -anu -anu -anu -asr -atM -avu -awZ -ayK -atM -aBH -ayN -apQ -ara -aIS -aKK -aMw -alk -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -acu -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(46,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -ahi -ahi -ahi -ahi -ahi -ahi -ahi -anv -anu -anu -anu -asr -atN -avv -axa -ayL -alk -aBI -aDB -aFq -ara -aIT -aKL -aMx -alk -alk -alk -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(47,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -ahi -ahU -aiP -xwD -akk -ajC -ahi -anu -anu -anu -anu -ass -atO -avw -axb -ayM -aAm -aBJ -aDC -aFp -aHr -aIR -aKM -aMy -aOp -aPZ -alk -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(48,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -ahi -luk -aiQ -akl -ajD -all -amn -anw -aoy -apN -aqY -aqY -aqY -apP -axc -ayN -aAn -aqY -aDD -apQ -ara -aIU -aKN -aMz -aOq -aQa -alk -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(49,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aab -aab -aaa -aaa -ahi -ahW -aiR -fUO -akm -alm -amo -anx -aoz -apO -anu -anu -anu -avx -axd -apQ -anu -anu -aoz -aFr -aHs -aIV -anu -anu -alk -alk -alk -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aab -aab -aab -aab -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(50,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aab -aab -aaa -aaa -ahi -luk -aiS -ljA -akn -aln -amo -any -aoA -apP -aqZ -ast -atP -atP -axe -ayO -atP -atP -aDE -atP -aHt -aIW -anu -aMA -alk -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(51,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -ahi -ahX -aiT -ajE -ako -alo -ahi -anz -aoB -apQ -ara -asu -atQ -avy -axf -ayP -aAo -aBK -aDF -anu -anu -kzA -azQ -aMB -alk -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(52,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -ahj -ahj -aiU -ahj -akp -ahj -aiU -anA -anA -anA -arb -anI -atR -avz -axg -avz -aAp -alk -aDG -aFs -aFs -alk -alk -alk -alk -ekr -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(53,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -oRI -ahY -aiV -ajF -akq -aiV -vOs -anA -aoC -apR -arc -anI -atS -avA -axh -avA -aAq -aBL -aBL -aFt -aBL -aBL -aKP -aMC -aOr -ekr -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(54,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -oRI -ahZ -aiW -ajG -akr -aiW -ahZ -anA -aoD -eux -ard -anI -atT -avB -axi -ayQ -aAr -aBL -aDH -aFu -atY -aBL -aKQ -aMD -aAZ -ekr -aaa -aab -aab -aab -aab -aox -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(55,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -aab -aab -aab -oRI -aia -aiX -ajH -aks -aiX -aia -anA -aoE -apS -are -anI -atU -avC -axj -ayR -aAs -aBL -aDI -aFv -aHv -aBL -aKR -aMC -aOt -ekr -aaa -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(56,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aox -aox -aox -aab -aab -aab -oRI -aib -aiV -aiV -akr -aiV -amp -anA -aoF -apT -arf -asv -atV -atV -axk -anC -aAt -aBL -aDJ -aFw -aHw -aBL -aKS -aME -mCz -ekr -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(57,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aox -aox -aox -aox -mdx -xNV -yfI -oRI -aic -aiY -ajJ -aku -aiY -aic -anA -aoG -apU -arg -anI -atW -avD -axl -ayS -aAu -aBL -aBL -aFx -aBL -aBL -ekr -ekr -aOu -ekr -bbs -bbs -bbs -bbs -bbs -bbs -bbs -bbs -bbs -bbs -bbs -bbs -bbs -bbs -bbs -bbs -bbs -bbs -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(58,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aox -aox -aox -aox -aox -qba -gFM -qba -oRI -oRI -oRI -oRI -akv -oRI -oRI -anA -aoH -anA -arh -asw -atX -avE -axm -ayT -avE -asw -aDK -aFy -aHx -nTY -aKU -aMF -njF -aQb -aRP -aUW -pgM -aVY -aXH -aYT -ban -aYT -aYT -aYT -aYT -aYT -bil -bjG -aKU -aKW -aMG -bbs -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(59,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aox -aox -aox -aox -aox -aox -aox -qba -hfd -vJf -qba -iZx -naj -udn -akw -qba -amq -kJP -kJP -apV -ari -asx -asx -avF -axn -ayU -asx -aBM -aDL -aFz -aDL -aIX -aKV -aKV -aOw -aQc -aRQ -cXY -bbs -bbs -aXI -bbs -bbs -bbs -bbs -bbs -bbs -bbs -bbs -bjH -aYT -aYT -bnr -bbs -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(60,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aox -aox -aox -aox -aox -aox -aox -qba -xJi -mqp -dCk -aie -aiZ -cmp -akx -alq -xjS -xjS -aoI -xjS -arj -asy -amr -avG -axo -ayV -aAv -aBN -aDM -aFA -aHy -aIY -aKW -aMG -bcY -bcY -bcY -bcY -bau -aVZ -aXJ -aYU -bao -bau -bcK -beq -bfG -bhe -bbs -bbs -bbs -bbs -bns -bbs -aaa -aab -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(61,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aox -aox -aox -aox -aox -aox -aox -qba -iNI -sSW -qba -aid -kRK -ajL -ajL -ajL -ajL -ajL -ajL -ajL -ajL -ajL -kJP -avH -lTg -ayW -coP -aBO -aDN -aDN -aHz -coP -coP -aKT -aKT -aKU -tdj -aKU -bau -aWa -aXK -aYV -bap -bau -bcL -bcN -bcN -bcN -bcN -bjI -bkC -bbs -bnt -bbs -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(62,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -aox -aox -aox -aox -aox -qba -gFM -qba -qba -lyh -kRK -ajL -ant -ant -ams -anD -aoJ -apW -ark -ajL -atZ -avH -lTg -ayW -aAw -aBP -aDO -aFB -aHA -aIZ -coP -ikR -aMH -aMH -aMH -aMH -aUX -aWb -aXL -aYW -baq -bbp -bcM -ber -bfH -bfH -bim -bjJ -bkD -bbs -bnt -bbs -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -bbs -bbs -bbs -bbs -bbs -bbs -bbs -bbs -bbs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(63,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aox -aox -aox -aox -aox -xmq -tVF -vMv -qba -aig -kRK -ajL -ant -qRE -amt -anE -aoK -apX -arl -asz -aua -avI -axp -kGA -aAx -mhV -aBQ -aBQ -aBQ -aJa -coP -aMH -aMH -aQd -aMH -aTi -aMH -aWc -aXM -jTV -bar -bau -bcN -bes -bfI -bfI -bin -bcN -bkD -bbs -bnt -bbs -bbs -aab -aab -aab -acu -aab -aab -aab -aab -aab -bbs -bFT -bGQ -aKW -aMG -bFT -bGQ -bcX -bbs -bbs -bbs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(64,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aox -aox -aox -aox -aox -aab -aab -aab -tCT -aid -kRK -ajL -akz -akz -amu -anF -wdB -apY -anE -asA -aub -avH -lTg -ayW -aAy -mvJ -aBQ -aBQ -aBQ -aJb -coP -aMI -aOx -aQe -aRR -aQe -aMH -aWd -aXN -hxQ -bas -bau -aeB -bcN -bcN -bcN -bcN -bcN -bkE -bbs -bnt -aKU -bbs -aab -aab -aaa -aab -aab -aab -aab -aab -aab -bbs -bCm -bbt -bbt -bbt -bbt -bbt -bbt -bbt -bJt -bbs -aox -aox -aox -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -oGq -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(65,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -acu -aab -aox -aox -aox -aox -aox -aab -aab -aab -hkL -cmp -tLI -ajL -akz -akz -amv -pam -gaR -apZ -arm -ajL -auc -avH -axq -ayX -aAz -aBR -aBQ -aBQ -aHB -aJc -coP -aMJ -aOy -aQf -aRS -aTj -aMH -aWe -aXO -jTV -bat -bau -bcP -bet -bfJ -bhf -bio -bio -bau -bbs -bnt -aKU -bbs -aab -aab -aox -aab -aab -aab -aab -aab -aab -bBu -beG -bcY -bcY -bcY -bcY -bcY -bcY -dKN -bJu -bbs -aox -aox -aox -aox -aox -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(66,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aox -aox -aox -aox -aox -aox -aab -aab -hUU -lmd -xDh -ajL -akA -akA -amw -anG -anG -aqa -arn -ajL -aud -avH -lTg -ayW -aAz -aBS -aBQ -aFC -aHC -aJd -coP -aMK -aOy -aQg -aRT -aTk -aMH -aWf -aXP -aYX -bau -bau -bau -bau -bau -bau -bau -bau -bau -bbs -bnu -aKW -bbs -aab -aab -aab -aab -aab -aab -aab -aab -aab -bBv -beG -bEc -bcY -bcY -bcY -bcY -bcY -tJU -beG -bbs -aox -aox -aox -aox -aox -aox -aox -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(67,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aox -aox -aox -aox -aox -aox -aab -aab -jlG -fpS -jCe -ajL -akA -akA -adn -anH -aoL -aoL -aoL -ajL -aue -avJ -axr -ayY -aAA -aBS -aDP -aFD -aHD -aJe -coP -aML -aOz -aQh -aRU -aTl -aUY -aWg -aXQ -aYY -aVq -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bbs -bnt -aMG -bbs -aab -aab -aab -aab -aab -aab -aab -aab -aab -bBv -beG -bcY -bcY -bcY -bcY -bcY -bcY -bcY -beG -bbs -bbs -aox -aox -aox -aox -aox -aox -aox -aox -aox -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(68,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aox -aox -aox -aox -aox -aox -aab -aab -qba -qba -ajb -qba -qba -qba -ahk -tpZ -tpZ -tpZ -tpZ -tpZ -tpZ -avK -axs -ayZ -coP -aBT -aBQ -aBQ -aHE -aJe -coP -aMM -aOy -aQe -aRV -aTm -aUZ -aWs -aXR -aYZ -aVq -aaa -bcQ -bcQ -bcQ -bcQ -bcQ -aaa -aaa -bbs -bnt -aMG -bbs -aab -aab -aab -aab -aab -bwM -bym -bGe -aab -bBv -beG -bcY -bcY -bcY -bcY -bcY -bcY -bEc -beG -bFT -bbs -aox -bbs -bbs -bbs -bbs -bbs -aox -aox -aox -aox -aox -aox -aox -aox -aox -aox -aox -aox -aox -aaa -aaa -aaa -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(69,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aox -aox -aaa -aaa -aox -aox -aab -aox -qba -eFC -aja -vOd -cXG -aih -ahk -anJ -anJ -anJ -anJ -anJ -tpZ -avL -axt -aza -aAy -aBU -aBQ -aBQ -aHE -aJf -coP -aMN -aOA -aQi -aRW -fzd -aVa -aWh -aXR -aZg -aVq -aaa -bcQ -beu -bfK -bhg -bcQ -aaa -aaa -bbs -bnt -bbs -bbs -aab -aab -aab -aab -aab -bwN -byn -bzA -aab -bBv -beG -bcY -bcY -bcY -bcY -bcY -bcY -bcY -beG -bqh -bbs -bbs -bbs -bFT -bqh -aMG -bbs -bbs -bbs -bbs -bbs -bbs -bbs -bbs -aox -aox -aox -aox -aox -aox -aox -aaa -aaa -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(70,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -aab -aab -aox -qba -aii -aja -vNh -vOd -aih -ahk -anJ -anJ -anJ -anJ -anJ -tpZ -avM -lTg -azb -aAA -aBV -aDQ -aFE -aHE -aJg -coP -aMO -aOB -aQj -aRX -aTn -aVb -aWi -aXS -aZg -aVq -aaa -bcQ -bev -bfL -bfL -bcQ -aaa -aaa -bbs -bnt -bbs -aox -aox -aox -aox -aox -bbs -fGk -byo -eOZ -aab -bBw -beG -ahT -ahT -ahT -ahT -ahT -ahT -ahT -beG -bcY -bcY -bPt -beC -bcY -bcY -bcY -bcY -bcY -bcY -bcY -bcY -bqh -bFT -bbs -bbs -bbs -bbs -bbs -bbs -bbs -bbs -aox -aaa -aab -aaa -aab -aab -aab -aab -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(71,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aox -qba -aij -aja -aid -vOd -aik -ahk -anJ -anJ -anJ -anJ -anJ -tpZ -avM -lTg -azc -coP -coP -coP -aFF -aHG -coP -coP -aMP -aOC -aQk -aRY -aTo -aMH -aWj -aXR -aZa -aVq -bbq -bcQ -bew -bfM -bhh -bcQ -bbq -aaa -bbs -kcG -bbs -aox -aox -aox -aox -aox -bbs -bwO -byp -bbs -aaR -bbs -bCn -ahT -ama -aml -ank -asa -aYB -ahT -aOv -cXM -bcY -bbs -bbs -bbs -bbs -bbs -vmC -hEd -bfS -bbs -bcY -bcY -beC -bcY -hRJ -bcY -bcY -bcY -bcY -aKU -bbs -aox -aaa -aab -aaa -aab -aab -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(72,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aox -aox -ahl -aik -ajc -ajK -pxU -alr -ahk -anJ -anJ -anJ -anJ -anJ -tpZ -avM -lTg -azd -aAB -aBW -aDR -aFG -aLe -aJh -aKX -aQr -aOD -aQl -aRZ -aTp -aVc -oEG -aXR -aZg -bav -bbq -bcR -fYe -bex -bex -bip -bbq -aaa -bbs -bnt -bbs -bbs -bbs -bbs -bbs -bbs -bbs -bbs -byq -bbs -aKU -aKU -beG -ahT -amb -ani -anl -asb -bkq -ahT -qqW -jBK -bLf -bbs -bMw -bNh -bOb -bbs -cBK -saU -lbk -bbs -bbs -bbs -bbs -bbs -bbs -bbs -bbs -bbs -bcY -bFT -bbs -aox -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(73,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -agE -agE -agE -agE -agE -akB -als -ahk -anJ -anJ -anJ -anJ -anJ -tpZ -avN -axu -aze -aAC -aBX -aDS -aFH -aHI -aJi -aKY -aMQ -aOE -aQm -aSa -aTq -aVd -aWk -aXT -aZb -baw -bbq -bcS -bey -bex -bex -biq -bbq -bbs -bbs -bnt -cXY -bqh -brq -bss -bcX -aMG -bbs -bbs -byr -bbs -bAz -bbt -bCp -ahT -amj -anj -aol -ayv -bkM -ahT -wje -kzl -bcY -bbs -bMx -bNi -bcY -bbs -bPm -bPL -dBv -bbs -bPq -bPs -bPs -bPL -bRm -bPL -bSc -bPt -bcY -bqh -bbs -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(74,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -agE -ahm -ail -ajd -ajM -akC -alt -ahk -anJ -anJ -anJ -anJ -anJ -tpZ -avO -axv -azf -aAD -aBY -aDT -aFI -aHJ -aJj -aKZ -aMR -aOF -aQn -aSb -aTr -aVe -aWl -aXU -aZc -bax -bbr -bcT -bez -bfN -bhi -bir -bbq -bkF -bmc -bnw -bbt -bqi -bbt -bst -bty -bty -bty -bty -bys -vPm -bAA -dFK -bcX -ahT -ahT -ahT -ahT -asc -ahT -ahT -sNG -bcY -bcY -bbs -bbs -bNj -bbs -bbs -usO -pKY -bcY -bbs -bPn -bPK -bPr -bbs -bRn -bRo -bSd -bbs -bcY -bbs -cbQ -cbQ -wxx -wxx -wxx -cbQ -cbQ -cbQ -cbQ -aaa -aaa -aaa -aaa -aox -aox -aox -aox -aox -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(75,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -agE -ahm -aim -acs -jDA -qba -qba -ahk -ajQ -ajQ -ajQ -ajQ -ajQ -auf -sqh -sqh -sqh -sqh -aBZ -aDU -aFJ -aHK -oKJ -aLa -aMS -aOG -aQo -aDW -aTs -aVf -aWm -aXV -aWs -bay -bbq -bcU -bex -bex -bex -bis -bbq -bfQ -bmd -bmd -bmd -bqj -brr -brr -brr -brr -bvS -bvS -bvS -bvS -bvS -bvS -bvS -bvS -ame -akH -alz -azS -anB -ave -bJw -bhl -bLg -bLV -bmc -bhl -bhl -bhl -bhl -bhl -bOc -bbs -iZV -bPs -bQh -bQC -bRo -bcY -bSe -bbs -bcY -bbs -jkh -jkh -jkh -jkh -gnE -jkh -jkh -jkh -cbQ -aox -aox -aox -aox -aox -aox -aox -aox -aox -aox -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(76,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -agE -ahm -ain -ajf -agF -akD -alu -amy -anK -aoM -aqb -aro -asB -aug -avP -axw -azg -auf -aCa -aDU -aFJ -aHL -oKJ -aLb -aMS -aOH -aQp -aSc -aTt -aVg -aVj -aYc -aZd -aVq -bbq -dez -ohL -beA -bfO -bit -bbq -bkG -bmd -bnx -boX -bqk -brr -aes -aer -aes -bvS -bwP -byt -bzB -bAB -bBy -bCq -bDk -aif -alc -bFV -azV -aZj -bIK -bIK -bIK -bIK -bIK -bIK -aKT -hXd -bbs -hXd -bbs -bOd -bbs -tow -bPL -bQi -kzh -bRp -bPs -oUD -bbs -bcY -bbs -jXn -vTE -nJZ -hfc -njT -xeb -qxd -dwg -cbQ -aox -aox -aox -aox -aox -aox -aox -aox -aox -aox -aox -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(77,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -agE -ahm -aio -ajg -agH -akE -alv -amz -amz -amz -aqc -amz -asC -auh -avQ -axx -avQ -aAE -aQt -aDU -aFK -oMh -oKJ -aLb -cWR -aOI -aQq -aQq -aQq -aVh -ePx -aXX -aWs -aVq -bbq -bcV -bex -bex -bex -biu -bbq -bfQ -bmd -bny -boY -bql -brr -adg -aes -afG -bvS -bwQ -byu -bzC -bAC -bBz -bCq -bDl -bEe -bET -bFW -aBs -apz -bIK -bJx -bJx -bJx -bJx -bJx -aKT -wzR -tTz -rHm -bbs -htm -bbs -bbs -uzs -bQj -bQD -bPL -uzs -bSf -bbs -bcY -bbs -hwc -dXS -xeb -nJZ -xeb -nJZ -vXj -qKU -cbQ -cbQ -cbQ -cbQ -cbQ -cbQ -cbQ -cbQ -cbQ -cbQ -aox -aox -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(78,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -agE -ahp -aio -ajh -ajN -akF -alw -amA -tjF -amA -aqd -arp -asD -aui -avR -axy -azh -aAF -aCc -aDU -aFL -whV -oKJ -aLc -aMS -aOJ -aQr -aSd -aTu -aVj -aWs -aYc -aWs -baz -bbq -bcW -beB -bfP -bhk -biv -bbq -beE -bmd -bnz -bmd -bmd -brr -aGH -aGZ -aGH -bvS -bwR -byv -bzD -bAD -qvR -qvR -bDm -aif -ald -bFX -aBt -bEe -bIK -bJx -bJx -bJx -bJx -bJx -aKT -tEu -mhb -bSc -bbs -bfQ -khX -bbs -bPN -bPL -bQE -bPL -gXA -bbs -bbs -bcY -bbs -rsz -eJy -nJZ -xeb -njT -xeb -tlL -ruA -qre -cbQ -ciI -cjd -cjd -iKN -pIK -uAB -vTW -cbQ -aox -aox -aox -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(79,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -agE -ahq -aip -aji -ajO -akG -alx -amB -anL -anL -aqe -arq -asE -auj -avS -axz -azi -aAG -vGu -aDV -aFM -aHN -aJl -aLd -aMT -aOH -aQs -aSe -aTv -aVj -aWs -aYc -aWs -baA -bbq -bbq -bbq -bbq -bbq -bbq -bbq -ppp -dxM -bnA -bcY -bFT -brr -bsx -aNM -buL -bvS -bwS -byw -bzE -aLL -bBB -bCr -bvS -ajz -bET -bFW -aEI -alc -bIK -bJx -bJx -bJx -bJx -bJx -aKT -gfh -xlC -bPs -rxp -bfQ -bPs -bbs -bPs -bPs -bQF -bcY -mKD -bbs -bFT -bcY -iWs -tjb -dXS -xeb -njT -xeb -nJZ -vXj -hwm -qre -cbQ -iPS -ohF -drO -cbQ -kaa -cdX -kGv -cbQ -aox -aox -aox -aox -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(80,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aeT -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -agE -ahr -aiq -ajj -ajP -akI -aly -amz -anM -aoN -aqf -arr -asF -auk -avT -axA -azj -aAH -aCd -aDW -aFN -aDW -aDW -aLe -aMU -aOK -aDX -aSf -aTw -aVj -aWs -aYc -aWs -baA -aVq -aKU -bcY -beD -hYa -hYa -hYa -bfR -oGG -lJu -oDu -bqh -brr -aGJ -aHM -aLK -bvS -bwT -byx -bzF -bAF -bBC -bCs -bvS -ajA -bEV -bFW -aIG -bEe -bIK -bJx -bJx -bJx -bJx -bJx -aKT -iXN -bPs -kYd -bbs -bfQ -bcY -bbs -rPZ -bbs -bbs -bbs -bbs -bbs -wmQ -bcY -bBv -xLG -eJy -nJZ -hfc -nJZ -xeb -qxd -dRX -cbQ -cbQ -sPj -drh -uvr -cbQ -vBH -cdX -sry -cbQ -aox -aox -aox -aox -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(81,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -agE -ahs -air -ajk -agH -ctY -aly -amz -anN -aoO -aqg -ars -asG -aul -avU -axB -azk -aAI -aCe -aDX -aFO -aHO -aDY -aLf -aMV -aOL -aQt -aSg -aTx -aVj -aWs -aYc -aWs -baA -aVq -rkk -saq -pjq -qiE -gCl -vVT -vVT -vVT -vVT -iNe -vVT -brr -adw -aeS -aga -bvS -bwU -byy -bzG -bAG -bAG -bCt -bvS -ajI -bEV -bFX -aII -apz -bIK -bJx -bJx -bJx -bJx -bJx -aKT -bOe -rlF -bPu -bbs -hQD -hOu -hOu -hOu -bUB -hOu -hOu -hOu -hOu -hOu -dhL -txe -wAi -dXS -xeb -nJZ -hfc -nJZ -dbJ -otn -cbQ -cbQ -dgR -mbS -uvr -cbQ -rAy -mbS -xuR -cbQ -aox -aox -aox -aox -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(82,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -agE -agE -agE -agE -agE -akJ -alA -amD -anO -aoP -aqh -art -uJK -aum -avV -axC -azl -aAJ -kwa -aDY -aDY -aDY -aJm -aLg -aDY -aDY -aDY -aSh -aTy -aVj -ueV -aXY -aWs -baB -fij -aKT -aKT -npO -vVT -qOq -vVT -sJS -aaC -adI -aEM -bqp -brr -adD -afg -age -bvS -bwV -byz -bzH -bAG -bAG -bCu -bvS -akg -bEX -bFY -aLN -apA -bIK -bIK -bIK -bIK -bIK -bIK -aKT -oHM -bbs -hXd -bbs -cwC -qdR -qdR -qdR -lhs -qdR -qdR -qdR -fEW -bcY -ovG -bbs -jMq -vTE -nJZ -xeb -nJZ -xeb -sHd -lFD -qre -eiB -wQC -drh -uvr -cbQ -qaB -drh -fNM -cbQ -aox -aox -aox -aox -aox -aab -cfd -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(83,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -afo -mFA -gcr -oXa -ajQ -akK -alB -amE -anP -aoQ -mSx -aru -uJK -aun -avW -axD -azl -aAK -aCg -aDZ -aFP -aHQ -aJn -aLh -aMW -aOM -aQv -aSi -aTz -vJL -aQu -aXZ -aQu -baC -fij -aiN -aKT -pjq -oRx -leY -xKm -qWI -adl -aeQ -aEP -coB -brr -brr -aPs -brr -bvS -bwW -byA -bzI -bAH -vyK -bCv -bvS -akh -ale -alE -amC -aqL -bHd -ayo -azn -aAV -aCQ -bMy -bcY -bcY -bcY -bcY -bcY -bnt -qdR -xuu -whG -uNT -uRH -kKq -qdR -bbs -bbs -bVi -bbs -tKz -qCw -xeb -ffC -xeb -nJZ -vXj -rut -cbQ -cbQ -cbQ -jXv -cbQ -cbQ -cbQ -rGp -cbQ -cbQ -cbQ -cbQ -cbQ -cbQ -aox -aab -cfe -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(84,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aab -aaa -aaa -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -afo -gen -xdT -eco -ajQ -ajQ -ajQ -amF -ajQ -aoR -aqi -aoR -uJK -auo -avX -axE -kHW -kHW -aCh -aEa -aEa -aEa -aEa -aEa -aEa -aEa -aEa -aEa -aEa -aEa -aWo -aYa -aWo -fij -fij -aiN -aKT -pjq -fdl -odf -tBH -mxT -mxT -aeR -aEQ -aGG -vVT -aGK -afh -agx -bvS -bwX -byB -bzJ -bzJ -bzJ -bCw -bvS -bEl -bDj -bEl -amG -bEl -bHd -ayp -bIP -bLh -aCR -bHd -bHd -bHd -bHd -bHd -bcY -bnt -qdR -qZF -rBJ -gRf -odl -vaK -qdR -bNn -bNn -bdR -cbQ -cbQ -wxx -uXj -wxx -cbQ -cbQ -cbQ -cbQ -cbQ -cdX -cdX -cdX -cdR -cbQ -drh -cdX -qYx -cbQ -cdm -cdA -cdR -cbQ -aox -aab -cfe -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(85,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aab -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -afo -nKv -pkV -meT -hsb -lhK -afo -amJ -ajQ -aoS -aqj -arv -asH -aup -avY -axF -kHW -aAL -aCi -aEa -aFQ -aHR -aEa -aLi -aMX -aEa -aQw -aSj -aTA -aEa -qKZ -aYb -qKZ -fij -haW -jGj -aKT -pjq -bfT -leY -tBH -fKZ -adE -afH -aEZ -yft -vVT -adG -aHP -bsC -ahh -ahn -aho -bsC -bAI -bsC -bsC -bDn -anm -bEZ -aho -bHb -aqN -bIL -ayq -bKw -bLi -aCS -bMz -bNk -bNl -bNl -bHd -bcY -bnt -qdR -wbX -rzD -rTq -mWk -qCl -feo -qCZ -qCZ -uNI -cbQ -eJM -bWy -bWy -fwl -bWy -pgz -ckM -ckM -dXf -ckM -ckM -bWy -bWy -bWf -bWy -bWy -bWy -xTd -bWy -bWy -cdS -cbQ -ceu -ceM -cff -cfu -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(86,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -afo -ffY -aut -meT -gen -ftD -afo -amH -ajQ -aoT -amz -arw -mNP -auq -avZ -axG -kHW -aAM -aCj -aEa -aFR -aHS -aEa -aLj -aFR -aEa -aFR -aFR -aFR -aEa -aWq -aYc -aZf -fij -aKT -aKT -aKT -npO -vVT -baE -wlr -hpp -bmj -aEL -wlr -hpp -vVT -aGY -btJ -buQ -eKX -bwZ -eKX -eKX -bAJ -eKX -bCx -bDo -bvU -alp -eKX -bHc -eKX -bIM -bKx -bKx -cix -aCT -bMA -bNl -bNl -bNl -bHd -ljh -bnt -qdR -xAe -nqF -uwa -pch -dGU -qdR -bNn -rJi -tgQ -pgz -dde -beI -jHQ -wvm -cdX -oud -oud -oud -oud -drO -cdR -drh -dPs -cbQ -cdm -bfU -uaI -cbQ -gGr -pZF -ois -cbQ -cev -ceN -cfg -xBz -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(87,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -afo -jSO -kdp -pZo -ctD -fSn -afo -amI -ajQ -aoU -amz -arx -mNP -aur -avZ -axH -kHW -aAN -aCk -aEa -aFS -aHT -aEa -aHT -aMY -aEa -aHT -aSk -aHT -aEa -aWr -aYc -aZg -aVq -lbN -uho -bPN -beG -bbu -biw -bjM -bkH -bjO -bnH -etG -bpd -tti -aec -btK -mVr -fCl -bsC -bsC -bsC -bsC -bsC -akt -bsC -ahd -bFb -aYh -aEK -auX -bIN -ikn -azR -ciy -aCU -bMz -bNl -bOf -bbv -bHd -aKU -bnt -qdR -wwP -rEi -qde -qrb -dsE -qdR -bNn -bRK -qOX -cbQ -rXO -oud -oud -mGq -oud -oud -bYm -iaC -oud -oud -bZx -bZx -bZx -bZx -bZx -bZx -bZx -bZx -bZx -bZx -cdT -cbQ -cev -ceN -cfh -hFM -pQp -cfX -gmt -pQp -pQp -pQp -cfX -pQp -pQp -pQp -pQp -cin -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(88,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -afo -dsl -rDW -pZo -hCL -rxS -afo -qLi -ajQ -aoV -aqk -ary -mNP -aus -awa -axI -kHW -aAO -aCl -aEa -aFT -aHU -aJo -aLk -aHW -aON -aQx -aHW -aTB -aVl -aWs -aYe -eZZ -idi -bbt -cvy -cvy -bfV -bhm -bix -bjN -bkI -bkI -bnI -nZH -bpe -sVA -adJ -qrQ -buR -bDu -bxb -byD -bDu -soq -qwE -iPv -pQT -xnZ -iPv -iPv -iPv -bHd -bHd -bHd -bHd -bLk -aCY -bHd -bHd -bHd -bHd -bHd -bbs -mJH -qdR -qdR -qdR -qdR -qdR -qdR -qdR -mKz -nCg -mKz -mKz -mKz -oud -eUk -lAJ -bXI -pjA -bYn -bYE -bYO -bZf -bZy -bZV -cas -caU -cbn -caU -cct -kFz -cbo -bZx -cdT -cbQ -cew -ceN -cfh -ceN -cfx -cey -cgl -mWu -mWu -cgl -cey -chA -ceN -ceN -ceN -xBz -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(89,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -afo -dsl -rWE -meT -mnI -hYA -afo -qLi -ajQ -ajQ -ajQ -ajQ -asI -asI -asI -asI -azm -aAP -aCm -aEa -aFU -aFX -aFX -aFX -aFX -aOO -aFX -aFX -aTC -aVm -aWs -aYc -aJk -aVq -bbs -xQD -bbs -bfW -bbu -biy -bjO -bkJ -bmm -bnJ -bjO -wzc -brt -nGA -btK -buR -bDu -bxc -skc -hwh -byE -bCD -iPv -bEs -bEp -bFc -bGb -iPv -bHV -avb -ayw -azU -ciz -aCZ -bMB -bNm -bOg -bOD -bHd -das -hib -xDx -eTB -bRE -dUU -kuR -mKz -vRT -hKS -bRK -bVj -prS -fri -oud -izC -qYo -bXJ -fiX -qOD -bYF -bfp -bZg -bZz -bZW -cat -caU -cbo -caU -ccu -caU -cdn -bZx -cdT -cbQ -cev -ceN -cfh -ceN -cfx -cey -kIj -cgB -cgS -dzV -chn -mxX -chx -ceN -ceN -xBz -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(90,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -afo -ucD -owz -qtu -owz -qZS -afo -qLi -afo -aoW -aql -afo -asJ -akL -akL -akL -akL -akL -aCn -aEb -aFV -aHV -aHV -aLl -aMZ -aOP -aHV -aHV -aTD -aVn -aWt -aYd -aZg -aVq -nxq -bcY -uzs -bfW -bbu -biz -bjO -bkK -bmn -bnK -bjO -bqr -bru -nGA -btK -agB -tXo -bxd -byF -byX -vNp -bCL -iPv -bDr -bFg -bFd -ano -iPv -bHW -avc -bJD -azW -bIP -aDa -vyU -bNl -bOh -bNl -bHd -das -lut -nQe -lNA -bRK -sHA -eTB -jyi -eTB -mQI -bRL -bNn -vYh -bWg -bWg -bWg -bWg -bWg -bWg -bWg -bWg -bWg -bWg -bZA -bZX -cau -caV -cav -cav -cav -cav -cav -cdB -cdV -cbQ -cev -ceN -cfh -ceN -cfx -cey -cgm -cgC -ych -cgT -cey -chl -chy -ceN -jcx -xBz -aab -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(91,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -afo -qqx -fIX -mUs -pnI -hsb -afo -lpw -anQ -aoX -aqm -afo -ahz -afo -afo -afo -afo -afo -afo -aEa -aFW -aHW -aHW -aLm -aHW -aHW -aHW -aHW -aTE -aVo -aWs -aYg -aZh -aVq -kTl -qQD -bQG -bfW -bbu -biA -bjO -bkL -xyO -bnJ -bjO -bqs -brv -nGA -btL -agG -bvX -bxe -bxe -bzL -byH -bBE -iPv -bDs -bFi -bFg -aqQ -iPv -pBN -awB -bIP -azY -bIP -aDb -bMB -bNl -bNl -bNl -bHd -vkv -uBE -cqF -cBC -bRK -bNn -bNn -mKz -mNw -njB -eTB -dUU -frq -bWg -bWz -bWz -bWz -bWz -bWz -bYp -bWg -bYQ -bZh -bZB -bZY -cav -caW -caU -cbU -iFr -hNn -cdo -bZx -cdT -cbQ -cex -ceO -cfi -ceN -cfx -cey -cgn -cgD -rBa -cgU -cey -chm -chz -xKP -cey -cfv -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(92,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -acu -aab -aab -aab -aab -aaa -aaa -aaa -aaa -afo -afo -afo -lAi -afo -afo -afo -fgj -afo -aoY -aqn -afo -ahz -afo -aaa -aaa -aaa -aaa -aaa -aEc -aFX -aHX -aJp -aLn -aNa -aFX -aQy -aFR -aTF -aVp -aWs -aYc -aZg -aVq -tKw -bcY -bcY -bfW -bbu -biB -oWv -bjO -bjO -bnM -bph -bqt -brw -uAI -mDD -ahc -dTN -bxf -byH -bzM -bAM -bBF -bCC -bEt -bFj -bFf -iNl -bGi -bIP -awC -ayD -aAQ -aBu -aEJ -bHd -bHd -bHd -bHd -bHd -dBt -vpt -fqD -xqw -bRK -bNn -qOX -bSh -bSh -bSh -bSh -bVl -bSh -bWg -bWz -bWY -bWY -bWY -bWY -bWz -bWg -bYR -hPx -bZC -bZZ -uym -uym -caw -utY -ccv -sHo -bZD -bZx -cdT -cbQ -cey -cey -cey -cey -cey -cey -cgo -cgE -keE -cgo -cey -chX -chW -chV -cey -cfv -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -cio -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(93,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaR -aaR -aaR -aaR -aaR -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -afo -afo -dTb -dTb -gYm -aoX -aoX -aoX -lpw -afo -afo -afo -afo -asK -afo -afo -afo -afo -afo -aaa -aEa -aFY -aHY -aJq -aEa -aNb -aOQ -aQz -aSl -aTG -aEa -aWv -aYc -aZg -aVq -qzm -xhA -cJN -bfX -bbu -biC -bjQ -bkN -bjO -bnJ -bpi -rJq -tti -aec -btM -bsC -bDu -bxg -byH -byH -bAW -bDp -iPv -bEu -hIi -kzE -bKz -iPv -bHd -bHd -bHd -bHd -bHd -bHd -bHd -kuR -bHY -bNo -jvm -bNo -bNo -bQH -bIS -bRH -das -fZq -bSh -bTL -bUo -bUO -bVm -bVK -bWg -bWA -bWz -bWz -bWz -bWz -bWz -bWg -bYR -vap -euo -caa -cax -caY -caU -cbV -rpy -ccV -bZD -bZx -cdW -ceg -cey -ceP -cfj -cfy -cfL -cfY -cgp -cgF -cgV -chf -cey -chB -chL -chY -cey -cfv -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(94,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aaS -aaS -abq -abN -aaR -aab -aab -aab -ado -adK -aaR -aaR -afo -afo -afo -agI -aht -ais -rhw -ajl -akL -alC -amM -akL -aoZ -aoX -arz -asL -aut -awb -axJ -azo -afo -aaa -aEa -aFR -aFR -aFR -aEa -aNc -aFR -aFR -aFR -aFR -aEa -oUb -aYf -exI -wDp -wDp -wDp -thk -wDp -bbu -bbu -bbu -bbu -bjO -bnO -bbu -bbu -bbu -aeh -btM -buX -bvY -cyq -jjD -bzV -cyq -jjD -iPv -bEw -pjv -bGf -bKB -fSR -fFe -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bOi -bOE -bIT -bIT -bIT -bIT -bIT -ohv -bSh -bSh -bSh -bTM -bUp -bUP -bVn -beo -bWg -bWz -bWZ -bWz -bWz -bXY -bWz -bWg -tzT -bZx -bZx -cab -bZx -bWg -cbq -cbq -ccw -cbq -cbq -bZx -qJD -cdT -cey -ceQ -cfk -cfk -cfM -cfZ -cgq -cgG -cgW -mRu -cho -chC -chM -chZ -cij -cfv -aab -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(95,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaz -aaH -aaR -aaX -abr -aaX -acc -acd -acC -acC -acC -aaS -acE -acE -afp -afI -agf -agJ -ahu -afo -afo -afo -afo -afo -amN -anR -apa -aqo -arA -asM -auu -auu -axK -azp -afo -aaa -aEa -aFZ -aHZ -aJr -aEa -aNd -aFX -aQA -aSm -aTH -aEa -aWx -aYc -pXw -tPt -bbx -bda -igy -woU -jru -itk -iFV -exQ -bmr -bnP -bpj -cNp -jru -bsI -btN -bsC -bvY -whu -pdM -xJp -liq -dfb -iPv -pQT -xnZ -oVj -iPv -iPv -bHZ -bIT -bIT -bIT -bIT -bIT -bIT -bIT -bIT -bIT -bIT -bPO -bQm -bQI -bIT -bRI -bSh -bSC -bTa -bTN -bUq -bTN -bVo -bVM -bWg -bWz -bWz -bWz -bWz -bWz -bWz -bWg -bYR -bZx -bZE -cac -cay -bWg -bZx -bZx -bZx -bZx -bZx -bZx -cdX -cdT -cey -ceR -cfl -cfk -cfN -cfk -cgr -cgH -cgX -oST -chp -cfk -cfk -cia -cik -cfv -aab -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(96,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaR -aaY -abs -aaS -acd -aaS -acD -acC -adp -adp -aet -aeU -afp -afI -agg -agK -ahu -afo -aab -ajR -ajR -ajR -ajR -ajR -ajR -ajR -ajR -ajR -ajR -ajR -axL -azq -afo -afo -aEa -aEa -aEa -aEa -aEa -aEa -aEa -aEa -aEa -aEa -aEa -tQm -aYc -aZg -wsP -bby -bdb -kVx -ykb -jru -biE -bkO -bkO -bms -bnQ -wIn -lAM -qrt -bsC -lnw -bvU -xcr -bxi -byJ -bzO -bAO -bBH -bCE -pFt -psk -hAn -xaB -bvY -bHZ -bIT -bJF -bKD -bLl -bIT -eFQ -bJN -bOj -bOF -bIT -ggP -bJL -bQJ -bIT -bRJ -bSh -bSD -bTb -bTO -bUr -bUQ -bVp -bTN -bWg -bWz -bWz -bWz -bWz -bWz -bWz -bWg -bYS -bZi -bZF -cad -caz -bWg -cbr -cbW -cbW -cbW -cbW -cdC -cbW -ceh -cey -ceS -cfm -cfA -cfO -cga -cgs -cgI -cgY -chh -chq -chD -chD -cib -cik -cfv -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(97,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaR -aaZ -abt -aaS -aaR -aab -acE -acE -aab -adL -adK -adK -afo -afo -afo -afo -ahv -afo -aab -ajR -ajR -ajR -ajR -ajR -ajR -ajR -ajR -ajR -ajR -ajR -axM -azr -aAR -auu -auu -auu -auu -auu -aLo -aLo -aLo -aLo -aLo -aTI -aVq -xGF -uFr -pXw -wsP -bbz -nsW -csb -bfY -jru -biD -iFV -biD -bmr -voT -sad -bqv -jru -aek -qNo -osb -bvY -bxj -byM -lJh -bAP -bBI -bCF -bDv -byL -bFh -aYN -bvY -bHZ -bIT -bJG -bKE -bLm -bIT -bMC -bNs -bKL -bOG -bIT -tII -fRQ -bQK -bIT -bRK -bSh -bSE -bTc -bTN -bUs -bUR -bUR -bVN -bWg -bWg -bWg -bWg -bWg -bWg -bWg -bWg -bWg -bWg -bZG -cae -caA -bWg -cbs -caB -caB -caB -caB -caB -caB -cei -cey -ceT -cfn -cfB -cfP -cgb -cgt -cgJ -cgZ -chi -chr -chE -chN -cic -cil -cfv -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(98,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaR -aaR -aaR -aaR -aaR -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -afo -ahw -afo -aab -ajR -ajR -alD -amO -anS -apb -aqp -arB -arB -arB -ajR -axN -axN -axN -axN -aaV -abG -aIa -aIa -aIa -aIa -aIa -aIa -aIa -aTK -aVr -aWy -sSo -aZg -sig -bbA -bdc -beJ -bfZ -bhn -biF -bjT -bkP -bmr -voT -bpm -bqw -vgB -bsL -afm -bsL -bvY -bxk -byL -xJp -bAQ -cva -bCG -bDx -byL -bGj -bGh -bvY -bHZ -bIT -bIT -bKF -bIT -bIT -bMC -bNp -bKL -bOH -bIT -bIT -bIT -bQL -bIT -bRK -bSh -bSh -bTd -bTP -bUt -bTd -bTP -bSh -bWg -bWB -bXa -bXr -bXr -bXr -bYq -bYG -bYT -bWg -bWg -caf -bWg -bWg -cbt -caB -ccx -ccW -cdp -cdD -caB -cej -cez -cez -cez -cez -cfQ -cgc -cgu -cey -cha -chj -cgc -cey -chj -cgc -cey -cfv -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(99,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aaa -afo -ahx -afo -aab -ajR -ajR -abY -amO -anT -apc -aqq -arB -arB -arB -ajR -axO -azs -aAS -aCo -aEd -aGa -aIb -aJs -aLp -aNe -aOR -aQB -aIa -amK -aVq -aWz -aYi -aZk -wDp -bbB -bdd -beK -bga -bho -biG -biG -bkQ -wOW -dbC -sad -bqu -vgB -aem -qNo -ahe -bvY -bxl -byL -bzR -veq -eMv -bCH -bDy -bEx -bGk -bLY -bvY -bHZ -bIT -bJH -bKG -bLn -bMd -bMD -bKL -bKL -bOI -bPv -bPQ -bQp -bQM -bRt -bRL -bSi -bSF -gzn -bTe -bUu -bUS -bUS -bVO -bWg -bWC -bXb -bXb -bXb -bXb -bXb -bXb -bYU -bZj -bZH -cag -caB -caZ -cbu -cbX -cbw -cbw -cdq -cdE -caB -cek -cez -ceU -cfo -cfC -cfR -cgd -cgv -cgK -cgd -cgd -chs -chF -chO -cid -chJ -cfv -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(100,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aab -aab -aab -aab -agL -ahy -agL -aab -ajR -ajR -alF -amO -amO -amO -aqq -amO -amO -auv -ajR -axP -azt -aAT -aCp -aEe -aGb -aIc -aJt -aLq -aNf -aLq -aQC -aIa -amK -aVq -aWA -aYj -aZm -wDp -bbC -bde -beL -mlB -bhp -biH -bjV -bkR -bKf -tBd -bpn -bqx -vgB -aep -qNo -ahf -bvY -bxm -byN -bzS -bAS -bBL -bCI -bDz -bEy -bHe -bLZ -bvY -nnj -bIT -bJI -bKH -bLo -bMe -bME -bNr -bOk -bOJ -bJL -bJL -bJL -bQN -bIT -bNn -bSi -bSG -bTQ -bTQ -bTQ -bTQ -bTQ -bVP -bWg -bWD -bXc -bXs -bXs -bXZ -eyb -bXs -bXs -bZk -bZI -cah -caC -cba -cbv -cbY -ccy -ccX -cdr -cdF -cdZ -cel -ceA -ceV -cfp -cfD -cfS -cge -cgw -cgL -cgL -cgL -cgL -chG -chP -cie -cim -cfv -aab -aab -aab -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(101,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aab -aab -aab -agM -ahw -agM -aab -ajR -ajR -alG -amO -aeg -apd -aqr -arC -asN -auw -awc -axQ -azu -aAU -aCq -aEf -aGc -aId -aJt -aLr -aNg -aOS -aQD -aIa -amK -aVq -aWz -aYi -aZk -wDp -aaE -bdf -beM -aOs -wDp -biI -bjW -biI -bmv -bmv -bnS -vpV -vgB -aeq -qNo -ahg -bvY -bxn -byO -ovf -bzT -bzT -bCJ -bvY -bEz -bJC -bGl -bvY -nnj -bIT -bJJ -bKI -yiF -bQn -bMF -bJN -bOl -bOK -bJL -bJL -bJL -bQO -bIT -bNn -bSi -cVC -bTg -bTR -bUw -bTR -bTg -bVQ -bWg -bWE -bXd -bXt -bXK -bYa -bXt -bXd -bXd -bXy -bZJ -cai -caB -cbb -cbw -cbw -cbw -cbw -cbw -cdG -caB -cem -cez -ceW -cfq -cez -cez -cgf -cgx -cgg -hNs -cgg -cgg -chH -cgg -cif -cez -cfv -aab -aab -aab -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(102,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -agN -ahu -agN -aab -ajR -ajR -ajR -ajR -ajR -ape -aqs -ajR -ajR -ajR -ajR -ajR -ajR -ajR -ajR -aEg -aGd -aIe -aJu -aLs -aNh -aOT -aQE -aIa -aTL -aVs -aZs -aYn -aZo -wDp -seD -bdg -bdg -bgc -wDp -kvP -aZs -bkS -bmw -bnT -bmw -bqy -vgB -bsL -btR -bsL -bvY -bxo -aZs -bdh -bdh -bdh -bCK -bvY -bvY -bvY -bvY -bvY -bIc -bIT -bJK -bKJ -bLq -bMf -bMF -bJN -bOm -bOK -bJL -bJL -bJL -bQP -bIT -bNn -bSi -bSI -bTh -bTS -ttC -bTS -bVs -bVR -bWg -bWF -bXe -bXu -bXL -bXL -bYr -bYH -bYV -bXd -bZK -caj -caD -cbc -cbx -cca -cca -ccY -cbw -cdH -caB -cen -cez -ceX -ceX -cfE -cfT -cgg -cgy -cgg -chb -cgg -cgg -cgg -chQ -cig -chJ -cfv -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(103,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -afo -ahu -afo -aab -ajR -ajR -alH -alH -anV -apf -aqt -arD -asO -aux -awd -axR -azv -asd -ajR -auC -aGe -aIf -aJv -aLt -aNi -aNj -aQF -aIa -aTL -aVs -aWC -aYn -aZo -baF -aZs -bdh -aZs -bdh -bhr -biJ -aZs -aZs -aZs -aZs -aZs -aZs -bbE -bsP -bdh -bvc -bwa -aZs -aZs -aZs -aZs -biJ -aZs -aZs -bEA -aWB -bGm -bHg -bId -bIU -bNq -bNq -bNq -bQo -bMF -bNs -bNp -bOK -bPS -bPS -bJL -bQP -bIT -bNn -bSi -bSH -bTi -bTi -bTi -bTi -bTi -cMI -bWg -bWg -bXf -bXv -bXM -bXM -bXM -bYI -bWg -bZl -bZL -cak -caE -cbc -cbx -vWF -ccz -ccY -cbw -cdI -caB -ceo -cez -ceY -ceY -cfF -cfU -cgh -cgz -cgM -cgg -cgg -cht -chI -chR -cih -chK -cfv -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(104,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -afo -ahw -afo -aab -ajR -ajR -alI -amO -anW -apg -aqu -arE -asP -amO -amO -amO -amO -amO -aCr -aEe -aGe -aIg -aJw -aLu -aNj -aNj -aQG -aIa -amK -aVs -aWD -aYm -aZp -baG -bbF -bdi -bbF -bbF -bhs -biK -bbF -bbF -bhs -bbF -bbF -bbF -bbF -bbF -bbF -bbF -bbF -bdi -bbF -bbF -bbF -bBM -bbF -bbF -bbF -baG -bbF -bHh -aZs -bIV -bJL -bJL -bJL -bKL -bMF -bKH -bKL -bOL -bPw -bPw -bQq -bQQ -bIT -bNn -bSi -bSH -bTi -bTi -bTi -bTi -bTi -bVS -bWg -bWG -bXg -bXw -bXN -bXN -bXN -beU -bWg -bZm -bZM -bZm -caB -cbd -cbx -mqr -ccA -ccY -cbw -cdJ -caB -ceo -cez -ceZ -ceZ -cfG -cfV -cgi -cez -cgN -cgz -cgz -chu -cez -chS -cii -cez -cfv -aab -aab -aab -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(105,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -afo -ahw -afo -aab -ajR -ajR -alJ -amO -amO -amO -aqq -arF -asP -auy -amO -amO -amO -amO -aCs -aEh -aGf -aIh -aJx -aLv -aNk -aOU -aQH -aIa -amK -aVs -aWE -aYn -aZq -baH -bbG -bdj -beO -bgd -bbG -biL -bbG -bgd -beO -bgd -bbG -bqz -bbG -bbG -btS -bbG -bbG -bxp -bbG -bbG -bbG -bbG -opW -bbG -bbG -bFn -bbG -bHi -bIe -bIW -bJM -bKK -bLr -bJL -bMG -bKL -bOM -mbJ -bOO -bPT -bJL -bQR -bIT -bNn -bSi -bSJ -bTi -bTi -bTi -bTi -bTi -bVT -bWg -bWg -bXh -bXx -bXO -bYb -bYs -bYb -bYW -bZn -bZN -cal -caB -caB -cby -ccb -ccb -ccb -cdt -caB -caB -cep -cez -cfa -cfb -cfH -cfW -cgj -cgA -cgO -chc -chc -chc -chJ -chT -cft -cft -chU -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(106,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aab -afo -ahz -afo -aab -ajR -ajR -alI -amO -amO -amO -aqv -arG -asQ -auz -awe -amO -amO -amO -aCs -aEe -aGe -aIi -aIi -aIi -aIi -aIi -aIi -aIi -aTM -aIi -aWF -aYn -aZr -aVs -jky -bdk -beP -bge -tlV -aVs -tlV -bdk -beP -bge -jky -aVs -bry -bsQ -baI -bvd -bwb -baI -bvd -bzU -bzU -bwb -baI -bvd -bwb -baI -bGn -bHj -aZs -bIX -bJN -bKL -bLs -bJL -bMH -bNt -bOn -bON -bPx -bPT -bJL -abX -bIT -bNn -bSi -bSH -bTi -bTi -bTi -bTi -bTi -cMI -iUR -vYB -bXi -uWB -bXP -bYc -bPz -bLw -bXd -bYt -bZO -cam -caF -cbe -cbz -ccc -ccB -ccZ -cdu -cdK -caG -ceq -cez -cfb -cfW -cfH -cfW -cgj -cgA -cgO -chc -chc -chc -cfF -cfv -aab -aab -aab -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(107,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aab -acu -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -afo -ahw -afo -aab -ajR -ajR -alK -amQ -anX -aph -aeg -arH -asR -auA -awf -axS -awf -awf -ajR -aEi -aGg -aIi -aJy -aLw -aNl -aOV -aQI -aSn -aTN -aIi -aWG -aYn -aZs -aVs -bbI -kvP -kvP -kvP -bhu -biM -bjX -kvP -kvP -kvP -aRf -aVs -aZs -aZs -btT -bve -bve -bve -bve -bve -bve -bve -bve -bve -bve -btT -aZs -bHk -bIf -bIX -bJN -bJN -yiF -bJL -bMG -bNu -bJL -bJL -bJL -bJL -bJL -bQT -bIT -bNn -bSi -bSK -bTj -bTT -bUx -bdx -bVt -bVU -iUR -vYB -bXi -bXz -bXQ -bYd -bYu -bYK -bWg -bfF -bZP -can -caG -cbf -cbA -ccd -ccC -ccC -cdv -cdL -caG -cer -ceB -cfc -cfc -cez -aal -cez -cez -cgP -chd -chk -cgd -cfF -cfv -aab -aab -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(108,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -afo -ahy -agL -aab -ajR -ajR -ajR -ajR -ajR -ajR -ajR -ajR -ajR -ajR -ajR -ajR -ajR -ajR -ajR -aEj -aGe -aIi -aJz -aLx -aLx -aOW -aLx -iaV -xOZ -aIi -aWH -aYn -aZr -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -brz -aZr -baI -bve -bve -bve -bve -bve -bve -bve -bve -bve -bve -baI -bGo -bHj -aZs -bIY -bJO -bJO -bLt -bIV -bMI -bNv -bOo -bOo -bOo -bOo -bQr -bIT -bIT -bRM -bSi -bTk -bTk -bSi -bUy -bSi -bTk -bTk -iUR -iUR -bXj -bXA -bXR -bYe -bXj -bXA -bWg -bWg -bWg -bWg -caG -caG -cbB -ccd -ccC -cda -ccC -cdM -caG -ceq -cez -cez -cfc -bgb -cfc -stM -ceB -cgQ -cgQ -cgQ -cgQ -chK -cfv -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(109,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afo -ahu -agM -aab -ajR -ajR -ajR -ajR -ajR -ajR -ajR -ajR -wLt -auB -awg -axT -azw -aAW -aCt -aEk -aGh -aIj -aJA -aJA -aJA -aOX -aJA -aTO -qPN -aVt -aWI -aYn -aZt -baI -bbJ -bbJ -bbJ -bbJ -bhv -baI -bjY -bjY -bjY -bjY -bpq -baI -brA -aZs -btU -bve -bve -bve -bve -bve -bve -bve -bve -bve -bve -bFo -aZs -bHl -aZs -aWB -bJP -mEM -bLu -bLw -bMJ -bNw -bLw -bLw -bQs -bLw -bLw -bQU -sez -bLw -bSj -bLw -bLw -mEM -bUz -bLw -bLw -bLw -bWh -bLw -bNw -bXB -bXS -bYf -bYv -mEM -bLw -bZp -bZQ -cao -caH -caG -cbC -cce -ccC -ccC -ccC -cdN -cea -ces -ceC -cez -cez -cez -cez -cez -cez -cgR -che -che -chw -cez -cfv -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(110,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aad -aad -aad -aad -abu -acF -aad -abu -acF -aad -abu -acF -aad -aad -aad -aad -aad -aad -aad -aad -afo -ahw -agN -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -omB -ixU -awh -axU -azx -aAX -aCu -aEl -aGi -aIk -aJB -aLy -aLy -aOY -aLy -aLy -aTP -aVu -aWJ -aYn -aZu -baI -bbJ -bbJ -bbJ -bbJ -bbJ -baI -bjY -bjY -bjY -bjY -bjY -baI -brB -bsR -baI -bve -bve -bve -bve -jmf -bve -bve -bve -bve -bve -baI -imd -bHm -bIg -bIZ -bJQ -bKN -bVu -bUU -bMK -bXk -bVu -bVu -bVu -bVu -bVu -bXk -bVu -bUU -bSk -bVu -bTl -bKN -bUA -bUU -bVu -bVu -bWi -hGk -tpv -hGk -bXT -bYg -bYw -kWH -bYX -bZq -bZR -cap -caI -caG -caG -ccf -ccD -cdb -cdb -cdO -caG -caG -ceq -bEK -cft -cft -cft -cft -cft -cft -cft -cft -cft -cft -chU -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(111,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aad -aaA -icb -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -adM -aad -aeX -aeW -aeV -aad -afo -ahy -afo -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -omB -auD -awi -axV -azy -aAY -aCv -aEm -aGj -aIl -aJC -aJC -aNm -aOZ -aQJ -aSo -aTQ -aVt -aWI -aYn -aKO -baI -bbJ -bdm -bbJ -bgf -bbJ -baI -bjY -bkT -bjY -bnU -bjY -baI -brC -aZs -btU -bve -bve -bve -bve -bve -bve -bve -bve -bve -bve -btU -aZs -bHn -aZs -aWB -bJP -mEM -bLw -bPz -vhg -bLw -bLw -bLw -bLw -bLw -bLw -bLw -bLw -bPz -bLw -dKk -bTm -bTU -wiQ -bdA -bVv -bLw -bMJ -bLw -bLw -bLw -bLw -bLw -vnf -bYL -bYx -bPz -bLw -caq -caJ -caG -cbD -ccg -ccE -ccE -ccE -ccg -ceb -caG -ceq -bEK -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(112,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aad -abV -aaJ -srX -eJt -iIv -srX -eJt -iIv -afe -afe -afe -afe -afe -adN -aad -afq -aah -aah -aad -aad -ahA -aad -aad -aab -aab -aab -aaa -aaa -aaa -omB -omB -omB -auE -awj -axW -auE -awj -omB -aEn -aGk -aIi -aJD -aLx -aLx -aLx -aQK -aSp -aTR -aIi -aWK -aYn -aZw -baI -bbJ -bbJ -bbJ -bbJ -bbJ -baI -bjY -bjY -bjY -bjY -bjY -baI -brD -aZw -baI -bve -bve -bve -bve -bve -bve -bve -bve -bve -bve -baI -bGp -bHo -aZs -bJa -bJR -bJR -bJR -bJR -bNz -bGr -bGr -bOP -bOT -bOT -bOT -bPA -bQV -bQV -bPA -bSM -bSM -bSM -bSM -bSM -bSM -bUX -bUY -ann -bXl -bXC -bUX -bUX -bSM -bSM -bSM -bZr -wkb -bSM -caK -caG -cbE -caG -ccF -cdc -cdw -caG -cbE -caG -ceE -bEK -bEK -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(113,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aad -aaB -aaJ -srX -xxd -aaU -oOw -vhY -abP -afe -nmV -acG -afC -afe -aaJ -aad -aad -afJ -aad -aad -aaI -ahB -aae -aad -aab -aab -aaa -aaa -aaa -aaa -omB -arI -asS -auF -awk -axX -azz -anU -omB -aEo -aGl -nLT -aJE -aLz -aNn -aPa -nLT -aSq -aTS -aIi -aWL -aYn -aZs -baI -bbJ -bbJ -bbJ -bbJ -bbJ -baI -bjY -bjY -bjY -bjY -bjY -baI -aZs -aZs -btT -bve -bve -bve -bve -bve -bve -bve -bve -bve -bve -bFp -aZs -bHj -aZs -bJb -bJS -vIq -vIq -sNw -vIq -dEG -bGr -bOQ -maY -bOT -bPA -bQW -bRv -bRv -bSm -bSM -bTn -bTV -bUC -bSM -bSM -bVW -bWk -bWK -bXm -bXD -bXU -beN -bSM -tIQ -bSM -bSM -bSM -bSM -caL -cbg -cbF -cbg -cbM -cdd -cbg -cbg -cec -cbg -ceF -bPH -bEK -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(114,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aad -abV -aaJ -srX -rMJ -xBx -xBx -lrT -abw -afe -nmV -afD -afC -afe -act -acB -acB -ggV -ggV -agi -agO -abV -aah -aad -aaa -aab -aaa -aaa -aaa -aaa -omB -arJ -mUZ -auG -awl -axY -mUZ -aBa -omB -aEp -aGk -aIm -aJF -aLA -aNo -aPb -nLT -aSr -aTT -aIi -aZs -aYn -aZr -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bry -bsQ -baI -bvd -bwb -baI -bvd -bzU -bzU -bwb -baI -bvd -bwb -baI -bGq -bHq -aZs -bJb -vIq -bKO -rNi -rNi -bML -sNw -bOp -uuz -bPB -ljr -bQV -mya -bOR -bRP -bSn -bSM -bTo -bTW -bUD -bWV -bVb -bVX -bWl -bVx -fom -bVX -bVX -bVX -bWL -bVX -bWP -tPg -ymb -bSM -bNO -cbh -cbh -cbh -cbh -cbh -cdx -cbh -cbh -cbh -ceG -bPH -bEK -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(115,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aad -aaD -aaJ -srX -xcZ -xBx -abb -abx -phk -afe -abQ -acI -aby -afe -aae -aah -aae -aaV -aaV -aaV -aaV -aaV -aah -aad -aad -aad -aad -amR -aad -aad -omB -arK -asT -auH -omB -axZ -arK -asT -omB -aEq -aGm -aIn -aJG -aLB -xnn -aPc -nLT -aSs -aTU -aIi -aWN -aYn -aZx -baJ -bbK -bdn -beQ -bgg -bbG -biN -bjZ -bdn -beQ -bnV -bbG -bqA -bbG -bbG -btV -bbG -bbG -bxq -bbG -bbG -bbG -bbG -beQ -bbG -bbG -bFq -bbG -bHq -bIe -bJb -bJU -bKP -bLy -bMg -bMM -vIq -bJb -bOS -hsj -bOT -bQV -mya -bOR -bRQ -bSo -bSM -bTp -bTX -bUE -bSM -bVe -bVY -bWm -dcF -doy -dMD -bWM -bYi -sEV -sEV -bYZ -ivR -jnD -bSM -bNO -cbi -cbG -cch -ccG -cde -cdy -cdP -ced -cbi -ceH -bPH -bEK -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(116,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aaJ -srX -sYi -lrT -sdh -uOu -abR -acg -yaL -acJ -afD -adq -aae -abV -aaA -aaV -xxH -eXU -fKx -aaV -aah -aah -aah -abI -aah -amS -anY -abM -omB -arL -asU -auI -omB -aya -azA -aBb -omB -aEr -aGn -aIo -aJH -aLC -xnn -aPd -nLT -aSt -aTT -aIi -aWO -aYo -aZy -baK -bbL -bdo -bdo -bgh -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -urT -bbL -bdo -bdo -bdo -byP -bbF -bbF -bbF -bbF -bbF -bEB -bFr -bFr -bHr -aZs -bJb -vIq -eEQ -bJe -bJe -bMM -sNw -bJc -bOT -bOT -bOT -bQV -mya -bOR -bRQ -bSp -bSM -bSM -bUW -bSM -bSM -bVf -bWa -bWo -bZs -dMw -dWO -bWa -bWa -eSY -dmg -bYZ -wcO -bYy -bSM -caM -cbh -cbH -cci -ccH -cdf -cdf -cdf -cee -cbh -ceI -cdj -bEK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(117,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaK -srX -eNv -xBx -vhY -abz -xBx -afe -oQQ -acK -acX -afe -adt -aaV -aaV -aaV -mqs -rVo -eLR -aaV -aaA -aaA -aaA -sAC -aah -aae -aah -abI -omB -arM -asV -auJ -omB -ayb -azB -aoj -omB -aEm -aGk -aIp -aJI -aLD -niw -aPe -nLT -aSu -aTV -aIi -aWP -aYn -aZz -anp -aZs -bdp -aZs -bgi -aZs -bdp -bka -bdp -aZs -bdp -aZs -bdp -brE -kRp -btW -bvf -bwc -aZs -byQ -aZs -bAZ -bAT -bEq -aZs -aYn -aZs -bka -bHs -bIh -bJc -vIq -eEQ -bLz -bMh -bMM -baj -bOt -bOU -sQo -bPY -bQw -bQZ -bOR -bRQ -bSq -bOt -bTq -bTZ -bUF -hbG -bVz -bWa -bWo -bWa -bWa -bWa -bWa -bWa -wVv -wVv -bYZ -bZu -qlw -bSM -caN -cbj -cbI -ccj -ccI -cdf -cdf -cdf -cef -cet -ceJ -bMV -bEK -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(118,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaJ -srX -vgA -hLJ -abc -abA -nbN -afe -yfl -vGn -aka -akW -adt -aeu -aeY -afr -afK -agj -qYu -aaV -ahC -ahC -ahC -ahC -aah -ahC -ahC -ahC -aaV -aaV -asW -auK -omB -ayc -arK -asT -omB -aEm -aGk -aIq -uiJ -ntc -aNp -aPf -nLT -aSv -aTW -aQL -aWB -aYk -aZA -baL -bbM -bdq -baL -baL -bhw -bdq -bkb -bkU -bmx -bnW -bkU -bmx -brF -bsS -btX -bvg -bwd -bzZ -byS -bzZ -bwd -bAU -aVs -aWB -aYk -aWB -bGr -bHt -bIi -bGr -bJV -bKQ -bLA -bLA -bMN -eHm -pcB -bOV -bRP -bOX -bOX -wtZ -bOX -gjz -uea -bOt -bko -bUa -bUG -bJd -bVz -bWa -cjf -sEV -bWa -sEV -sEV -bWa -bWa -bWa -bWQ -bSM -bSM -bSM -caO -cbh -cbJ -cck -ccJ -cdf -cdf -cdf -cee -cbh -ceK -bMV -bEK -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(119,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaJ -srX -xzX -pZE -abd -xBx -itx -afe -gmg -acL -vZF -akW -adt -aev -aeZ -afs -abE -agk -abE -aaV -ait -ajm -ajS -ahC -aah -ahC -ait -api -ajS -aaV -asX -auL -awm -auL -auL -auL -aCw -aEs -aGo -aIr -aJJ -aLE -aNq -aBc -nLT -aSw -aTX -aQL -aWQ -aYp -aZB -baL -bbN -bbT -beW -piz -bgk -bgm -bkc -bkV -bmy -bmy -bpr -bmy -brG -bsT -btY -bvh -bwd -bxu -byT -byW -enx -bAV -aVs -bDA -aYn -bFs -bGs -bHu -bIj -odr -bJW -bKR -bLB -bJW -bMO -bNE -ndR -bOR -bRQ -bOR -bOR -fTZ -bOR -bOR -bSr -bOt -bkp -bTZ -bTu -bMj -bVz -bWa -cxA -dmg -bWa -dXu -dmg -bWa -sEV -sEV -bYZ -tPg -ymb -bSM -caP -cbi -cbK -cck -ccK -cdg -cdz -cdQ -cci -cbi -ceq -bPH -bEK -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(120,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaL -srX -srX -srX -abe -wHH -raN -afe -afe -acM -afe -adt -adt -aew -afa -aft -leW -afM -owA -aaV -aiu -ajn -ajT -ahC -abI -ahC -aiu -apj -ajT -aaV -asY -auM -awn -awn -azC -aBd -aCx -aEt -aGp -aIs -aJK -pyu -pyu -pyu -nLT -aSx -aTY -aQL -cUy -aYq -aZC -baL -bbO -oZo -sbf -sbf -biV -bdt -bhB -bkW -bmz -bnX -bps -bps -bps -bsU -btZ -bvi -bwd -bxv -byU -byW -bzX -bBO -aVs -bDB -aYn -bFt -bGt -bHv -bJe -bJe -bJe -xxw -bJe -bJe -bMP -bNF -ckY -bOX -vRw -bRw -bOR -keq -bOR -bRw -uRt -bOt -bTt -bTZ -bTu -bSP -bVz -bWa -cVM -wVv -bWa -wVv -wVv -bWa -eSY -dmg -bYZ -ivR -bYY -bSM -caP -cbh -cbh -cbh -cbh -cbh -cdx -cbh -cbh -cbh -ceq -bPH -bEK -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(121,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -xEE -cQE -tsx -srX -dob -abB -qkc -acj -ltW -acN -ghU -srX -srX -aex -aaV -aaV -afN -cHJ -afN -aaV -aaV -ajo -aaV -ahC -abG -ahC -aaV -apk -aaV -aaV -asZ -auN -awo -awo -azD -aBe -aBe -aBe -aBe -aBe -aJL -aBe -aNr -aPh -aQL -aQL -aTZ -aQL -awK -aLP -aZF -baL -bbP -bdt -beS -biT -bhC -bhG -fdD -bkX -bmA -bnY -bmA -bmA -brH -bsV -btZ -bvj -bwd -bxw -byV -byW -bzY -bAX -aVs -bDC -bEC -bFu -bGu -bHw -bIl -bJf -bJX -bKS -bLD -bMi -fKb -bNG -elI -keq -bOR -xTH -iBt -dGy -iBt -xTH -dcu -aNK -bTu -bUb -bTu -bSQ -bVz -bWa -bWo -bWa -bWa -edU -bWa -bWa -wVv -wVv -bYZ -wcO -bYy -bSM -caQ -cbk -cbL -ccl -ccL -cdh -cdh -cdh -cdh -cdh -ceL -bPH -bEK -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(122,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aaJ -srX -abf -abC -oUH -ack -tOQ -acO -acY -srX -adO -aey -afb -afu -nbB -nLD -agQ -ahD -aiv -aey -ajU -afb -alL -afb -afb -apl -aiv -arN -ata -auN -awo -awo -azE -aBf -aCy -aEu -aGq -aIt -aJM -aBe -aNs -aws -aws -aws -aUa -aQL -aWR -aLP -aZE -baL -bbQ -bdr -ava -dGq -bjR -biO -bkb -bhD -bmB -bnZ -bpt -bqB -bmA -bsV -btZ -bvk -bwd -bxx -bwf -byW -byW -tiv -aVs -aVs -bED -bFv -bGr -bGr -bGr -bJY -bJR -bNz -bGr -bGr -bJe -bNH -bOt -bOZ -cbZ -keq -rpx -keq -bOR -keq -uRt -aNK -bTu -bUc -bTu -bSR -bVz -bWa -cjf -sEV -bWa -sEV -sEV -bWa -bWa -bWa -bYZ -bZu -qlw -bSM -caR -cbl -cbM -ccm -ccM -bGC -bEK -bEK -jck -bEK -bEK -bEK -bEK -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(123,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -kbF -aai -rKr -aan -xoV -agC -wkn -srX -abg -abD -abS -acl -acv -acP -acZ -srX -adP -aez -afc -afv -afv -afv -agR -afv -aiw -afv -afv -akM -alM -afv -afv -apm -afv -arO -atb -auO -awp -awp -awo -aBg -aCz -aEv -aGr -aIu -aJN -aBe -aNt -aPi -aQM -aws -aUa -aQL -aKd -aLP -aZF -baL -bbR -bds -beT -dGq -lVe -biP -bkb -bkZ -bmC -boa -bpu -bqC -bmA -bsV -btZ -aVk -bwd -bxy -bxC -byW -byW -tiv -aVs -bDD -bEE -bFw -bGv -bGr -bIm -bJg -bJZ -jch -bLE -bMk -bLx -bNI -bOt -bPa -bPD -bQa -bOR -keq -bOR -bQa -uRt -bhy -bTu -bTZ -bTu -bSR -bVz -bWa -cxA -dmg -bWa -eSY -dmg -bWa -sEV -sEV -bWQ -bSM -bSM -bSM -bGC -cbm -bMU -ccn -ccN -bGC -bEK -bPH -bGC -bGC -bPH -bEK -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(124,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaf -aaj -aaj -aaj -aav -aad -aaM -aaV -abh -abE -abT -pLP -pLP -acQ -ada -adu -adQ -aeA -afd -afw -afP -agm -afd -afd -afd -afd -afd -akN -alN -akN -ana -ana -ana -ana -atc -auP -awq -ayd -azF -aBh -aCA -aEw -aGs -aIv -aJO -aBe -aNu -aPj -aQN -aws -aUb -aQL -aWS -aLP -aZF -baL -bbP -beR -beS -biT -biW -biQ -bkb -bgj -bmD -bob -bpv -bqD -bmA -bsW -bua -bvm -bwd -bxz -bAb -naQ -bBb -bBP -bBP -bDE -bEF -bFx -bGw -bBP -bIn -jch -bKa -bJg -bLF -ays -rWM -bNJ -bOt -onC -bPD -bOR -bOR -bOR -bOR -bOR -bSt -bOt -bTv -bTZ -bTu -uRY -bVz -bWa -cVM -wVv -bWa -wVv -wVv -bWa -eSY -dmg -bYZ -tPg -ymb -bSM -caS -bEK -bEK -cco -ccO -bEK -bEK -bPH -bGC -bGC -peg -bEK -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(125,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -yck -orw -heb -xmv -aad -udz -aaV -abi -abF -acm -abF -abF -abF -abF -acw -adR -auN -afd -afx -afQ -agn -agS -ahE -aix -ahE -ajV -akO -alO -amT -anZ -apn -aqw -ana -atd -auP -awr -aye -azG -aBe -aCB -aEx -aGt -aIw -aJP -aBe -aNv -aNv -aQO -aws -aUa -aQL -awK -aLP -aZF -baL -bbO -biS -biU -biU -bjS -biR -bkb -blb -bmE -boc -bpu -bqC -bmA -bsV -btZ -bvn -bwd -bxA -byY -bAc -bBG -bBP -pju -bDF -bEG -bFy -xUe -bBP -bIo -bJi -bKb -bKU -bLG -bMm -bMR -bNK -bOt -bPb -bPD -vEy -oaR -bOR -cHF -ikm -cER -bSN -bTw -bUd -bUH -bST -bVA -bWa -bWo -bWa -bWa -bWa -bWa -bWa -wVv -wVv -bYZ -ivR -jnD -bSM -bGC -bGC -peg -bMU -pDF -cdi -bEK -bMV -peg -bPH -bGC -bEK -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(126,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aad -rsL -aaj -aaj -aaj -aaw -aad -aaN -aaV -aaV -abG -aaV -ydb -fZm -fZm -vuW -aaV -adS -aeC -afd -afy -afR -ago -agT -ahF -aiy -ajp -ajW -akP -alP -akR -akR -akR -akR -arP -ate -auQ -aws -ayf -azH -aBi -aCC -aEy -aGu -aIx -aJQ -aBe -aws -aws -aQP -aws -aUc -aQL -aWT -aLP -aZF -baL -bbS -bdu -beV -beV -bkd -bdw -bkb -bhE -qBC -bmD -bpw -bqE -brI -bsX -bub -bvo -bwd -bxB -byY -bAN -bCz -bBP -bCN -bDF -bEH -bFz -bGy -bBP -bIp -jch -bKc -bJg -bLE -bMn -bMS -baD -bOt -pzj -fdq -bQb -xRc -xRc -xRc -xRc -gxS -bSO -bTx -bUe -bTu -bTY -bVA -bWb -bWp -bWR -dMA -fnn -fGD -bVc -bWa -bWa -bYZ -wcO -bYy -bSM -caT -bGC -bGC -ccq -ccP -cdi -bEK -bEK -bEK -bEK -bEK -bEK -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(127,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aad -xDq -aak -aao -aar -aax -mlY -tnQ -pnV -wZe -rkv -dED -cMe -acx -abU -sZw -adv -adT -aeD -afd -afz -afS -agp -agU -ahG -aiz -ajq -ajX -akQ -alQ -amU -aoa -apo -aqx -arQ -atf -alL -awt -ayg -azI -aBj -aCD -aEz -aGv -aIy -aJR -aws -aNw -aPk -aQQ -aSy -aUa -aQL -aWU -aLP -aZG -baL -baL -baL -beX -bgl -bhF -baL -bkb -bld -bmF -bod -bld -bkU -bkU -bsY -buc -bld -bwd -bwd -gZD -bwd -bwd -bBP -pju -bDF -bEG -bFA -bGz -bBP -bIq -bJg -kEs -bJg -bLF -bMo -bMT -bNM -bOt -bPc -bPF -lGd -bQy -bRe -wil -bOR -xfy -bOt -bTy -buV -bTy -bSM -bVw -bWS -bWq -bWS -bWS -bWS -bWS -bWS -bWS -bWS -bZb -bZu -qlw -bSM -bPH -bGC -bGC -ccr -ccR -cdi -bEK -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(128,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aaO -aaT -abk -abH -tgD -qvD -acy -hSk -xFo -aaV -adU -aeE -afd -afA -afT -agq -agV -ahH -aiA -aiA -ajY -akR -alR -amV -aob -app -aqy -ana -atg -auR -aws -aws -aws -aws -aCE -aEA -azK -aIy -aJR -aws -aNx -aNx -aQQ -aSz -aUa -aQL -awK -aLP -aZD -baM -bbU -bdy -gZP -gZP -bhz -bhA -bke -ble -bmG -boe -bpx -bqF -brJ -bsZ -bud -bvq -bwe -bxD -byZ -bAd -bBc -bBP -bCO -bDG -bEG -bFB -snu -bBP -bGr -bGr -bGr -bGr -bGr -bGr -bGr -bNN -jPX -jPX -jPX -bQd -jPX -jPX -jPX -bRU -bSw -bkY -bTz -bUg -bUI -bVZ -bVC -bTz -bWr -bWT -bXn -bXn -bXn -bXn -bYA -bYM -bYN -bYN -bYN -bVd -bGC -bGC -bGC -ccp -ccQ -cdj -bEK -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(129,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaP -aad -aaJ -abJ -abJ -abJ -abJ -abJ -abJ -abJ -adV -aeF -afd -afd -afd -afd -agW -afd -afd -afd -afd -akS -alS -amW -aoc -apq -aqz -ana -ath -auS -awu -ayh -azJ -aBk -aCF -aEB -aGw -aIz -aJS -aLF -aNy -aPl -aQR -aPl -aUd -aQL -awK -aLP -aZF -baM -bbV -bdz -pIA -bgn -bhH -biX -bkf -blf -bmH -bof -bpy -bpy -bpy -bta -bpy -bpy -orj -bxE -bza -bAe -bBd -bBQ -bCP -bDH -bEI -bFC -bGA -bBP -bIr -enl -bKd -enl -rnc -cdj -bEK -bNO -jPX -bPe -bPG -bQe -bQA -bRg -jPX -bRV -nhV -bOR -bTA -bUh -bUJ -bUJ -bVD -beF -bWs -bWU -bXo -bWa -bWa -bWa -bYB -bYM -bZc -bZc -bZc -bSM -bEK -bEK -bGC -ccs -bFF -cdj -bEK -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(130,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aaJ -abJ -tZz -sJu -qkU -gWk -qHy -cpS -adW -aeD -afd -afB -afU -agr -agX -ahI -aiB -ajr -afd -akT -alT -amX -aod -apr -aqA -akN -ati -auT -awv -ayi -azK -aBl -azK -aEC -aGx -aIA -aJT -aLG -aNz -vfO -aQS -azK -aUe -aQL -aWV -aLP -aZF -baM -bbW -rmm -beZ -dpy -bhI -biY -bkg -bmO -bmK -beY -bpz -bqG -brK -bqG -bqG -bqG -bwg -bqG -brK -bAf -bBe -bBP -bCQ -bDI -bEJ -bFD -bGB -bBP -bIs -pie -gfU -bGC -bGC -bGC -pgB -bNO -jPX -bPf -kgr -meJ -dBV -tLL -jPX -yfB -bSx -bSU -bSU -bSU -bSU -bSU -bUf -bSU -bWs -bWU -bVE -bWa -bWa -bWv -bWN -bYN -bXp -bXV -bZw -bSM -saW -bGC -bGC -bEK -bFF -bPH -bEK -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(131,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaJ -abJ -vsB -ndP -ndP -fFb -ibm -abJ -adW -aeD -afd -afd -afd -ags -agY -ahJ -aiC -ajs -ajZ -akU -alU -amY -amY -amY -aqB -arR -atj -auS -awu -ayj -azL -aBk -aCG -aCK -aGy -aIB -aJU -aLH -aNA -aPm -aQT -azK -aUe -aQL -aWW -aLR -aZH -baN -baN -baN -jvW -mqT -bdB -xdi -baN -blg -bmJ -bog -bpA -bpD -brL -btc -btc -btc -bwh -btc -brL -bvv -bvv -bBP -bBP -bBP -bBP -bFE -bBP -bBP -kwM -pie -ubk -bGC -bGC -bMq -bEK -czw -xmZ -tid -woI -gKO -hND -fBZ -jPX -bOt -fpa -bSU -bTB -tCB -bUi -bUi -ben -bSU -bWs -bSM -bSM -bXG -bXG -bSM -bSM -bSM -bSM -bSM -bSM -bSM -bTG -bGC -cdk -bEK -ccT -cdk -bEK -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(132,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aab -aab -aaa -aad -aaJ -abJ -vsB -afi -fXR -jdn -nrw -fdP -adY -aeH -afd -dyX -afV -agt -agZ -ahK -agZ -ahK -afd -akV -alV -amZ -aoe -aps -aqC -akN -atk -auU -aws -aws -aws -aws -aCH -aEC -aGz -aIC -aJV -azK -azK -aPm -aQU -azK -aUf -aQL -awK -aLP -aZE -baN -bbY -bdC -bfa -bgp -bhJ -biZ -bkh -blh -wee -boh -bpA -bqH -brM -bzc -bzc -bzc -bwi -bzc -bzc -bAg -bBf -bBR -bCR -bDJ -bEK -bFF -bGC -bEK -bKe -enl -bMp -bMp -bGC -eNR -gJn -bNO -jPX -yfc -sSJ -oIE -tTC -iCN -jPX -eqx -oSi -bSU -sQW -hdD -bTC -bUj -bVG -bSU -bWt -bZS -bWa -bWa -bWa -png -bSM -bPH -bPH -bOv -bGC -bKY -bGC -bGC -bOv -bEK -ccT -cdk -bEK -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(133,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aad -abl -abJ -nKn -oLd -eMM -cFc -nvu -abJ -adZ -aeI -klC -klC -klC -klC -klC -klC -klC -nHe -nHe -nHe -nHe -ana -ana -apt -aqD -ana -atl -auS -awu -ayh -azJ -aBk -aCI -aCK -aGA -aGx -aJW -azK -azK -aPm -aQV -azK -aUg -aQL -awL -aLP -aZF -baN -bbZ -bdD -bfb -bfd -bhK -bhK -bkk -bli -vIU -aPg -bpA -bqI -brN -btd -bue -bvt -bwj -bwj -bzd -bvv -bBg -bBS -bCS -ucY -bEK -bFG -bGC -bEK -bEK -bEK -bEK -bEK -bMU -bGC -pie -bNO -jPX -jPX -jPX -jPX -jPX -jPX -jPX -dgV -tCf -bSU -bTD -bSU -bUK -bSU -bVH -bSU -bWu -bSM -bXq -mxd -bXq -bXq -bSM -qYU -bGC -bGC -bGC -pie -bEK -bEK -bEK -bEK -bFF -cdl -bEK -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(134,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aad -abm -abJ -dwz -jkj -nfX -kUL -kzx -tCH -abE -fXr -cqu -hoG -gkK -agu -hIP -ahL -klC -ajt -tzU -vSb -nHe -anb -vmm -cRg -aqE -arS -ati -auT -aww -ayi -azK -aBm -aCJ -aED -aGB -aID -aJX -aID -aNB -aID -aQW -aID -aUh -aQL -aWX -aYr -aZI -baN -bca -bdE -bfc -bgq -bhL -bja -bkj -blj -bmL -boj -bpB -bqJ -brO -bte -bue -bvu -bwk -bxJ -aWn -bvv -dJe -fNI -rtt -bDJ -bEK -bFH -bGD -bGD -bGD -bGD -bGD -bKg -bLJ -bKg -bKg -bKX -edb -ubY -ubY -ubY -ubY -ubY -gxX -heQ -bSy -bSU -bTE -bSU -bUL -bSU -bVI -bSU -bUZ -bSM -bSM -bSM -bSM -bSM -bSM -uLs -bGC -bGC -bGC -bGC -bGC -bGC -bGC -bEK -bFF -peg -bEK -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(135,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aab -aab -aab -aab -aab -aaa -aab -aab -aab -aab -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aad -aad -aad -aad -aaJ -abJ -ntF -vdx -vTy -fap -yiH -prr -abE -aeJ -klC -klC -afW -afX -aha -ahM -klC -klC -tzU -tzU -nHe -anc -aof -vmm -aqF -arT -atm -auS -awu -ayk -azM -aBk -aCK -azK -aEC -aIE -aJY -azK -snv -aPp -aQX -azK -aUi -aQL -awK -aLP -aZF -baN -bcb -bdF -bdF -bdF -bhM -bdF -bki -blk -bmK -bok -bpC -bqK -brP -btf -buf -bvv -bwl -bxK -bzf -bvv -bvv -bvv -bvv -bvv -bvy -bvy -bGE -bHy -bHy -bHy -bHy -bHy -bLK -blN -blN -blN -bEK -bEK -bEK -bEK -bEK -bEK -bEK -lhZ -sKS -bSU -bSU -bSU -bSU -bSU -bSU -bSU -bWw -fiR -oqH -cbg -nOq -bRC -bYD -pYZ -bGD -bGD -bGD -bGD -bGD -bGD -bGD -bGD -ccU -bMV -bEK -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(136,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aau -aau -aau -aad -aaF -aah -dGX -kwJ -ahO -iHM -uXN -gNS -kUL -kzx -kYT -aeb -aeJ -klC -klC -tek -xOt -xOt -ahN -agv -klC -tzU -tzU -nHe -and -aog -apu -aqG -arU -atn -auV -aws -aws -aws -aws -aCL -aEE -aCL -aws -aCL -aLI -aCL -aws -aCL -aSA -aCL -aQL -aKe -aLP -aZF -baN -bcc -bdG -bfe -bgs -bhN -bjb -bkl -blk -bmK -bok -bpD -bqL -brQ -btg -bug -bvv -bwm -bxL -bxL -bAh -bBh -bBT -bCU -bBT -bEL -bFI -bGF -bHz -bIv -bJm -bIv -bHy -bLL -blN -bMW -bNQ -blN -aaa -aaa -aaa -aaa -aaa -bEK -bbD -sYI -ubY -ubY -ubY -ubY -ubY -ubY -uxI -ubY -ubY -ufU -bWW -fbb -bPH -bEK -bEK -bEK -bEK -bEK -bEK -bEK -bEK -bEK -bEK -bEK -bEK -bEK -aab -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(137,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aad -aaq -aah -aay -aaG -aaQ -aaW -abn -abJ -ump -pfO -rqe -tHM -djF -abJ -aaV -aeK -klC -eCY -afX -eQr -wwF -lvP -aiF -klC -adH -tzU -nHe -ane -aoh -apv -aqH -xSa -ato -auP -awx -ayl -azN -aws -aCM -azK -aGC -aws -aCM -azK -aNC -aws -aCM -azK -aUj -aQL -awK -aLP -aZF -baN -baN -baN -baN -baN -baN -baN -baN -blm -bmK -bom -bpA -bqM -brR -bth -kcx -bvv -bwn -bxP -bxP -bxP -bxP -bBU -bAj -bDL -bDL -bFJ -bGG -bHA -bIw -bJn -bKh -bHy -bKZ -bMr -bBo -bNR -blN -aaa -bEK -bEK -bEK -bEK -bEK -bEK -bEK -bEK -bEK -bEK -bEK -bEK -bEK -bEK -bRA -bEK -nlu -bXX -fCY -bXX -bEK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(138,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aau -aau -aau -aad -aad -aad -aad -udz -abJ -abJ -abJ -abK -abK -abK -abK -abI -aeL -aad -eCY -afX -afX -afX -afX -aiG -klC -akc -akZ -gdq -anf -aoi -apv -aqI -arV -adP -auP -awx -aym -azO -aws -aCN -aEF -aGD -aws -aCN -aEF -aND -aws -aCN -aEF -aUk -aQL -aKd -aLP -aZF -avd -avd -bfh -bjt -aXW -bdH -bkn -bgv -bln -wee -bon -cwb -cwb -cwb -bti -buh -bvw -bwo -bxN -bzh -bAi -bAi -bBV -bCW -bDM -bAi -bFK -bGH -bHz -bIx -bJo -bKi -bHy -bKZ -blN -bMX -bNS -blN -aaa -bEK -vOq -oZN -bRi -bEK -bRW -bRY -bSV -hcd -eGj -eGj -eGj -pie -bEK -bGC -bEK -sny -dqb -qLp -bXX -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(139,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aad -aaJ -aad -aeV -wzO -abK -abZ -aco -acA -anr -aeM -aad -klC -afY -etp -mFU -fiO -klC -klC -akd -tzU -nHe -ang -vmm -apw -aqJ -arW -adP -auP -awy -ayn -azP -aws -aCO -aEG -aCO -aws -aCO -aLJ -aCO -aws -aCO -aSB -aCO -aQL -aWY -aLP -aZF -baO -bcd -adb -aJZ -aYl -bdI -bfi -bgw -blo -bmN -boo -bpE -boo -boo -btj -bui -bvx -bwp -bxO -bAj -bAj -sJR -bBW -bCX -bDN -nMW -bxP -bxP -bHy -bHy -bHy -bKj -bHy -bKZ -blN -blN -blN -blN -blN -blN -cJo -luK -prp -hxZ -bRX -bRY -bSW -dQv -pie -oGJ -luK -prp -bRB -bGC -bEK -fSC -gdi -bYo -bXX -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(140,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aad -nOE -aad -rvb -aah -abK -aca -acp -abK -aed -aeN -abV -klC -klC -klC -klC -klC -klC -tzU -ake -lQu -nHe -anh -aje -apx -aqK -arX -atp -auW -awz -awz -awz -aBn -aCP -aEH -aGE -aIF -aCP -aEH -ubm -aPq -aNE -aSC -aUl -aVv -aWZ -aLP -aZJ -baP -bce -aCf -bhP -bcO -bdJ -bfj -bgZ -blp -bmO -bmO -bpF -bqO -bmO -bmK -buj -bvy -bwq -bxP -bxP -dsn -bvz -bBX -bvz -bDO -bvz -lKe -bxP -bxP -bxP -bHy -bKk -bHy -bKZ -blN -bMY -bNT -bOw -bPg -blN -nXe -prp -prp -bEK -bRY -bRY -dxG -dQv -hFB -bUk -eGj -prp -bEK -bGC -bEK -bXX -bXX -bXX -bXX -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aab -aab -aab -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(141,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -ami -aaJ -aad -abp -aah -abK -acb -ade -adx -aee -aeO -aad -klC -klC -klC -klC -klC -aiI -ajy -xkB -nHe -nHe -vFG -vFG -vFG -vFG -vFG -atq -abF -awA -abF -abF -aBo -abF -abF -aGF -abF -abE -abF -uwF -aPr -acm -abF -aUm -aVv -aWZ -aLP -aZF -baQ -bcf -aHF -bgt -bgt -bdK -bgo -bfh -bhx -bhR -bhR -bji -afO -brT -bmK -buk -bvy -bwr -bxQ -bxQ -bAk -bvz -bBY -bCY -bDP -bvz -bFL -bxQ -bxQ -bIz -bHy -bKl -bHy -bLL -blN -bJq -bNU -bOx -bOx -blN -ruO -prp -bbw -bEK -tYo -bRY -sOQ -hAB -eGj -eGj -bUk -prp -bEK -beH -bEK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(142,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -atu -aaJ -aad -aad -afJ -abK -abK -abK -abK -aef -aeP -afj -ePU -eZE -pFK -hQf -nHe -hRF -tzU -tzU -adH -usI -wQX -xOq -lQu -amd -aaV -aaV -aaV -aaV -aaV -aaV -aaV -aaV -eZL -fZZ -aaV -lPl -aKa -aLM -aKa -ahC -ahC -ahC -ahC -aXa -aYq -aZC -avd -avd -bfh -aQY -bdv -bfh -bfh -bfh -bhO -bhS -bjd -aHH -bjP -bmO -btk -bul -bvz -bws -bxR -bxR -bAl -bvz -bBZ -bCZ -oqn -bvz -bFM -bGI -bGI -bIA -bvz -bHy -bHy -bKZ -bMs -bBo -bNV -bOy -bPh -blN -kQn -prp -luK -bEK -bRY -bRY -sOQ -dQv -eGj -eGj -eGj -pie -bEK -bGC -bEK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(143,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -xJq -abo -aaT -aaT -aaT -vNK -aaT -gVC -aad -aad -aad -aad -tHD -afZ -agy -eeM -ahP -vLA -vLA -vLA -vLA -vLA -vLA -qWz -xbS -vLA -arY -ujv -eHa -eHa -xBh -amx -tDa -iTH -wfx -qOc -atr -aKb -aNF -awK -aNF -awK -aSD -aNS -aNS -aXb -aYs -aZL -fkF -eFN -bdL -bfk -bgx -bff -bgr -aPo -aPo -bhT -bje -bju -bjU -brU -btl -aVi -bvz -bwt -bxS -qYj -bzj -bBi -bCa -bDa -bzj -bEN -bzj -qYj -bHB -bIB -bvz -bBr -hAo -lVA -blN -bJq -bNW -wxq -bOz -blN -szC -mdY -prp -ciZ -bRY -tYo -sOQ -dQv -oGJ -luK -pie -prp -bRB -bGC -bEK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(144,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aad -abM -amS -aaA -aah -lcc -aah -abo -aaT -aaT -aaT -afk -jnE -tzU -agb -hRF -nHe -nHe -nHe -nHe -nHe -nHe -dTO -fnE -wzv -wzv -wzv -wzv -wzv -wzv -wzv -ryo -hnM -xSs -cBk -rko -atr -aKc -aLO -aNG -aPt -aPt -iUC -aPt -aPt -aPt -aYt -aZM -baS -bch -bdM -bfl -bfl -bfg -aPo -bhj -aPn -bhU -bjf -bjK -bjU -bmO -bmK -bun -bvz -bwu -bxT -bzk -bAm -bvz -bvz -bBj -bvz -bvz -bAm -bzk -bxT -bIC -bvz -bBr -bBo -bLL -blN -bNa -bNT -bOA -bPi -blN -tst -xJo -wfI -bEK -bRY -vIW -sOQ -dQv -bcZ -eGj -eGj -rnR -bEK -bGC -bEK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(145,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aad -aad -aad -aaD -aaA -hUy -nHe -nHe -nHe -nHe -nHe -nHe -nHe -hjQ -vdA -nHe -nHe -aiK -gYT -lFg -ydw -isH -ayu -lgq -wzv -fSk -pHY -lKZ -auZ -awD -pUR -mOb -pSX -aCV -oQU -aGI -vXD -iap -gfO -aNH -azX -awK -slG -awK -aVw -awK -aYu -aZN -fkF -eFN -bdN -bfk -bgy -bff -bgu -bhq -bhQ -bjc -bjg -bjL -bkm -bmO -bmK -buo -bvz -abL -bxT -bzl -bAn -bvz -bCb -bCc -guf -bvz -hmb -bzl -bxT -acS -bvz -rbT -bBo -bKZ -blN -aam -blN -blN -blN -blN -blN -blN -bEK -bEK -bSa -bEK -bEK -bEK -bEK -bEK -bEK -bEK -bEK -bGC -bEK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(146,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aad -aad -nHe -hBb -nHe -adh -ady -aei -tKo -erq -nHe -tzU -viQ -nHe -apy -aiL -dnl -akf -aiL -nHe -nHe -hLy -wzv -mPJ -arZ -wRZ -usi -gxO -ayr -azT -aBp -wpR -auY -hMF -cPY -hIh -tPQ -gBi -aPu -aQZ -aSE -aSE -aVx -aPu -aPu -aZO -baT -bci -bdO -bdO -bgz -afO -afO -afO -afO -afO -bjh -afO -afO -brV -wnj -bup -bvz -abW -bxU -bzk -bzk -aap -bCc -bCc -bCc -aap -bzk -bzk -bxU -acT -bvz -bDZ -bBo -bLL -oYi -bNb -hzA -jUF -uKO -nLf -mBV -blN -hqT -ssY -prp -fbL -bVJ -gfU -bRA -bGC -bGC -bGC -bGC -bGC -bEK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(147,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -nHe -hiV -acU -dFX -nOy -lQu -adi -afl -kZT -lQu -agz -oAO -fla -grF -jQc -pzv -wdj -aiL -nHe -fnE -wzv -sfh -usi -awE -hza -awF -slV -ulg -rJs -slM -cUQ -aEN -vXD -hVm -nnH -aNI -aPu -aRa -aSF -aUn -aVy -aXc -aPu -aZP -baT -bcj -bdP -bfm -bgA -baT -aaa -bkr -blu -bmU -bov -bpL -bqS -brW -btm -buq -bvz -acq -acr -aWu -bAo -bvz -bCd -bDb -bDR -bvz -bAo -acz -aZi -adc -bvz -bDZ -bBo -bKZ -hcZ -ykd -bNX -dtt -lbQ -xoG -hAQ -blN -liM -prp -bSb -bEK -bSZ -bGC -bEK -bPH -qgs -bPH -xLH -bMV -bEK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(148,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -nHe -qow -uLz -siM -dpr -siH -vnR -taq -nHe -nOy -kAK -nHe -xGz -gYT -ahQ -amc -xOq -eSt -nHe -fnE -wzv -sPY -usi -usi -usi -awG -qSC -qSC -aBq -sJg -aEO -aGL -qSC -cCf -aLQ -awK -aPu -aRb -aRb -aUo -aVz -aXd -aPu -aZQ -baT -bck -bdQ -kAV -bgB -baT -aaa -bkr -blv -bmV -bow -bpM -bqT -brX -btn -bur -bvz -bvz -bvz -bvz -bvz -bvz -wLl -bvz -bvz -bvz -bvz -bvz -bvz -bvz -bvz -qSv -bBo -bLL -blN -mPY -kdE -bNX -bNX -fMf -rOK -blN -bEK -bEK -bEK -bEK -cdk -gfU -bEK -bEK -bEK -bEK -bEK -bEK -bEK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(149,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -nHe -slK -jLO -adj -adz -adz -adz -adz -nHe -kWX -fjR -nHe -qOK -aiM -ajB -hgW -nCJ -psI -nHe -fnE -wzv -siO -uyu -piW -nyV -awH -qSC -mdO -aBr -aCW -pcx -aGM -xOM -awK -aLQ -awK -aPv -aRb -aSG -aUp -aVA -aXe -aPu -aZQ -baT -bcl -bfn -bfo -bgC -baT -aaa -bkr -blw -bmW -box -aTg -bqS -brY -btq -ivh -gKs -bwy -bvA -bzn -bvA -pyd -jFC -lIG -kbS -bDc -bDS -bBl -wEn -xHy -blN -bDZ -bBo -bLM -bEP -dtt -bNX -uNQ -bNX -bNX -sjg -mbc -bGC -bGC -bGC -bGC -bbX -bTG -bEK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(150,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -nHe -uiD -tzU -adk -tzU -tzU -lQu -aen -tzU -iHb -agb -nHe -ahR -adC -dnl -eqc -gYT -psI -nHe -fnE -wzv -wzv -cXE -kwt -xsS -awI -qSC -wRS -wJm -aCX -sDV -qNw -tGq -awK -rGO -awK -aPw -aRc -aSH -aUq -aVB -aXf -aPu -aZQ -baT -bcm -bdS -add -bgD -baT -baT -baT -blx -blx -boy -blx -blx -brZ -btp -bus -sCs -bwz -bvB -bzo -bvB -voO -clK -bBl -aWw -bDd -bDT -bBl -dEr -nlD -blN -bFO -bHD -bLN -phM -bNd -xLK -blN -xjD -kvH -kMO -blN -bEK -bEK -bEK -bEK -bEK -bEK -bEK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(151,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -ylS -nFQ -qNm -qNm -adB -aej -goR -adk -sCx -toT -adA -nHe -cip -tzU -pRZ -sbm -gYT -lAa -adH -fnE -hRF -wzv -wzv -rgP -wzv -wzv -qSC -ppS -wJm -hji -awJ -kjO -qSC -cwl -aLS -aNL -aPx -aRd -aSI -aSI -aVC -aXg -aPu -aZR -baT -bcn -bdT -bfq -bgE -bhV -bjj -baT -bly -bmX -boz -bpO -bqW -bsc -btm -buw -buw -buw -buw -buw -buw -buw -lSK -bBl -bBl -bBl -xpf -bBl -bDU -blN -blN -bFN -bKZ -bGK -blN -bDZ -bNZ -vgH -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(152,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -ubP -gOO -gYT -acV -gYT -tzU -gYT -acV -qoC -agb -adk -nHe -haE -hKl -acR -mmr -gYT -tzU -xMi -tXm -ncH -rVl -acn -xhe -won -won -sdW -vtA -ryB -vvS -mVU -pdN -xOM -awK -aLT -awK -aPy -aRe -aRb -aRb -aRb -aRb -aYv -aZQ -baT -bco -bdU -bfr -bgF -bhW -bjk -bks -blz -bmY -boA -bmZ -bqX -bsc -btm -bux -bvC -bvC -bvC -bvC -bvC -vgi -gcN -quy -bDV -ipL -iAK -pUs -wbf -bJp -tEq -bJp -bLa -bNX -blN -bDZ -oxt -mBl -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(153,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -nHe -lQC -gYT -acV -gYT -ael -gYT -acV -xhU -agb -adH -nAn -nAn -nAn -nAn -nAn -nAn -nAn -nAn -nAn -nAn -nAn -nAn -mXs -rlA -hRF -qSC -uhH -pnC -aGN -aok -ayt -tGq -awK -aLT -awK -aPz -aCb -aSJ -aUr -aVD -ijX -aPu -aZS -baU -bcp -bdV -bfs -bcp -bhX -bjl -baT -blA -bmZ -boB -bpQ -bqX -bsc -btm -buv -bvC -bvC -bvC -bvC -bvC -lSY -bBo -tUJ -blN -bBo -xVv -lUQ -uvI -bBo -rcu -nXX -nIf -bLP -blN -bNe -mIZ -blN -bPj -bPI -bQf -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(154,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -kaW -ulG -sCx -tzU -tzU -tzU -sCx -tzU -eFJ -agc -agA -nAn -aiN -aiN -aiN -aiN -aiN -aiO -aiN -aiN -aiN -aiN -nAn -nAn -nAn -nAn -oNS -oNS -oNS -oNS -oNS -oNS -oNS -aKg -aLU -aNN -aPu -aPu -aPu -aPu -aPu -aPu -aPu -aZT -baT -bcq -bdW -bft -bgG -bhY -bjm -baT -blB -bna -boC -bpR -bqY -bsc -btm -buw -bvC -bvC -bvC -bvC -bvC -buw -bJr -tUJ -blN -blN -blN -blN -blN -blN -bLQ -hqy -qrJ -blN -blN -bNe -bOa -bOB -bPk -bPJ -bQg -nsd -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(155,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -wZD -qGK -gIw -acV -gYT -aen -gYT -afn -xhU -eFZ -aen -nAn -aiN -aiN -aiN -aiN -aiN -aiO -aiN -aiN -aiN -aiN -aiN -aiN -aiN -aiN -aiO -aiN -aiN -aiN -aiN -aiN -avf -aKf -aLT -aNO -avd -aRg -aSK -aUs -aRi -aXh -aYw -aZQ -baT -baT -baT -baT -baT -bhZ -bhZ -bhZ -bhZ -bhZ -bhZ -bhZ -bkr -bsd -btm -bux -bvC -bvC -bvC -bvC -bvC -vgi -bBo -tUJ -blN -gBP -ohn -ujU -bHG -qPd -rcu -qHj -fQV -gHJ -blN -blN -blN -blN -bPl -bPI -bQf -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(156,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -nHe -ciw -gIw -acV -gYT -dDC -mxN -acV -kVD -agb -adk -nAn -aiN -aiN -aiN -aiO -aiO -aiO -aiO -aiO -aiO -aiN -aiN -aiO -aiO -aiO -aiO -aiO -aiO -aiO -aiN -aiN -avf -cUy -aLV -cUy -avd -aRh -aSL -aUt -aRi -aXi -aYx -aZU -baV -bcr -bdX -bfu -tFj -bhZ -bjn -bkt -blC -bnb -boD -bpS -bra -gNO -btm -buv -bvC -bvC -bvC -bvC -bvC -lSY -pFU -fJU -blN -jCo -jCo -jCo -jOm -nIf -rcu -bKo -fQV -bLR -vgH -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(157,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -nHe -nHe -kKt -adm -nHe -aeo -adm -nHe -gVl -agd -tzU -nAn -aiN -aiN -aiO -aiO -alf -alj -amh -aom -aiO -aiO -aiO -aiO -asf -xin -ayx -aoo -avg -aiO -aiO -aiO -aiO -xoJ -ubL -aNP -avd -aRi -aSM -aRi -aRi -aXj -aYy -aYy -aYy -bcs -aYy -bfv -tFj -bhZ -bjo -bku -blD -bnc -boE -bpT -brb -bse -btt -buw -buw -buw -buw -buw -buw -buw -wlZ -tuN -blN -pok -cuh -oms -bHG -kiM -rcu -bKp -bLc -dqs -mBl -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(158,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -nHe -hRF -tzU -ony -nAn -aiN -aiN -aiO -aki -vtZ -cxC -alg -aon -izE -aiO -apE -izE -izE -izE -ats -izE -izE -ayA -aiO -aGO -dVB -awK -aLW -aNQ -aPA -aRj -aRj -aRj -aRj -aXk -aYz -aZV -baW -bct -aYy -bfw -bbo -bhZ -bjp -bku -blE -bnd -boF -bpU -brc -bsf -btu -buy -sJK -bwA -bxY -bzp -bAr -buC -vPv -iSy -blN -blN -blN -blN -blN -vJE -rcu -blN -blN -blN -blN -blN -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(159,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -nHe -oEL -tzU -nRq -nAn -aiO -aiO -aiO -akj -luT -fHA -fHA -aop -rHX -aqM -noF -ase -ase -ase -ayz -ase -ase -ase -aER -aGP -ayB -aKi -aLX -aNR -avd -avd -avd -avd -avd -avd -aYy -aZW -baX -bcu -aYy -bfx -bgH -bhZ -bjq -bku -blF -bne -boF -bpV -brd -hoV -btv -buz -bvD -bwB -bvD -bvD -bAs -buC -bCi -uVs -blN -nJe -ohn -gKF -bHG -nug -rcu -bHG -ncB -ohn -cnM -blN -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(160,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aab -aab -aaa -aox -nHe -nHe -nHe -bJA -nAn -aiN -aiN -aiO -amL -vtZ -alh -amf -apB -vjA -aiO -amP -swo -swo -swo -att -swo -swo -fFw -aiO -aGQ -dVB -awK -aLY -aNS -aNS -aRk -aSN -aUu -aVE -aXl -aPC -aPC -aPC -aPC -aPC -aPC -bgI -bhZ -bjr -bkv -blG -vIC -uVj -bpV -brd -bsg -btw -buA -bvF -bwC -bxZ -bxZ -bAt -buC -bCk -rzp -blN -jCo -jCo -jCo -ofm -nIf -rcu -bKr -jCo -jCo -jCo -dwP -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(161,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aab -aaa -aox -nHe -adF -tzU -nRq -nAn -aiN -aiN -aiO -aiO -ali -amg -anq -apC -aiO -aiO -aiO -aiO -asf -aoo -ayy -aoo -avg -aiO -aiO -aiO -aiO -aKh -aLZ -rJh -kmW -aRl -aSO -aUv -aVF -aXm -aPC -aYC -baY -bcv -bdY -aPC -bgI -bhZ -bjs -bkw -blH -bnf -boG -bpW -iqX -bsh -fLv -buB -bvG -bwD -bvD -bzr -bzr -buC -mCf -wIa -blN -tzn -bFR -vKR -bHG -nIf -rcu -bHG -gXa -bFR -myj -blN -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(162,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aab -aaa -aox -nHe -hRF -tzU -qgC -nAn -aiN -aiN -aiN -aiO -aiO -ciu -aiO -aiO -aiO -aiN -aiN -aiO -aiO -aiO -aiO -aiO -aiO -aiO -aiN -aiN -avf -aKj -aMa -aNT -aPB -aRm -aSP -aUw -aRm -aXn -aYA -aZX -baZ -bcw -bdZ -aPC -bgJ -bhZ -bhZ -bhZ -bhZ -bhZ -bhZ -bhZ -bng -bsi -bng -buC -bvH -buC -buC -buC -buC -buC -blN -xge -blN -blN -blN -blN -blN -juv -rcu -blN -blN -blN -blN -blN -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(163,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aab -aab -aaa -aox -nHe -saL -xOq -nRq -nAn -aiN -aiN -aiN -aiN -aiN -ciu -aiN -aiN -aiN -aiN -aiN -aiN -aiN -aiN -aiO -aiN -aiN -aiN -aiN -aiN -avf -aKk -aoq -aNU -aPC -aRn -aSQ -aUx -aUx -aXo -aPC -aZY -bba -bcx -bea -aPC -bgK -bia -qMn -qMn -blI -bng -boH -bpX -ifx -bsj -bng -buD -sby -buG -byb -blN -bAv -uni -nQp -rdt -blN -nKE -nKE -bNT -fxa -rUQ -rcu -prY -bLd -vjG -blN -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(164,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aab -aab -aaa -aox -nHe -uLu -tzU -kxP -nAn -aiN -aiN -aiN -aiN -aiN -ciu -aiN -aiN -aiN -aiN -nAn -nAn -nAn -nAn -nAn -nAn -aBv -aBv -aBv -aBv -aBv -aKl -aMb -aNV -aPD -aRo -aSR -aUy -aVG -aXp -aYC -aYC -bbb -bcy -beb -aPC -bgL -aRi -aRi -aRi -blJ -bng -boI -bpY -brf -bsk -bng -iBL -sby -mbW -xpb -blN -sby -esz -bCj -bDg -dYN -gsM -eiT -ovg -eiT -eiT -rgq -blN -lpH -bLS -blN -aaa -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(165,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aab -aab -aaa -aox -nHe -nHe -gbQ -nRq -nAn -nAn -nAn -nAn -nAn -nAn -agD -nAn -nAn -nAn -nAn -nAn -ahS -amk -amk -amk -azZ -aBw -aDc -aES -aGR -aBx -aKk -aoq -aNU -aPD -aRp -aSS -aSS -aVH -aSS -aSS -aZZ -bbc -bbc -bec -aPC -bgM -bep -aXh -aRi -blK -bng -boJ -bpZ -bre -bsl -bng -buF -bvK -bwE -bNX -blN -kYi -nIc -nIc -uzx -blN -blL -aXv -blN -blN -blN -blN -blN -jpf -blN -blN -blN -dwP -blN -blN -blN -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(166,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aab -aaa -aaa -aox -aox -nHe -hQf -qqz -txW -amk -amk -amk -amk -amk -wra -amk -amk -amk -amk -amk -atv -nAn -nAn -nAn -nAn -aBv -aDd -aET -aGS -aBx -aKm -aMc -aNW -aPD -aRq -aST -aUz -aVI -aXq -aYC -aYC -aYC -aYC -aYC -bfy -bgN -aSL -mEf -aRi -blL -bng -boK -bqa -aTh -bsm -bng -rVd -bBo -sby -xpb -blN -hPn -sTA -sTA -wZf -blN -blL -bJq -blN -gSO -bLb -qLv -ubB -ubB -ubB -qLv -ubB -ubB -ubB -cGg -blN -aab -aab -aab -aab -gQK -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(167,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aox -nHe -nHe -nHe -nAn -nAn -nAn -nAn -nAn -nAn -nAn -nAn -nAn -nAn -nAn -nAn -nAn -nAn -aab -aab -aab -aBv -aDe -aET -aGT -aBx -aKn -aMd -aNX -aPE -aRr -aSU -aUA -aVJ -aXr -aYD -baa -bbd -bcz -bed -aPC -bgO -bib -bjv -aRi -blL -bng -bng -bng -bng -bng -bng -blN -uoq -gKH -blN -blN -bHF -blN -blN -blN -blN -blL -oDJ -blN -bBo -hSJ -ubB -ubB -ubB -ubB -ubB -ubB -ubB -ubB -okn -blN -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(168,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aox -aox -aox -aox -aox -aox -aox -aox -aox -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aBv -aDf -aEU -aGU -aBx -aKo -ezQ -aNY -aPD -aPD -aPD -aPD -aPD -aPD -aPD -aPD -aPD -aPD -aPD -aPC -bbf -bbf -bjw -bam -blM -qMn -qMn -qMn -qMn -qMn -qMn -bvL -qMn -bwF -bFQ -sAE -bHH -qMn -qMn -qMn -qMn -wAF -bFN -blN -bBo -eye -vAC -vAC -vAC -vAC -vAC -vAC -vAC -vAC -vAC -blN -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(169,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -aox -aox -aox -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aBv -aDg -aEV -aGV -aBx -aKp -aMe -aNZ -aPF -aRs -aSV -aUB -aVK -aXs -aYE -bab -aPH -bcA -bee -bfz -bgP -bbf -bgL -bam -blN -bnh -boL -boL -bri -blN -blN -blN -blN -blN -blN -blN -bBr -bBr -bFP -vxo -bJq -mzO -pqu -uox -bBo -aZl -hTz -vAC -vAC -vAC -hTz -vAC -vAC -vAC -mmQ -blN -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(170,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -aox -aox -aox -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -avh -aab -aab -aab -aBv -aDh -aEW -aGW -aBx -aKq -aMf -aOa -aPG -aRt -aSW -aUC -aVL -aXt -aYF -bac -bbe -bcB -bef -aPH -bgQ -bbf -bgL -bam -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -blN -blN -blN -blN -xjD -kvH -kMO -blN -blN -blN -blN -blN -blN -dwP -blN -blN -blN -dwP -blN -blN -blN -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(171,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aoq -aqO -asg -atw -aoq -aqO -ayC -atw -aBv -aDi -aEX -aGX -aIJ -aKr -aMg -aOb -aPH -aRu -aSX -aUD -mVD -aXu -aYG -bad -aPH -aPH -aPH -aPH -aPH -bbf -bjx -bam -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(172,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aoq -aoq -aqP -ash -atx -avi -mjl -awM -aAa -aBx -aBx -aBx -aBx -aBx -aKs -aMh -aOc -aPF -aRv -aSY -aRv -aVM -aRv -aYH -bae -aPF -bcC -beg -bfA -bgR -bic -bgL -bam -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(173,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aoq -apF -aqS -asi -atx -avj -awN -ayE -aAb -aBy -aDj -aEY -vak -aIK -aKt -aMi -aOc -aPI -aRw -aSX -aUE -aVN -aXw -aYI -baf -aPI -bcD -beh -bfB -bgS -aoq -bgL -bam -aab -aab -aab -aab -aab -aab -aaa -aoq -aoq -aoq -aoq -aoq -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(174,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aab -aaa -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aor -apG -aqR -aqR -atz -aqR -aqR -aqR -aAc -aBz -aDk -vCz -gGa -aIL -qea -aMj -aOc -aPG -aRv -aSY -aRv -aVO -aRv -aYJ -bag -aPG -bcE -bei -bfC -bgT -aoq -bgL -bam -aab -aab -aab -aab -aab -aoq -aoq -aoq -bvM -bwG -bye -aoq -aoq -aoq -aoq -aoq -aoq -aoq -aoq -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(175,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aab -aab -aab -aab -aab -aab -aaa -aab -aab -aab -aaa -aab -aab -aab -aab -aab -aab -aab -aos -apH -aqS -asj -atA -atA -awO -ayF -aAd -avi -aDl -aFa -aHa -avi -aKu -aMh -aOd -aPH -aRx -aSZ -aUF -aPH -aXx -aYK -aXx -bbf -bcF -bej -aoq -aoq -aoq -bjy -aoq -blO -bni -boM -bqb -brj -aoq -aoq -buH -bvN -bwH -byf -bzt -aoq -bBs -bBs -bBs -bBs -bEQ -aoq -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(176,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aot -apI -aqS -ask -atB -avk -awP -aqS -aAe -avi -aDm -aFb -aHb -aIM -mtd -aMk -aOe -aPJ -aRy -aTa -aTa -aTa -aXy -aYL -aTa -bbg -aTa -bek -bfD -bgU -bid -bjz -bkx -blP -aqS -boN -aqS -aKx -bsn -aqS -aKv -bvO -aFc -aFc -bzu -aoq -bBs -bBs -bDh -bEa -bBs -aoq -bGM -bHJ -bIH -bHJ -bKs -dNy -hTO -bMu -dNy -weJ -hTO -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(177,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -acu -aab -aab -aab -ans -aoq -apJ -aqT -asl -atC -avl -awQ -ayG -aAf -aBA -aDn -aDn -aDn -aIN -aKw -aMl -aOf -aPK -aRz -aTb -aUG -aTb -aXz -aYM -aTb -bbh -aRz -bel -aoq -bgV -aoq -bjA -bky -blQ -bnj -boO -bnj -bnj -bso -bnj -cTo -bvP -bwI -byg -bzv -aoq -bBs -bBs -bBs -bEb -bBs -aoq -bGN -bHK -bII -bHK -bKt -bBt -bLU -bBt -bBt -bNf -hTO -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(178,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aou -apK -aqS -asm -atD -avm -awR -aqS -aAg -avi -fpX -rxH -aHc -aIO -gxP -gxP -gxP -aPL -aRA -aTc -aUH -ezQ -aXA -aHu -gxP -bbi -aRA -gxP -bfE -bgW -bie -aqS -bkz -blR -aqS -boP -aqS -brk -bsp -btx -aDo -aFc -aFc -byh -bzw -aoq -bBs -bBs -bDi -bEa -bBs -aoq -bGO -hTO -hTO -hTO -hTO -hTO -hTO -bMv -dNy -mGm -hTO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(179,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aov -apH -aqS -aqS -atE -atE -awS -ayH -aAh -aBB -aBB -aBB -aBB -aBB -aKy -aMm -aOg -aPM -aRB -aoq -aUI -aVP -aXB -aXB -aXB -bbj -aXB -aXB -aXB -aXB -avi -bjB -avi -blS -bnk -boQ -bqc -brj -aoq -aoq -buI -bvQ -bwJ -byi -bzx -aoq -bBs -bBs -bBs -bBs -bBs -aoq -bGO -hTO -aaa -aaa -aaa -aaa -hTO -hTO -hTO -hTO -hTO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(180,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aow -apL -aqR -aqR -atF -aqR -aqR -aqR -aAi -aBB -aDp -aFd -aHd -aBB -aKz -aMn -aOh -aPN -aRC -aBC -aUJ -gfB -aXB -aYO -bah -bbk -bcG -bem -rOC -rOC -aRi -bih -bkA -blT -bnl -boR -bno -aTJ -aoq -aoq -aoq -bvR -bwK -byj -bzy -aoq -aoq -aoq -aoq -aoq -aoq -aoq -bGO -hTO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aab -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(181,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aoq -apM -aqU -asn -atG -avn -awT -ayI -aAj -aBB -aDq -aFe -aHe -aBB -aKA -aMo -aOi -aPO -aRD -aTd -aUK -aVQ -aXB -aYP -bai -bbl -bcH -iOU -iOU -bgX -bif -bjC -bkA -blU -bnm -boS -bqd -brm -bkB -aab -aoq -aoq -aoq -aoq -bzz -bAy -bBt -bBt -bBt -bBt -bBt -bBt -bGP -hTO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(182,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aab -aab -aab -aab -aab -aaa -aoq -aoq -aqV -aso -atH -avi -awU -ayJ -aAk -aBB -aBB -aFf -aBB -aBB -aKB -aMp -aOj -aPP -aRE -aTe -aUL -aVR -aXB -aYQ -aYQ -bbm -bcI -bbm -mIp -bgY -aRi -bih -bkA -blV -bnn -boT -bqe -brn -bkB -aab -aab -aaa -aaa -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(183,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aoq -aqW -asp -atI -aoq -aqO -asg -atI -aBC -aDr -aFg -aHf -aBB -aKC -aMq -aOk -aPQ -aRF -aBB -aUM -aVS -aXB -aYR -bak -bbn -bcJ -bbn -bcI -bbn -aRi -bih -bkA -blW -bno -boU -bno -bno -bsq -aab -aab -aab -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(184,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -avo -aab -aab -aab -aBC -aDs -aFg -aHg -aBB -aKD -aMr -aOl -aPR -aRG -aBB -aUN -aVT -aXC -aTf -aTf -aTf -aTf -aTf -aTf -aTf -aRi -bjD -bkA -blX -bnp -boV -bqf -bro -bsr -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(185,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aBC -aDt -aFg -aHh -aBB -aKE -aMr -aMr -aPS -aRH -aBB -aUO -aVU -aXD -aTf -bal -bal -bal -bal -bal -aTf -fZL -bih -bkB -blY -bnq -boW -bqg -brp -bkB -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(186,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aaa -aab -aab -aab -aab -aBC -aDu -aFh -aHi -aBB -aKF -aMr -aKF -aPT -aRI -aBB -aUP -aUS -aUS -aTf -bal -bal -bal -bal -bal -aTf -mEf -bih -bam -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(187,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aBC -aDv -aFi -aHj -aBB -aKG -aMs -aOm -aPU -aRJ -aBB -aUQ -aVV -aUS -aTf -bal -bal -bal -bal -bal -aTf -opv -bih -bam -aab -aab -aab -aab -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aab -aab -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(188,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aBC -aBB -aBB -aHk -aBB -aKH -aMt -aOn -aPV -aRK -aBB -aUR -aUS -aUS -aTf -bal -bal -bal -bal -bal -aTf -bbo -aSL -bam -aab -aab -aab -aab -aab -aab -aaa -aab -aab -aab -aab -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(189,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aBD -aDw -aFj -aHl -aIP -aIP -aIP -aIP -aPW -aRL -aBB -aUS -aVW -aXE -aTf -bal -bal -bal -bal -bal -aTf -big -bjE -bam -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(190,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aBE -aDx -aFk -aHm -aHm -aHm -aHm -aHm -aPX -aRM -aBB -aUT -aTf -aXC -aTf -aTf -aTf -aTf -aTf -aTf -aTf -aSL -aSL -bam -aaa -aab -aab -aab -aab -aab -aab -aaa -aab -aaa -aaa -aaa -aaa -aaa -aab -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(191,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aBF -aDy -aFl -aHn -aIQ -aKI -aMu -aOo -aPY -aRN -aBB -aUS -aUS -aUS -aYS -aSL -aSL -aSL -bep -aSL -aSL -aSL -bih -bam -aaa -aaa -aab -aab -acu -aaa -aab -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(192,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aBC -aDz -aFm -aHo -aBC -aBC -aBC -aDz -aFm -aRO -aBC -aUU -aUS -aXF -aXC -bbo -bbo -bbo -aSL -aSL -bha -bih -aSL -bam -aaa -aaa -aaa -aab -aab -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(193,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aFn -aab -aaa -aaa -aaa -aab -aFn -aab -aTf -aUV -aVX -aXG -aTf -bam -bam -bam -bam -bam -bam -bii -bam -bam -aaa -aaa -aaa -aab -aab -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(194,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aab -aab -aab -aab -aTf -aTf -aTf -aTf -aTf -aox -aox -aox -aox -bam -bhb -aSL -bam -aox -aaa -aab -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(195,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aox -aox -aox -aox -aox -bam -bhc -bij -bam -aox -aox -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(196,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aox -aox -aox -bam -bhd -bik -bam -aox -aox -aox -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(197,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aox -aox -bam -bam -bam -bam -aox -aox -aox -aox -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(198,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aox -aox -aox -aox -aox -bjF -bjF -bjF -aox -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(199,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aox -aox -aox -bjF -bjF -bjF -bjF -bjF -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(200,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -aox -aox -aox -aox -aox -aox -aox -aox -aox -aox -aox -aox -aox -aox -aox -aox -aaa -aab -aab -aab -aaa -aaa -aab -aab -aox -aox -bjF -bjF -blZ -bjF -bjF -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(201,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -asq -asq -asq -asq -asq -asq -asq -asq -asq -asq -asq -asq -asq -asq -asq -aox -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aox -bjF -bjF -bma -bjF -bjF -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(202,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -asq -asq -asq -asq -asq -asq -asq -asq -asq -asq -asq -asq -asq -asq -asq -aox -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aox -bjF -bjF -bmb -bjF -bjF -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(203,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -asq -asq -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -asq -asq -aox -aaa -aab -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -bjF -bjF -bjF -bjF -bjF -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(204,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -asq -asq -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -asq -asq -aox -aaa -aaa -aaa -aaa -aab -aaa -aaa -aab -aaa -aaa -aab -bjF -bjF -bjF -aab -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(205,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -aox -asq -asq -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -asq -asq -aox -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(206,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -asq -asq -asq -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -asq -asq -aox -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aab -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(207,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -asq -asq -asq -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -asq -asq -aox -aaa -aaa -aaa -aaa -aab -aab -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(208,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -asq -asq -asq -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -asq -asq -aox -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(209,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -asq -asq -asq -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -asq -asq -asq -aox -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aab -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(210,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -aox -asq -asq -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -asq -asq -asq -aox -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(211,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -asq -asq -asq -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -asq -asq -aox -aox -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(212,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -asq -asq -asq -aaR -aaR -aaR -aaR -aaR -aaR -aaR -aaR -asq -asq -asq -aox -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(213,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -aox -asq -asq -asq -aaR -aaR -aaR -aaR -aaR -aaR -aaR -asq -asq -asq -aox -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(214,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -asq -asq -asq -asq -asq -asq -asq -asq -asq -asq -asq -asq -aox -aox -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(215,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aox -aox -asq -asq -asq -asq -asq -asq -asq -asq -asq -asq -aox -aox -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(216,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aox -aox -aox -aox -aox -aox -aox -aox -aox -aox -aox -aox -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(217,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(218,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(219,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(220,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(221,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(222,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(223,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(224,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(225,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(226,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(227,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(228,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(229,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(230,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(231,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(232,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(233,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(234,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(235,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(236,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(237,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(238,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(239,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(240,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(241,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(242,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(243,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(244,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(245,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(246,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(247,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(248,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(249,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(250,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(251,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(252,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(253,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(254,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(255,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} diff --git a/maps/aurora/aurora-5_interstitial.dmm b/maps/aurora/aurora-5_interstitial.dmm deleted file mode 100644 index 97eb8789e04..00000000000 --- a/maps/aurora/aurora-5_interstitial.dmm +++ /dev/null @@ -1,77148 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/unsimulated/chasm_mask, -/area/mine/unexplored) -"ab" = ( -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"ac" = ( -/obj/random/junk, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"ad" = ( -/turf/simulated/wall/r_wall, -/area/mine/unexplored) -"ae" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/telecoms_ladder) -"af" = ( -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"ag" = ( -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"ah" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/engineering_ladder) -"ai" = ( -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/engineering_ladder) -"aj" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"ak" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/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{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"al" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/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/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"am" = ( -/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/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"an" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"ao" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"aq" = ( -/obj/machinery/power/apc/south, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "eng_ladder"; - name = "interior access button"; - pixel_x = 24; - pixel_y = 1; - req_access = list(13) - }, -/obj/structure/cable, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/engineering_ladder) -"ar" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/elevator) -"at" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_main) -"au" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_main) -"av" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"aw" = ( -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"ax" = ( -/obj/effect/floor_decal/corner/yellow/full{ - dir = 1; - icon_state = "corner_white_full" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/firealarm/east, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"ay" = ( -/turf/simulated/open, -/area/turbolift/main_mid) -"az" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_main) -"aA" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/cell_charger, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -1; - pixel_y = 3 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"aB" = ( -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"aE" = ( -/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/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site) -"aF" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6; - icon_state = "corner_white" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"aG" = ( -/turf/simulated/open, -/area/turbolift/main_mid_aux) -"aK" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/yellow{ - dir = 6; - icon_state = "corner_white" - }, -/obj/machinery/light{ - dir = 4; - name = "damaged light fixture"; - status = 2 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"aL" = ( -/obj/effect/floor_decal/corner/yellow/full{ - dir = 8; - icon_state = "corner_white_full" - }, -/obj/structure/sign/vacuum{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"aM" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 5; - icon_state = "corner_white" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"aN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5; - icon_state = "corner_white" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"aQ" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "fuckyou2"; - name = "exterior access button"; - pixel_x = -32; - pixel_y = -26 - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"aS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"aT" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "fuckyou2_outer"; - locked = 1; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"aU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"aV" = ( -/obj/effect/floor_decal/corner/yellow/full, -/obj/item/clothing/head/cone, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"aW" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 10; - icon_state = "corner_white" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"aX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - name = "Construction Level Substation"; - req_one_access = list(11,24); - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/substation/interstitial) -"aZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"ba" = ( -/obj/effect/decal/warning_stripes, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "fuckyou2"; - pixel_x = -32; - tag_airpump = "fuckyou2_pump"; - tag_chamber_sensor = "fuckyou2_sensor"; - tag_exterior_door = "fuckyou2_outer"; - tag_interior_door = "fuckyou2_inner" - }, -/obj/machinery/airlock_sensor{ - id_tag = "fuckyou2_sensor"; - pixel_x = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1379; - id_tag = "fuckyou2_pump" - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Interstitial Airlock"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"bb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"bc" = ( -/turf/simulated/wall/r_wall, -/area/bridge/aibunker) -"bd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"be" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"bf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "fuckyou2_inner"; - locked = 1; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"bg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"bh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"bi" = ( -/obj/structure/closet/toolcloset, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_construction_site/office) -"bk" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southright, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_main) -"bl" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/eastright, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 8; - icon_state = "corner_white_full" - }, -/turf/simulated/floor/tiled, -/area/maintenance/bridge_elevator) -"bm" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 1; - icon_state = "corner_white" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/maintenance/bridge_elevator) -"bn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/maintenance/bridge_elevator) -"bo" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "fuckyou2"; - name = "interior access button"; - pixel_x = 32; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/bridge_elevator) -"bp" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"bq" = ( -/obj/effect/floor_decal/corner/yellow/full{ - dir = 1; - icon_state = "corner_white_full" - }, -/obj/machinery/alarm/east, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/maintenance/bridge_elevator) -"br" = ( -/obj/machinery/requests_console/east{ - department = "Construction Office"; - departmentType = 1; - name = "Construction RC" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_construction_site/office) -"bs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/motion{ - c_tag = "SAT Chamber - Motion"; - dir = 1; - network = list("Secure"); - tag = "icon-camera (NORTH)" - }, -/obj/machinery/anti_bluespace, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"bu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"bv" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"bw" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/eastright, -/obj/effect/floor_decal/corner/yellow{ - dir = 9; - icon_state = "corner_white" - }, -/turf/simulated/floor/tiled, -/area/maintenance/bridge_elevator) -"bx" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled, -/area/maintenance/bridge_elevator) -"by" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/maintenance/bridge_elevator) -"bz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/bridge_elevator) -"bA" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 6; - icon_state = "corner_white" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/bridge_elevator) -"bB" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - 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 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"bC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/bridge/aibunker) -"bD" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/sign/securearea{ - name = "\improper NO ENTRY"; - pixel_x = 32 - }, -/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/plating, -/area/maintenance/bridge_elevator) -"bE" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = 24; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_construction_site/office) -"bF" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Construction Office"; - req_one_access = list(11,24); - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"bG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"bH" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - icon_state = "map_on"; - target_pressure = 150; - use_power = 1 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_main) -"bI" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/eastright, -/obj/effect/floor_decal/corner/yellow/full, -/obj/structure/sign/drop{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/maintenance/bridge_elevator) -"bJ" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 8; - icon_state = "corner_white" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/maintenance/bridge_elevator) -"bK" = ( -/obj/effect/floor_decal/corner/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/maintenance/bridge_elevator) -"bL" = ( -/obj/effect/floor_decal/corner/yellow/full{ - dir = 4; - icon_state = "corner_white_full" - }, -/obj/structure/cable/green, -/obj/machinery/power/apc/south, -/turf/simulated/floor/tiled, -/area/maintenance/bridge_elevator) -"bM" = ( -/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/plating, -/area/maintenance/bridge_elevator) -"bP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_main) -"bQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"bR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_main) -"bT" = ( -/turf/simulated/floor/reinforced/airless, -/area/mine/unexplored) -"bU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/reinforced/airless, -/area/mine/unexplored) -"bV" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "fuckyou1_pump" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"bX" = ( -/turf/simulated/open, -/area/turbolift/command_mid) -"bY" = ( -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "fuckyou1"; - pixel_x = -32; - tag_airpump = "fuckyou1_pump"; - tag_chamber_sensor = "fuckyou1_sensor"; - tag_exterior_door = "fuckyou1_outer"; - tag_interior_door = "fuckyou1_inner" - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "fuckyou1_pump" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"cb" = ( -/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/plating, -/area/maintenance/bridge_elevator) -"cc" = ( -/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/plating, -/area/maintenance/bridge_elevator) -"cd" = ( -/obj/effect/decal/warning_stripes, -/obj/structure/ladder{ - pixel_y = 16 - }, -/turf/simulated/open, -/area/maintenance/bridge_elevator) -"ce" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"cf" = ( -/obj/effect/decal/warning_stripes, -/obj/structure/ladder/up{ - pixel_y = 16 - }, -/obj/structure/sign/emergency/exit/ladder{ - dir = 1; - pixel_x = 32; - tag = "icon-emerg_exitZ (NORTH)" - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/bridge_elevator) -"cg" = ( -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/bridge_elevator) -"ch" = ( -/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 = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/bridge_elevator) -"ci" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/bridge_elevator) -"cj" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 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, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"ck" = ( -/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/plating, -/area/maintenance/bridge_elevator) -"co" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/mine/unexplored) -"cp" = ( -/turf/simulated/open, -/area/turbolift/cargo_mid) -"cq" = ( -/obj/machinery/alarm/north, -/obj/structure/table/reinforced/steel, -/obj/item/hoist_kit{ - pixel_y = 5 - }, -/obj/item/ladder_mobile{ - pixel_y = 4 - }, -/obj/item/cell/high{ - pixel_x = 15; - pixel_y = -4 - }, -/obj/item/cell/high{ - pixel_x = 15; - pixel_y = -4 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"ct" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/reinforced/airless, -/area/mine/unexplored) -"cu" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"cy" = ( -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"cE" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"cL" = ( -/obj/effect/landmark{ - name = "cavernspawn" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"cN" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/mine/unexplored) -"cP" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/mine/unexplored) -"cQ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/mine/unexplored) -"cR" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/mine/unexplored) -"cS" = ( -/obj/effect/decal/remains, -/turf/simulated/floor/reinforced/airless, -/area/mine/unexplored) -"cT" = ( -/obj/item/storage/bag/ore, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/reinforced/airless, -/area/mine/unexplored) -"cU" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced/airless, -/area/mine/unexplored) -"cV" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/reinforced/airless, -/area/mine/unexplored) -"cW" = ( -/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/wall/r_wall, -/area/bridge/selfdestruct) -"cX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site) -"cZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/interstitial) -"db" = ( -/turf/simulated/wall, -/area/security/range) -"dc" = ( -/turf/simulated/wall, -/area/security/training) -"dd" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/security/range) -"de" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/low/north, -/turf/simulated/floor/tiled, -/area/security/range) -"df" = ( -/obj/structure/table/standard, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 1; - pixel_y = 1 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/range) -"dg" = ( -/obj/structure/table/standard, -/obj/item/storage/box/practiceshells{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/practiceshells{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/practiceshells{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/box/practiceshells{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/box/practiceshells, -/obj/item/storage/box/practiceshells, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/item/device/radio/intercom/north, -/obj/machinery/camera/network/security{ - c_tag = "Security - Firing Range Fore" - }, -/turf/simulated/floor/tiled, -/area/security/range) -"dh" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled, -/area/security/range) -"di" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled, -/area/security/range) -"dj" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/security/range) -"dk" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/vending/cola, -/turf/simulated/floor/tiled, -/area/security/training) -"dl" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/firealarm/north, -/obj/structure/table/wood, -/obj/item/storage/box/fancy/donut, -/obj/machinery/camera/network/security{ - c_tag = "Security - Training Division 3"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"dm" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/security/range) -"dn" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/range) -"do" = ( -/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, -/area/security/range) -"dp" = ( -/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, -/area/security/range) -"dq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/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, -/area/security/range) -"dr" = ( -/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 = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/security/range) -"ds" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Firing Range"; - req_access = list(1); - 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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/range) -"dt" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/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 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"du" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/alarm/east, -/obj/machinery/atmospherics/pipe/manifold/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/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/security/training) -"dv" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/security/range) -"dw" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/security/range) -"dx" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/security/range) -"dy" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/security/range) -"dz" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/security/training) -"dA" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/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/security/training) -"dB" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/security/training_crimescene) -"dC" = ( -/obj/item/device/radio/intercom/north, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled, -/area/security/training_crimescene) -"dD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/security/training_crimescene) -"dE" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled/white, -/area/security/training_crimescene) -"dF" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/security/training_crimescene) -"dG" = ( -/turf/simulated/floor/tiled/white, -/area/security/training_crimescene) -"dH" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/security/range) -"dI" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/recharger, -/obj/item/gun/energy/laser/practice, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/security/range) -"dJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/range) -"dK" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/ringer/west{ - department = "Security"; - id = "brig_ringer"; - req_access = list(1) - }, -/turf/simulated/floor/tiled, -/area/security/training) -"dL" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/security/training_crimescene) -"dM" = ( -/turf/simulated/floor/tiled, -/area/security/training) -"dN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/training_crimescene) -"dO" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/tiled/white, -/area/security/training_crimescene) -"dP" = ( -/obj/structure/closet/body_bag, -/turf/simulated/floor/tiled/white, -/area/security/training_crimescene) -"dQ" = ( -/obj/effect/floor_decal/industrial/loading/yellow, -/turf/simulated/floor/tiled, -/area/security/range) -"dR" = ( -/turf/simulated/floor/tiled, -/area/security/range) -"dS" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"dT" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/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 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/security/training) -"dU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Crime Scene Training"; - req_access = list(1); - 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 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/training_crimescene) -"dV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/security/training_crimescene) -"dW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/training_crimescene) -"dX" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/tiled/white, -/area/security/training_crimescene) -"dY" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/white, -/area/security/training_crimescene) -"dZ" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/camera/network/security{ - c_tag = "Security - Forensics Training"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/security/training_crimescene) -"ea" = ( -/obj/machinery/door/window/westleft{ - name = "Firing Range Access"; - req_access = list(1) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/security/range) -"eb" = ( -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/security/range) -"ec" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"ed" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/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/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/training) -"ee" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/security/training_crimescene) -"ef" = ( -/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, -/area/security/training_crimescene) -"eg" = ( -/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, -/area/security/training_crimescene) -"eh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/training_crimescene) -"ei" = ( -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/security/training_crimescene) -"ej" = ( -/obj/structure/closet/crate, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/range) -"ek" = ( -/obj/structure/target_stake, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/range) -"el" = ( -/obj/machinery/camera/network/security{ - c_tag = "Security - Firing Range Aft"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/range) -"em" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/security/range) -"en" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"eo" = ( -/obj/structure/table/wood, -/obj/item/gun/projectile/revolver/capgun, -/turf/simulated/floor/tiled, -/area/security/training_crimescene) -"ep" = ( -/obj/structure/table/wood, -/obj/item/clothing/gloves/black, -/turf/simulated/floor/tiled, -/area/security/training_crimescene) -"eq" = ( -/obj/structure/table/wood, -/obj/item/storage/box/evidence, -/obj/item/taperoll/police, -/turf/simulated/floor/tiled, -/area/security/training_crimescene) -"er" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/spray/cleaner, -/turf/simulated/floor/tiled, -/area/security/training_crimescene) -"es" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/device/radio/intercom/east, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/training) -"et" = ( -/turf/simulated/wall, -/area/security/break_room) -"eu" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - id = "Detective" - }, -/turf/simulated/floor/plating, -/area/security/break_room) -"ev" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - id = "Detective" - }, -/turf/simulated/floor/plating, -/area/security/break_room) -"ew" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/obj/structure/punching_bag, -/turf/simulated/floor/tiled, -/area/security/training) -"ex" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/structure/weightlifter, -/turf/simulated/floor/tiled, -/area/security/training) -"ey" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/structure/table/standard, -/obj/item/clothing/gloves/boxing/green, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/security/training) -"ez" = ( -/obj/structure/table/standard, -/obj/item/clothing/gloves/boxing, -/obj/item/device/radio/intercom/north, -/turf/simulated/floor/tiled, -/area/security/training) -"eA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/training) -"eB" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Training Division 2"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"eC" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "Detective" - }, -/turf/simulated/floor/plating, -/area/security/break_room) -"eD" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/white, -/area/security/break_room) -"eE" = ( -/turf/simulated/wall, -/area/security/training_crimescene) -"eF" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/donut, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/security/break_room) -"eG" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/item/storage/box/drinkingglasses{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/beaker/pitcher{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/security/break_room) -"eH" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/item/reagent_containers/glass/rag, -/obj/item/storage/box/snack{ - desc = "A box full of snack foods. A label is attached that reads, 'Sorry about the microwaves.'"; - name = "corporate care package" - }, -/turf/simulated/floor/tiled/white, -/area/security/break_room) -"eI" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/machinery/alarm/west, -/obj/machinery/camera/network/security{ - c_tag = "Security - Gymnasium"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"eJ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"eK" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"eL" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"eM" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"eN" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/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" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/training) -"eO" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - id = "Detective" - }, -/turf/simulated/floor/plating, -/area/security/break_room) -"eP" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/security/break_room) -"eQ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/security/break_room) -"eT" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/security/break_room) -"eU" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/machinery/firealarm/west, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/security/training) -"eV" = ( -/obj/effect/floor_decal/corner/dark_blue/full, -/turf/simulated/floor/tiled, -/area/security/training) -"eW" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/training) -"eX" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"eY" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"fa" = ( -/obj/machinery/newscaster/west, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/security{ - c_tag = "Security - Break Room"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/break_room) -"fb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/break_room) -"fc" = ( -/obj/structure/bed/stool/chair, -/turf/simulated/floor/tiled, -/area/security/break_room) -"fd" = ( -/turf/simulated/floor/tiled, -/area/security/break_room) -"ff" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/medical/psych) -"fh" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"fi" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"fj" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/security/training) -"fk" = ( -/obj/structure/cable/green{ - 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 = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/security/break_room) -"fl" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/break_room) -"fm" = ( -/obj/structure/table/standard, -/obj/item/deck/cards, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/break_room) -"fn" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/security/break_room) -"fo" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/security/break_room) -"fp" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/security/training) -"fq" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/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/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/training) -"fr" = ( -/obj/machinery/firealarm/west, -/obj/random/pottedplant, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/break_room) -"fs" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/break_room) -"fz" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/security/training_theoretical) -"fA" = ( -/obj/structure/sign/flag/scc, -/turf/simulated/floor/wood, -/area/security/training_theoretical) -"fB" = ( -/obj/structure/bed/stool/chair/padded/brown, -/obj/effect/landmark/start{ - name = "Head of Security" - }, -/turf/simulated/floor/wood, -/area/security/training_theoretical) -"fD" = ( -/obj/effect/landmark/start{ - name = "Warden" - }, -/turf/simulated/floor/wood, -/area/security/training_theoretical) -"fE" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/security/training_theoretical) -"fF" = ( -/obj/structure/bed/stool/chair/sofa/left/red{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/security/break_room) -"fG" = ( -/turf/simulated/floor/wood, -/area/security/break_room) -"fI" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/security/break_room) -"fJ" = ( -/obj/machinery/computer/arcade, -/turf/simulated/floor/wood, -/area/security/break_room) -"fV" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/security/training_theoretical) -"fW" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/wood, -/area/security/training_theoretical) -"fX" = ( -/obj/structure/table/wood, -/obj/item/folder/sec, -/obj/item/storage/slide_projector{ - pixel_x = -16 - }, -/turf/simulated/floor/wood, -/area/security/training_theoretical) -"fY" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/paper_scanner{ - pixel_x = -6 - }, -/turf/simulated/floor/wood, -/area/security/training_theoretical) -"fZ" = ( -/turf/simulated/floor/wood, -/area/security/training_theoretical) -"ga" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/security/training_theoretical) -"gb" = ( -/obj/structure/bed/stool/chair/sofa/corner{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/security/break_room) -"gc" = ( -/obj/structure/bed/stool/chair/sofa/red{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/security/break_room) -"gd" = ( -/obj/machinery/light, -/obj/structure/bed/stool/chair/sofa/left/red{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/security/break_room) -"ge" = ( -/obj/machinery/power/apc/low/south, -/obj/structure/cable/green, -/turf/simulated/floor/wood, -/area/security/break_room) -"gf" = ( -/obj/machinery/vending/snack, -/turf/simulated/floor/wood, -/area/security/break_room) -"gp" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/turf/simulated/floor/wood, -/area/security/training_theoretical) -"gq" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/security/training_theoretical) -"gr" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/security/training_theoretical) -"gs" = ( -/turf/simulated/floor/tiled/ramp/bottom, -/area/security/training_theoretical) -"gt" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/alarm/east, -/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/security/training) -"gC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/hatch{ - name = "Elevator Maintenance"; - req_access = list(50); - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"gE" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/security/training_theoretical) -"gF" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/training_theoretical) -"gG" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/training_theoretical) -"gH" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/security/training_theoretical) -"gI" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/training_theoretical) -"gJ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/security/training) -"gK" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/training) -"gL" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/security/training) -"gM" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/low/north, -/turf/simulated/floor/plating, -/area/maintenance/security_interstitial) -"gN" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/security_interstitial) -"gO" = ( -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/security_interstitial) -"gY" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/machinery/alarm/west, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/turf/simulated/floor/tiled/dark, -/area/security/training_theoretical) -"gZ" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/turf/simulated/floor/tiled/dark, -/area/security/training_theoretical) -"ha" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/security/training_theoretical) -"hb" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/item/device/radio/intercom/east, -/obj/effect/landmark/start{ - name = "Security Cadet" - }, -/turf/simulated/floor/tiled/dark, -/area/security/training_theoretical) -"hc" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Training Division 1"; - dir = 4 - }, -/obj/machinery/power/apc/low/west, -/turf/simulated/floor/tiled, -/area/security/training) -"hd" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/training) -"he" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/ringer/east{ - department = "Security"; - id = "brig_ringer"; - req_access = list(1) - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"hf" = ( -/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 = "conpipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/security_interstitial) -"hg" = ( -/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/plating, -/area/maintenance/security_interstitial) -"hh" = ( -/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/plating, -/area/maintenance/security_interstitial) -"hi" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/down/supply, -/obj/structure/disposalpipe/down, -/obj/structure/cable/green{ - d1 = 32; - d2 = 2; - icon_state = "11-2" - }, -/obj/structure/sign/drop{ - pixel_y = 32 - }, -/turf/simulated/open, -/area/maintenance/security_interstitial) -"hq" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/dark, -/area/security/training_theoretical) -"hr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/training_theoretical) -"hs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/security/training_theoretical) -"ht" = ( -/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/security/training_theoretical) -"hu" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/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/security/training_theoretical) -"hv" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Theorethical Training"; - req_access = list(1); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/training_theoretical) -"hw" = ( -/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/effect/floor_decal/plaque{ - desc = "Avery Bennett Memorial Hall
The 5th and final victim of the Odin Killer. He was slain by the Odin Killer for his brave, personal investigation on the killings. Studying to become a detective at the time of his death, he was posthumously granted the title.
November 2428 - June 2460" - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/training) -"hx" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/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/security/training) -"hy" = ( -/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/plating, -/area/maintenance/security_interstitial) -"hD" = ( -/obj/effect/shuttle_landmark/skipjack/interstitial, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"hG" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/turf/simulated/floor/tiled/dark, -/area/security/training_theoretical) -"hH" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/machinery/firealarm/south, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/turf/simulated/floor/tiled/dark, -/area/security/training_theoretical) -"hI" = ( -/obj/structure/table/standard, -/obj/item/folder/sec, -/obj/structure/cable/green, -/obj/machinery/power/apc/low/south, -/turf/simulated/floor/tiled/dark, -/area/security/training_theoretical) -"hK" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/obj/effect/landmark/start{ - name = "Investigator" - }, -/turf/simulated/floor/tiled/dark, -/area/security/training_theoretical) -"hL" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/security/training_theoretical) -"hM" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"hO" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"hZ" = ( -/turf/simulated/wall, -/area/medical/psych) -"ib" = ( -/obj/item/ammo_casing/c38{ - pixel_x = 8; - pixel_y = -9 - }, -/obj/item/ammo_casing/c38{ - pixel_x = -9; - pixel_y = -7 - }, -/obj/item/clothing/suit/storage/toggle/trench/det_trench, -/obj/effect/decal/remains, -/turf/simulated/floor/plating, -/area/maintenance/security_interstitial) -"ii" = ( -/turf/simulated/open, -/area/security/training) -"il" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"io" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"ip" = ( -/obj/structure/ladder{ - pixel_y = 16 - }, -/turf/simulated/open, -/area/bridge/selfdestruct) -"iq" = ( -/obj/item/device/radio/intercom/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "cobweb1" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"ir" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"is" = ( -/obj/machinery/button/remote/airlock{ - id = "sat1"; - name = "SAT Access Bolts"; - pixel_x = -28; - pixel_y = -6; - req_access = list(20); - specialfunctions = 4 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'LETHAL TURRETS'. Enter at your own risk!"; - name = "LETHAL TURRETS"; - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for engine core."; - id = "sat_blast"; - name = "SAT Blast Doors Control"; - pixel_x = -28; - pixel_y = 6; - req_access = list(20) - }, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"it" = ( -/obj/machinery/turretid/lethal{ - ailock = 1; - check_synth = 1; - desc = "A firewall prevents AIs from interacting with this device."; - name = "SAT turrets control"; - pixel_y = -27; - req_access = list(20) - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/motion{ - c_tag = "Command - SAT Access - Ladder"; - dir = 8; - network = list("Command"); - tag = "icon-camera (WEST)" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"iu" = ( -/obj/machinery/door/airlock/highsecurity{ - icon_state = "door_locked"; - id_tag = "sat1"; - locked = 1; - name = "SAT Access"; - req_access = list(20); - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/bridge/selfdestruct) -"iv" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/bridge/selfdestruct) -"iw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/blast/regular{ - id = "sat_blast" - }, -/turf/simulated/floor/plating, -/area/bridge/selfdestruct) -"ix" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/bridge/selfdestruct) -"iy" = ( -/obj/machinery/porta_turret/stationary, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/bridge/selfdestruct) -"iz" = ( -/obj/machinery/alarm/east, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/motion{ - c_tag = "Command - SAT Access - Motion"; - dir = 8; - network = list("Command"); - tag = "icon-camera (WEST)" - }, -/turf/simulated/floor/plating, -/area/bridge/selfdestruct) -"iA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/securearea{ - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/bridge/selfdestruct) -"iB" = ( -/obj/machinery/button/remote/airlock{ - id = "sat2"; - name = "SAT Chamber Bolts"; - pixel_x = -28; - req_access = list(20); - specialfunctions = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/bridge/selfdestruct) -"iC" = ( -/obj/machinery/door/airlock/highsecurity{ - icon_state = "door_locked"; - id_tag = "sat2"; - locked = 1; - name = "SAT Chamber"; - req_access = list(20); - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"iD" = ( -/turf/simulated/wall, -/area/maintenance/interstitial_main) -"iE" = ( -/obj/machinery/firealarm/north, -/obj/item/device/radio/intercom/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"iF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "spiderling"; - name = "dead greimorian" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"iG" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/bridge/selfdestruct) -"iH" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"iI" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"iJ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"iK" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/bridge/selfdestruct) -"iL" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/porta_turret/stationary, -/obj/machinery/light/colored/blue{ - dir = 8; - tag = "icon-tube_empty (WEST)" - }, -/turf/simulated/floor/plating, -/area/bridge/selfdestruct) -"iM" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/porta_turret/stationary, -/obj/machinery/light/colored/blue{ - dir = 4; - tag = "icon-tube_empty (EAST)" - }, -/turf/simulated/floor/plating, -/area/bridge/selfdestruct) -"iN" = ( -/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/wall/r_wall, -/area/bridge/selfdestruct) -"iO" = ( -/obj/structure/window/reinforced{ - 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/bridge/selfdestruct) -"iP" = ( -/obj/machinery/power/apc/high/south, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/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/dark, -/area/bridge/selfdestruct) -"iQ" = ( -/obj/machinery/nuclearbomb/station, -/obj/effect/decal/warning_stripes, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/reinforced, -/area/bridge/selfdestruct) -"iR" = ( -/obj/machinery/alarm/south, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"iS" = ( -/obj/structure/closet/crate, -/obj/random/loot, -/obj/random/loot, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/button/remote/airlock{ - id = "medical_rafters"; - name = "Rafters Access"; - pixel_x = 25; - pixel_y = 6; - req_one_access = list(11,24); - specialfunctions = 4 - }, -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/maintenance/elevator) -"iT" = ( -/obj/structure/sign/flag/nanotrasen, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"iV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/airless{ - icon_state = "asteroidfloor" - }, -/area/mine/unexplored) -"iW" = ( -/obj/structure/ladder{ - pixel_y = 16 - }, -/turf/simulated/open, -/area/bridge/aibunker) -"iX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/bridge/aibunker) -"iY" = ( -/turf/simulated/floor/plating, -/area/bridge/aibunker) -"iZ" = ( -/obj/structure/table/rack, -/obj/item/clothing/gloves/yellow, -/obj/item/wirecutters, -/turf/simulated/floor/plating, -/area/bridge/aibunker) -"ja" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/bridge/aibunker) -"jb" = ( -/obj/structure/table/rack, -/obj/item/storage/toolbox/emergency, -/turf/simulated/floor/plating, -/area/bridge/aibunker) -"jc" = ( -/obj/structure/table/steel, -/obj/item/device/radio, -/turf/simulated/floor/plating, -/area/bridge/aibunker) -"jd" = ( -/obj/machinery/camera/motion{ - c_tag = "Bunker - Emergency Exit Motion"; - dir = 8; - network = list("Command"); - tag = "icon-camera (WEST)" - }, -/turf/simulated/floor/plating, -/area/bridge/aibunker) -"je" = ( -/obj/structure/table/steel, -/obj/item/device/flashlight/heavy, -/obj/item/clothing/mask/gas/half{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/clothing/mask/gas/half{ - pixel_x = -6; - pixel_y = 9 - }, -/turf/simulated/floor/plating, -/area/bridge/aibunker) -"jf" = ( -/obj/machinery/button/remote/airlock{ - id = "bunker5"; - name = "Emergency Exit Outer Bolts"; - pixel_y = -38; - req_access = list(20); - specialfunctions = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "bunker4"; - name = "Emergency Exit Inner Bolts"; - pixel_y = -26; - req_access = list(19); - specialfunctions = 4 - }, -/turf/simulated/floor/plating, -/area/bridge/aibunker) -"jg" = ( -/obj/structure/sign/securearea{ - name = "\improper EMERGENCY EXIT"; - pixel_y = -32 - }, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/bridge/aibunker) -"jh" = ( -/obj/machinery/button/remote/blast_door{ - id = "escape_blast"; - name = "Hatch Blast Doors"; - pixel_y = -26; - req_access = list(19) - }, -/turf/simulated/floor/plating, -/area/bridge/aibunker) -"ji" = ( -/obj/machinery/door/blast/regular{ - id = "escape_blast"; - name = "Bunker Blast Door" - }, -/obj/machinery/door/airlock/hatch{ - desc = "It opens and closes. It has a small sign engraved: NO ENTRY - ONE-WAY ONLY"; - icon_state = "door_locked"; - id_tag = "bunker4"; - locked = 1; - name = "Emergency Hatch"; - req_access = list(19); - secured_wires = 1; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/bridge/aibunker) -"jj" = ( -/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/wall/r_wall, -/area/maintenance/bridge_elevator) -"jk" = ( -/obj/machinery/door/blast/regular{ - id = "escape_blast"; - name = "Bunker Blast Door" - }, -/obj/machinery/door/airlock/hatch{ - desc = "It opens and closes. It has a small sign engraved: NO ENTRY - ONE-WAY ONLY"; - icon_state = "door_locked"; - id_tag = "bunker5"; - locked = 1; - name = "Emergency Hatch"; - req_access = list(19); - secured_wires = 1; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/bridge/aibunker) -"jl" = ( -/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/sign/emergency/exit{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"jm" = ( -/obj/machinery/door/airlock/maintenance{ - id_tag = "bunker6"; - req_access = list(20); - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/bridge/aibunker) -"jn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/button/remote/airlock{ - id = "bunker6"; - name = "Non-Captain Door Opening"; - pixel_y = -26; - req_access = list(19) - }, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/bridge/aibunker) -"jo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/bridge/aibunker) -"jp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small/emergency, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/bridge/aibunker) -"jq" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/bridge/aibunker) -"jr" = ( -/obj/machinery/light/small/emergency, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/bridge/aibunker) -"js" = ( -/obj/structure/sign/electricshock{ - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/bridge/aibunker) -"jt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/securearea{ - name = "\improper NO ENTRY"; - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"ju" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/structure/ladder/up{ - pixel_y = 16 - }, -/obj/machinery/light/small/emergency{ - dir = 4; - name = "elevator light fixture"; - pixel_y = -10 - }, -/turf/simulated/floor/plating, -/area/maintenance/elevator) -"jv" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/range) -"jw" = ( -/obj/structure/table/standard, -/obj/item/clothing/ears/earmuffs{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = 1; - pixel_y = 1 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/range) -"jx" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/security/range) -"jy" = ( -/obj/effect/floor_decal/industrial/loading/yellow, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/security/range) -"jz" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/spray/luminol, -/obj/machinery/light, -/obj/item/storage/box/fancy/csi_markers, -/obj/structure/cable/green, -/obj/machinery/power/apc/low/south, -/turf/simulated/floor/tiled, -/area/security/training_crimescene) -"jA" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"jB" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"jC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"jD" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/security/training) -"jF" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/open, -/area/security/training) -"jK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(5); - dir = 4 - }, -/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/plating, -/area/maintenance/medbay_interstitial) -"jP" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"jQ" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/psych) -"ke" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/psych) -"kf" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/psych) -"kg" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/psych) -"kj" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/psych) -"kk" = ( -/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/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance{ - req_access = list(64); - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"ko" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/random/pottedplant, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kr" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm/north, -/obj/random/pottedplant, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"ks" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/machinery/alarm/west, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kt" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"ku" = ( -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 1 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Psych Hall 2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kw" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/ramp/bottom, -/area/hallway/secondary/entry/stairs) -"kA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/firealarm/west, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Psychiatry Patient Room"; - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kF" = ( -/obj/machinery/door/airlock/medical{ - name = "Therapy Ward"; - req_access = list(64); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kH" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kJ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kK" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/bed/stool/chair/office/light{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/item/device/radio/intercom/west, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kL" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kM" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/medical, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kO" = ( -/obj/structure/curtain, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kP" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/bed/stool/chair/office/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kQ" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/medical, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/item/device/radio/intercom/east, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kR" = ( -/obj/effect/floor_decal/corner_wide/green/full, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kS" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/green/full{ - 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/medical/psych) -"kU" = ( -/obj/structure/table/standard, -/obj/item/clipboard, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kV" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kW" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Treatment Wing"; - req_access = list(64) - }, -/obj/machinery/door/firedoor/multi_tile, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kX" = ( -/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/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"kY" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/psych) -"kZ" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/firealarm/west, -/obj/machinery/ringer/north{ - department = "Medbay"; - id = "medbay_ringer"; - req_access = list(5) - }, -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"la" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "Psy" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "Psy" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "Psy" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/psych) -"lb" = ( -/obj/structure/closet/secure_closet{ - name = "Psychiatrist's Locker"; - req_access = list(64) - }, -/obj/item/clothing/suit/straight_jacket, -/obj/item/reagent_containers/pill/corophenidate, -/obj/item/reagent_containers/pill/minaphobin, -/obj/item/reagent_containers/pill/minaphobin, -/obj/item/reagent_containers/syringe, -/obj/item/clothing/mask/muzzle, -/obj/random/soap, -/turf/simulated/floor/tiled, -/area/medical/psych) -"lc" = ( -/obj/structure/table/rack, -/obj/random/plushie, -/obj/random/plushie, -/obj/random/plushie, -/turf/simulated/floor/tiled, -/area/medical/psych) -"ld" = ( -/obj/structure/table/wood, -/obj/item/mesmetron, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Psychiatry Closet" - }, -/turf/simulated/floor/tiled, -/area/medical/psych) -"le" = ( -/obj/structure/filingcabinet, -/turf/simulated/floor/tiled, -/area/medical/psych) -"lf" = ( -/obj/structure/bed/stool/chair/office/wheelchair, -/turf/simulated/floor/tiled, -/area/medical/psych) -"lg" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/psych) -"lh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"li" = ( -/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/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"lj" = ( -/obj/machinery/door/airlock/medical{ - name = "Psychiatry Closet"; - req_access = list(64); - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/medical/psych) -"lk" = ( -/turf/simulated/floor/tiled, -/area/medical/psych) -"ll" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/medical/psych) -"lm" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/psych) -"ln" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/obj/structure/bed/stool/chair/plastic, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"lq" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"lr" = ( -/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/hologram/holopad, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"ls" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - id = "Psy" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "Psy" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "Psy" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/psych) -"lt" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"lu" = ( -/obj/structure/table/wood, -/obj/machinery/requests_console/north{ - department = "Psychiatry"; - departmentType = 1 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Psychiatrist Office" - }, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/carpet, -/area/medical/psych) -"lv" = ( -/obj/structure/table/wood, -/obj/item/folder/white, -/obj/item/pen, -/obj/machinery/newscaster/north, -/turf/simulated/floor/carpet, -/area/medical/psych) -"lw" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/machinery/alarm/north, -/obj/structure/table/wood, -/obj/item/book/manual/psych, -/obj/item/paper_bin{ - pixel_x = 4; - pixel_y = 7 - }, -/turf/simulated/floor/carpet, -/area/medical/psych) -"lx" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/obj/structure/bed/stool/chair/plastic{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"ly" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "Psy" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "Psy" - }, -/obj/structure/window/reinforced/polarized{ - id = "Psy" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "Psy" - }, -/turf/simulated/floor/plating, -/area/medical/psych) -"lz" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/medical/psych) -"lA" = ( -/turf/simulated/floor/carpet, -/area/medical/psych) -"lB" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 1 - }, -/obj/machinery/button/switch/windowtint{ - id = "Psy"; - pixel_x = -16; - pixel_y = 26; - req_access = list(5) - }, -/turf/simulated/floor/carpet, -/area/medical/psych) -"lC" = ( -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = -2 - }, -/obj/item/modular_computer/console/preset/medical, -/turf/simulated/floor/carpet, -/area/medical/psych) -"lD" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/psych) -"lE" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/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{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"lF" = ( -/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/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"lG" = ( -/obj/machinery/door/airlock/medical{ - name = "Psychiatrist Office"; - req_access = list(64); - dir = 4 - }, -/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 - }, -/turf/simulated/floor/tiled, -/area/medical/psych) -"lH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"lI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/medical/psych) -"lJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"lK" = ( -/obj/machinery/firealarm/east, -/turf/simulated/floor/wood, -/area/medical/psych) -"lL" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner_wide/green/full, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"lM" = ( -/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/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"lN" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/firealarm/west, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Psych Entry" - }, -/obj/structure/extinguisher_cabinet/north, -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"lO" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"lP" = ( -/turf/simulated/floor/wood, -/area/medical/psych) -"lQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"lR" = ( -/obj/structure/bed/psych, -/obj/item/bedsheet/brown, -/turf/simulated/floor/wood, -/area/medical/psych) -"lS" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - id_tag = "waiting_door"; - name = "Psychiatry Wing"; - req_access = list(5) - }, -/obj/machinery/door/firedoor/multi_tile, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"lU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"lV" = ( -/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/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"lW" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/machinery/ringer/north{ - department = "Medbay"; - id = "medbay_ringer"; - req_access = list(5) - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"lX" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/random/pottedplant, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"lY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"lZ" = ( -/obj/structure/ladder{ - pixel_y = 16 - }, -/turf/simulated/open, -/area/maintenance/medbay_interstitial) -"mb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"md" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"me" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"mf" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"mg" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"mh" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10; - tag = "icon-warning_dust (SOUTHWEST)" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"mi" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"mj" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"mk" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/requests_console/south{ - department = "Security Weights Room"; - departmentType = 5 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"ml" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/machinery/requests_console/south{ - department = "Theoretical Training Room"; - departmentType = 5 - }, -/obj/effect/landmark/start{ - name = "Investigator" - }, -/turf/simulated/floor/tiled/dark, -/area/security/training_theoretical) -"mm" = ( -/obj/machinery/power/apc/west, -/obj/structure/cable/green, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"mo" = ( -/turf/simulated/mineral, -/area/mine/unexplored) -"mp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"mq" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/obj/structure/bed/stool/chair/plastic{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"mt" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"mv" = ( -/obj/machinery/alarm/south, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"mw" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"mx" = ( -/obj/item/device/radio/intercom/south, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"my" = ( -/obj/random/pottedplant, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"mz" = ( -/obj/machinery/newscaster/north, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/upperlevel) -"mB" = ( -/obj/structure/closet/hazmat/custodial, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/janitor/stairs) -"mG" = ( -/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/machinery/door/airlock/maintenance_hatch{ - icon_state = "door_locked"; - locked = 1; - name = "Construction Site"; - req_one_access = list(11,24); - dir = 4 - }, -/obj/item/tape/engineering{ - icon_state = "engineering_door"; - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_main) -"mJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - icon_state = "door_locked"; - id_tag = "medical_rafters"; - locked = 1; - name = "Rafters Maintenance"; - req_access = 12; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/elevator) -"mL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"mM" = ( -/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 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"mT" = ( -/turf/simulated/wall/r_wall, -/area/medical/upperlevel) -"mX" = ( -/obj/structure/lattice, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/maintenance/interstitial_construction_site/zone_2) -"mZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/security/training_crimescene) -"na" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"nk" = ( -/obj/structure/table/standard, -/obj/machinery/reagentgrinder{ - pixel_y = 7 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_virology) -"nm" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"nr" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_virology) -"nu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"nx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/lights/coloredmixed, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/bag/inflatable, -/obj/item/device/paint_sprayer, -/obj/structure/closet/crate, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site) -"nz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"nA" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Elevator Maintenance"; - req_access = list(12); - dir = 1 - }, -/obj/structure/sign/drop{ - pixel_x = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/elevator) -"nD" = ( -/obj/structure/track{ - icon_state = "track3" - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"nE" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Construction Level Substation Bypass" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/interstitial) -"nF" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/maintenance/interstitial_cargo) -"nH" = ( -/obj/structure/lattice, -/obj/item/material/shard{ - icon_state = "medium" - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/maintenance/interstitial_construction_site) -"nJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/maintenance/medbay_virology) -"nN" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/open, -/area/maintenance/medbay_virology) -"nO" = ( -/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" - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"nR" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"nT" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/machinery/door/blast/regular/open{ - id = null; - name = "Virology Blast Doors" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_virology) -"nX" = ( -/turf/simulated/floor/tiled/ramp/bottom, -/area/hallway/secondary/entry/stairs) -"oc" = ( -/obj/structure/grille, -/obj/item/material/shard{ - icon_state = "small" - }, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site) -"of" = ( -/obj/structure/table/steel, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/machinery/alarm/north, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "cobweb1" - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/medbay_virology) -"ok" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"ol" = ( -/turf/simulated/floor/plating, -/area/maintenance/medbay_virology) -"on" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "virology_airlock_control"; - name = "Virology Lab Access Controller"; - pixel_x = 7; - pixel_y = 24; - tag_exterior_door = "virology_airlock_exterior"; - tag_interior_door = "virology_airlock_interior" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -2; - pixel_y = 26 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"ot" = ( -/obj/structure/ladder/up{ - pixel_y = 16 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/telecoms_ladder) -"ou" = ( -/obj/effect/landmark{ - name = "cavernspawn" - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"oB" = ( -/obj/item/device/radio/intercom/south{ - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/bed/stool/chair/padded/black{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"oD" = ( -/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" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"oF" = ( -/turf/simulated/open, -/area/maintenance/medbay_interstitial) -"oJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/upperlevel) -"oO" = ( -/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/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"oX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/greenglow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"pa" = ( -/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/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"pc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_interstitial) -"pd" = ( -/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/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"pl" = ( -/obj/structure/ladder{ - pixel_y = 16 - }, -/turf/simulated/open, -/area/maintenance/engineering_ladder) -"pm" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_construction_site/office) -"po" = ( -/obj/structure/curtain, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"pp" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/maintenance/medbay_virology) -"pq" = ( -/obj/machinery/airlock_sensor{ - id_tag = "fuckyou1_sensor"; - pixel_x = 32 - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "fuckyou1_pump" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/network/engineering{ - c_tag = "Construction Level Exterior Airlock"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"pw" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/medbay_interstitial) -"py" = ( -/obj/structure/table/standard, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 9 - }, -/obj/item/reagent_containers/glass/beaker/vial, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"pB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"pC" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/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 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"pE" = ( -/obj/machinery/floodlight{ - name = "Construction Floodlight" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site) -"pF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"pH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"pO" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"pQ" = ( -/obj/random/junk, -/turf/simulated/floor/tiled/dark, -/area/maintenance/medbay_virology) -"pT" = ( -/turf/simulated/wall, -/area/medical/upperlevel) -"pZ" = ( -/turf/simulated/open/airless, -/area/mine/unexplored) -"qc" = ( -/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/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"qe" = ( -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/maintenance/interstitial_construction_site) -"qi" = ( -/turf/simulated/wall, -/area/hallway/secondary/entry/stairs) -"qk" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site/office) -"qo" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_construction_site/office) -"qs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm/north, -/obj/effect/floor_decal/corner/pink/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"qu" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 9 - }, -/obj/structure/computerframe, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"qz" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "fuckyou3_pump" - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"qF" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d1 = 16; - d2 = 0; - icon_state = "12-0" - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"qG" = ( -/obj/machinery/disposal{ - name = "Ancient Disposal Chute" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled, -/area/maintenance/medbay_virology) -"qL" = ( -/obj/machinery/camera/network/supply{ - c_tag = "Warehouse - Upper North" - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"qM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"qN" = ( -/obj/structure/ore_box{ - icon_state = "orebox1" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"qQ" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/medical/upperlevel) -"qR" = ( -/obj/effect/floor_decal/corner/brown/full, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"qT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"qU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"qV" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/medbay_virology) -"qY" = ( -/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{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm/south{ - req_one_access = list(24,11,55) - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"re" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 16; - d2 = 0; - icon_state = "12-0" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/alarm/west, -/obj/structure/disposalpipe/up{ - dir = 4 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/bridge_elevator) -"rh" = ( -/turf/simulated/wall/r_wall, -/area/quartermaster/storage) -"rn" = ( -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/open, -/area/quartermaster/storage) -"rp" = ( -/turf/simulated/wall, -/area/security/training_theoretical) -"rr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"rt" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/blast/regular/open{ - id = null; - name = "Virology Blast Doors" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_virology) -"rA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/floodlight{ - name = "Construction Floodlight" - }, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site) -"rH" = ( -/obj/structure/table/standard, -/obj/machinery/requests_console/south{ - department = "Virology Lab"; - departmentType = 2; - name = "Virology Lab Console" - }, -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"rI" = ( -/obj/structure/track{ - icon_state = "track12" - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"rK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden, -/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, -/area/maintenance/interstitial_cargo) -"rL" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "fuckyou1"; - name = "exterior access button"; - pixel_x = -32; - pixel_y = 26; - req_access = list(13) - }, -/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/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"sd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/pipedispenser/disposal, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site) -"sg" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/door/window/northright, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"sh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"sk" = ( -/obj/structure/track{ - icon_state = "track5" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"sl" = ( -/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/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/upperlevel) -"so" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "Detective" - }, -/turf/simulated/floor/plating, -/area/security/break_room) -"ss" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"st" = ( -/obj/structure/table/rack, -/obj/item/pickaxe{ - pixel_x = -8 - }, -/obj/item/pickaxe, -/obj/item/pickaxe{ - pixel_x = 8 - }, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site/zone_2) -"sx" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"sz" = ( -/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/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "eng_ladder_inner"; - locked = 1; - req_access = list(13); - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"sC" = ( -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/security_interstitial) -"sE" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "fuckyou3"; - pixel_x = -4; - pixel_y = 29; - tag_airpump = "fuckyou3_pump"; - tag_chamber_sensor = "fuckyou3_sensor"; - tag_exterior_door = "fuckyou3_outer"; - tag_interior_door = "fuckyou3_inner" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "fuckyou3_pump" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"sK" = ( -/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, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"sL" = ( -/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/machinery/alarm/south, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"sQ" = ( -/obj/item/stack/material/steel{ - amount = 20 - }, -/obj/item/stack/material/plastic{ - amount = 50 - }, -/obj/item/stack/material/wood{ - amount = 30 - }, -/obj/item/stack/material/glass/reinforced{ - amount = 50 - }, -/obj/structure/closet/crate, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site) -"sR" = ( -/obj/effect/floor_decal/corner/red/full, -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/blood/OMinus{ - name = "old blood pack" - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/medbay_virology) -"sU" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/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/manifold/hidden/scrubbers, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/upperlevel) -"sX" = ( -/obj/machinery/firealarm/west, -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/upperlevel) -"sY" = ( -/obj/structure/table/rack, -/obj/item/hoist_kit, -/obj/item/ladder_mobile, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site/zone_2) -"ta" = ( -/turf/simulated/wall, -/area/maintenance/interstitial_construction_site) -"tk" = ( -/obj/structure/table/steel, -/obj/item/ladder_mobile{ - pixel_y = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/elevator) -"tm" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10; - tag = "icon-warning_dust (SOUTHWEST)" - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"tt" = ( -/turf/simulated/open, -/area/quartermaster/storage) -"ty" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "fuckyou1"; - name = "interior access button"; - pixel_x = 32; - pixel_y = -26; - req_access = list(13) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"tz" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/blast/regular/open{ - id = null; - name = "Virology Blast Doors" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_virology) -"tB" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"tJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"tM" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/pink/full, -/obj/effect/decal/cleanable/molten_item, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"tN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"tR" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/blast/regular/open{ - id = null; - name = "Virology Blast Doors" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_virology) -"tW" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/stairs) -"ua" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/steel, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site/zone_2) -"um" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/closet/hazmat/general, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"up" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"uD" = ( -/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/plating, -/area/maintenance/medbay_interstitial) -"uK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"uW" = ( -/obj/structure/disposalpipe/segment, -/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/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "fuckyou3"; - name = "exterior access button"; - pixel_x = -27; - pixel_y = -25 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"uX" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"va" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/security/training) -"vb" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(63); - 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/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_interstitial) -"vc" = ( -/obj/structure/bed/stool/chair/unmovable{ - dir = 1 - }, -/obj/item/handcuffs, -/obj/item/clothing/suit/storage/toggle/trench/det_trench/black, -/obj/effect/decal/remains, -/turf/simulated/floor/plating, -/area/maintenance/security_interstitial) -"vd" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/structure/sign/deathsposal{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/medbay_virology) -"vf" = ( -/turf/simulated/wall, -/area/maintenance/medbay_virology) -"vh" = ( -/obj/machinery/vending/coffee, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"vi" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"vk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/freezer{ - name = "Sample Storage"; - req_access = list(33); - dir = 4 - }, -/obj/structure/plasticflaps/airtight, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/medbay_virology) -"vm" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"vs" = ( -/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/effect/floor_decal/corner/yellow{ - dir = 9; - icon_state = "corner_white" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"vC" = ( -/obj/structure/track{ - icon_state = "track10" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"vD" = ( -/obj/structure/cable/green{ - d1 = 32; - icon_state = "11-1" - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/down{ - dir = 1 - }, -/obj/structure/lattice/catwalk, -/turf/simulated/open, -/area/maintenance/medbay_interstitial) -"vP" = ( -/obj/structure/track{ - icon_state = "track12" - }, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"vX" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/open, -/area/quartermaster/storage) -"wc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"wd" = ( -/obj/item/storage/bag/inflatable, -/obj/structure/table/rack{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_construction_site/office) -"wl" = ( -/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/girder/displaced, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site) -"wn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"wr" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"wy" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/open, -/area/quartermaster/storage) -"wA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"wC" = ( -/obj/structure/disposalpipe/segment, -/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/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"wE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/janitor/stairs) -"wG" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/south, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/telecoms_ladder) -"wH" = ( -/obj/structure/sign/vacuum, -/turf/simulated/wall, -/area/maintenance/interstitial_cargo) -"wJ" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"wL" = ( -/obj/machinery/floodlight{ - name = "Construction Floodlight" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"wT" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/alarm/east, -/obj/machinery/ringer/south{ - department = "Pharmacy Frontdesk"; - id = "pharmacy_ringer"; - req_access = list(33) - }, -/obj/effect/floor_decal/corner/pink/full{ - dir = 4 - }, -/obj/structure/closet, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"wV" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/large_stock_marker, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"wX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = 10; - pixel_y = 8 - }, -/turf/simulated/floor/plating, -/area/janitor/stairs) -"wY" = ( -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/maintenance/interstitial_construction_site/zone_2) -"xa" = ( -/obj/machinery/light/spot, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"xi" = ( -/obj/machinery/alarm/south, -/obj/structure/closet/crate, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"xr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"xv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"xy" = ( -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/medbay_virology) -"xG" = ( -/obj/machinery/light{ - dir = 4; - name = "adjusted light fixture"; - pixel_y = 2; - icon_state = "tube_empty" - }, -/obj/structure/table/wood, -/obj/item/material/ashtray/bronze, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"xH" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1379; - id_tag = "eng_ladder_pump" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/emergency, -/obj/machinery/camera/network/engineering{ - c_tag = "Telecoms Ladder Exterior Airlock"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"xJ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/janitor/stairs) -"xP" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/hologram/holopad, -/obj/item/reagent_containers/dropper{ - pixel_y = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"yb" = ( -/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/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"yf" = ( -/obj/machinery/power/apc/north, -/obj/effect/floor_decal/corner/yellow{ - dir = 5; - icon_state = "corner_white" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"yj" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/tape/engineering{ - icon_state = "engineering_door"; - }, -/obj/machinery/door/airlock/maintenance_hatch{ - icon_state = "door_locked"; - locked = 1; - name = "Construction Site"; - req_one_access = list(11,24); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_construction_site/zone_2) -"ym" = ( -/obj/structure/disposalpipe/segment, -/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" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"yq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"yD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/item/storage/box/syringes{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/storage/box/beakers{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"yE" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"yF" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site/office) -"yO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/upperlevel) -"yP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"yS" = ( -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"yT" = ( -/obj/machinery/smartfridge/secure/virology{ - density = 0; - pixel_y = -32; - req_access = list(33) - }, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "spiderling"; - name = "dead greimorian" - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"yU" = ( -/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/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"yW" = ( -/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/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"yX" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_interstitial) -"yZ" = ( -/obj/machinery/alarm/west, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"zd" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/obj/structure/computerframe, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"zi" = ( -/obj/effect/decal/cleanable/mucus, -/obj/item/stack/material/cardboard, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"zm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/upperlevel) -"zn" = ( -/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/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"zw" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"zx" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "fuckyou3_pump" - }, -/obj/machinery/airlock_sensor{ - id_tag = "fuckyou3_sensor"; - pixel_x = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"zB" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/maintenance/medbay_virology) -"zF" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"zQ" = ( -/obj/random/pottedplant, -/obj/structure/extinguisher_cabinet/west, -/obj/effect/floor_decal/corner_wide/green/full, -/turf/simulated/floor/tiled/white, -/area/medical/upperlevel) -"zW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/stool/chair/office/light, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"Ab" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Cadet" - }, -/turf/simulated/floor/tiled/dark, -/area/security/training_theoretical) -"Ad" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/open, -/area/maintenance/medbay_virology) -"Ak" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site) -"Al" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/interstitial) -"As" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"Au" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_virology) -"Av" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 4; - icon_state = "corner_white" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"Ax" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Break Room"; - req_access = list(1); - dir = 4 - }, -/obj/structure/cable/green{ - 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/security/break_room) -"AB" = ( -/obj/structure/ladder{ - pixel_y = 16 - }, -/turf/simulated/open, -/area/maintenance/interstitial_cargo) -"AG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"AL" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = null; - name = "Virology Blast Doors" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_virology) -"AO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site/zone_2) -"AQ" = ( -/obj/structure/closet/crate, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"AT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"AW" = ( -/obj/structure/closet/crate/plastic, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"Be" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"Bf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/stairs) -"Bg" = ( -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_interstitial) -"Bj" = ( -/obj/item/stack/material/cardboard, -/turf/simulated/floor/tiled/dark, -/area/maintenance/medbay_virology) -"Bl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"Br" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/power/apc/east, -/obj/structure/cable/green, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"Bu" = ( -/turf/simulated/floor/tiled/white, -/area/medical/upperlevel) -"Bz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_construction_site/office) -"BC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/pink{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_interstitial) -"BH" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/maintenance/interstitial_construction_site/zone_2) -"BJ" = ( -/obj/item/modular_computer/console/preset/engineering, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_construction_site/office) -"BM" = ( -/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/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "Telecomms Access"; - req_access = list(12); - dir = 4 - }, -/obj/structure/sign/directions/tcom{ - dir = 8; - pixel_y = 24 - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"BP" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/pink/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/molten_item, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"BS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch{ - name = "Elevator Maintenance"; - req_one_access = list(12,50); - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"BW" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/turf/simulated/open, -/area/maintenance/medbay_virology) -"Cc" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"Ce" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"Cf" = ( -/obj/structure/table/reinforced/steel, -/obj/item/paper_bin{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/pen, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_construction_site/office) -"Ci" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/training_crimescene) -"Cl" = ( -/obj/structure/disposalpipe/segment, -/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/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "fuckyou3"; - name = "interior access button"; - pixel_x = 26; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"Cn" = ( -/obj/machinery/vending/engivend{ - random_itemcount = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_construction_site/office) -"Co" = ( -/obj/structure/lattice, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/open, -/area/maintenance/medbay_virology) -"CC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_construction_site/office) -"CD" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"CL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/telecoms_ladder) -"CN" = ( -/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" - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"CO" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/mopbucket, -/obj/machinery/power/apc/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit, -/obj/machinery/light_switch{ - pixel_x = -9; - pixel_y = -23 - }, -/turf/simulated/floor/plating, -/area/janitor/stairs) -"CP" = ( -/turf/simulated/floor/tiled/dark, -/area/maintenance/medbay_virology) -"CT" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/obj/effect/decal/cleanable/molten_item, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"CU" = ( -/obj/structure/table/reinforced/steel, -/obj/item/device/radio/intercom/south, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_construction_site/office) -"CX" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/janitor/stairs) -"Db" = ( -/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/effect/floor_decal/corner_wide/green/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/upperlevel) -"Dd" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 8; - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 32; - d2 = 8; - icon_state = "11-8" - }, -/turf/simulated/open, -/area/maintenance/interstitial_cargo) -"Dj" = ( -/obj/machinery/camera/network/supply{ - c_tag = "Cargo - Upper Warehouse"; - dir = 1 - }, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"Dt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - name = "Abandoned Office"; - req_access = list(33); - dir = 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, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"Dv" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"Dy" = ( -/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/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"DC" = ( -/obj/structure/disposalpipe/segment, -/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/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "fuckyou3_inner"; - locked = 1; - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"DJ" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "fuckyou1_outer"; - locked = 1; - req_access = list(13); - dir = 1 - }, -/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/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"DL" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Warehouse Maintenance"; - req_access = list(31); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"Ed" = ( -/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/hologram/holopad, -/obj/effect/floor_decal/corner_wide/green, -/turf/simulated/floor/tiled/white, -/area/medical/upperlevel) -"Ee" = ( -/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/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "eng_ladder_outer"; - locked = 1; - name = "Telecoms Ladder Shaft Exterior Airlock"; - req_access = list(13); - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"Ei" = ( -/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/maintenance/medbay_interstitial) -"Ek" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/freezer, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"En" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 9; - icon_state = "corner_white" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"Er" = ( -/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/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"Et" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/security/training) -"Eu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/janitor/stairs) -"Ev" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/elevator) -"Ex" = ( -/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/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_interstitial) -"EI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"EK" = ( -/obj/structure/lattice/catwalk/indoor{ - name = "adjusted catwalk" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/north, -/turf/simulated/floor/plating, -/area/maintenance/elevator) -"EL" = ( -/turf/simulated/wall, -/area/maintenance/interstitial_cargo) -"EQ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/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/security/training) -"EZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/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/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/upperlevel) -"Fc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/medbay_virology) -"Fe" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/security/training_theoretical) -"Ff" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"Fg" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"Fj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "virology_airlock_exterior"; - locked = 1; - name = "Abandoned Sector"; - req_access = list(33); - dir = 1 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "virology_airlock_control"; - name = "Exterior access button"; - pixel_x = -24; - req_access = list(33) - }, -/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/blast/regular/open{ - dir = 4; - id = "virologylab_lockdown"; - name = "Blast Doors" - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"Fk" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/corner/pink{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"Fs" = ( -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"Fw" = ( -/obj/structure/extinguisher_cabinet/west, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"Fz" = ( -/obj/machinery/atmospherics/binary/pump{ - icon_state = "map_on"; - target_pressure = 150; - use_power = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"FD" = ( -/obj/machinery/newscaster/east{ - pixel_y = 29 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/bed/stool/chair/padded/black{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"FF" = ( -/obj/machinery/alarm/north, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/material/cardboard, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"FI" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_virology) -"FK" = ( -/turf/unsimulated/chasm_mask, -/area/mine/unexplored) -"FP" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/upperlevel) -"Ga" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/girder/displaced, -/obj/structure/grille/broken, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site) -"Ge" = ( -/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, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_construction_site/office) -"Gg" = ( -/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/effect/floor_decal/sign/v, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_interstitial) -"Gj" = ( -/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/window/reinforced, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"Gl" = ( -/obj/structure/disposalpipe/segment, -/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/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"Gm" = ( -/obj/machinery/alarm/east, -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"Gr" = ( -/obj/structure/track{ - icon_state = "track12" - }, -/obj/vehicle/train/cargo/engine/mining{ - dir = 2 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"Gv" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 10; - icon_state = "corner_white" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"Gw" = ( -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_construction_site/office) -"Gz" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 10; - icon_state = "corner_white" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"GA" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/item/storage/box/fancy/vials{ - starts_with = list(/obj/item/reagent_containers/glass/beaker/vial=2) - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"GE" = ( -/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{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"GI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"GL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"GO" = ( -/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/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site/zone_2) -"GP" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_construction_site/office) -"GT" = ( -/turf/simulated/open, -/area/medical/psych) -"GU" = ( -/obj/structure/girder/displaced, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site/zone_2) -"Hb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/stairs) -"Hc" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/maintenance/medbay_virology) -"Hd" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "eng_ladder"; - name = "exterior access button"; - pixel_x = -27; - pixel_y = 1; - req_access = list(13) - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"Hh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"Hm" = ( -/obj/structure/lattice, -/turf/simulated/open, -/area/medical/psych) -"Hn" = ( -/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/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"Hx" = ( -/obj/structure/cable/green{ - 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 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_interstitial) -"HC" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Construction Level" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/maintenance/substation/interstitial) -"HE" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/random/pottedplant, -/obj/effect/floor_decal/corner/pink/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_interstitial) -"HI" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille{ - opacity = 1 - }, -/obj/structure/sign/electricshock, -/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/maintenance/interstitial_cargo) -"HN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/alarm/south{ - req_one_access = list(24,11,55) - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/interstitial) -"HO" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/interstitial) -"HV" = ( -/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/disposalpipe/segment{ - dir = 4; - icon_state = "conpipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"HX" = ( -/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/plating, -/area/maintenance/medbay_interstitial) -"Ic" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"Im" = ( -/obj/structure/disposalpipe/segment, -/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/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"Ir" = ( -/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/medbay_interstitial) -"Is" = ( -/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/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"Iv" = ( -/turf/simulated/open, -/area/maintenance/medbay_virology) -"Ix" = ( -/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 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"Iy" = ( -/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/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"IC" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"IG" = ( -/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/effect/floor_decal/corner_wide/green/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/upperlevel) -"IH" = ( -/obj/machinery/newscaster/north, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"II" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Psych Hall 1" - }, -/obj/structure/extinguisher_cabinet/north, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"IJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"IK" = ( -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"IL" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/structure/table/rack/no_cargo, -/obj/item/hoist_kit, -/turf/simulated/open, -/area/quartermaster/storage) -"IP" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 9; - icon_state = "corner_white" - }, -/obj/structure/sign/vacuum{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"IQ" = ( -/obj/machinery/light_switch{ - pixel_x = 32 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"IU" = ( -/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/door/firedoor, -/obj/effect/floor_decal/corner/yellow{ - dir = 9; - icon_state = "corner_white" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"IW" = ( -/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 = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"IX" = ( -/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/structure/sign/drop{ - pixel_x = -32 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"IZ" = ( -/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, -/area/maintenance/interstitial_main) -"Ja" = ( -/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/maintenance/interstitial_main) -"Jb" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"Jd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"Je" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6; - icon_state = "corner_white" - }, -/obj/structure/extinguisher_cabinet/east, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"Jf" = ( -/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/maintenance/interstitial_main) -"Jg" = ( -/obj/structure/cable{ - 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{ - d1 = 1; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"Jh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 4; - icon_state = "corner_white_full" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"Jm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"Jn" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/southright, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_main) -"Jo" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southright, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_main) -"Jq" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - use_power = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator) -"Js" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"Ju" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/bridge_elevator) -"Jv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/bridge_elevator) -"Jx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"Jy" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_main) -"Jz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"JA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/pink/full{ - dir = 4 - }, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"JB" = ( -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"JC" = ( -/turf/simulated/floor/tiled, -/area/maintenance/bridge_elevator) -"JD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/bridge_elevator) -"JE" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/bridge_elevator) -"JF" = ( -/obj/effect/large_stock_marker, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"JG" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "fuckyou1_pump" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"JH" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_main) -"JJ" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/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/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"JK" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_main) -"JQ" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"JU" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"JV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(12,50); - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/stairs) -"JX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/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" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"JY" = ( -/obj/structure/track{ - icon_state = "track12" - }, -/obj/vehicle/train/cargo/trolley/mining, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"Kb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/wall, -/area/maintenance/interstitial_cargo) -"Kc" = ( -/obj/structure/ladder{ - pixel_y = 16 - }, -/obj/machinery/light/small/emergency{ - dir = 1; - name = "adjusted light fixture"; - pixel_x = 14 - }, -/turf/simulated/open/airless, -/area/mine/unexplored) -"Kd" = ( -/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/maintenance/bridge_elevator) -"Ke" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"Ki" = ( -/obj/structure/lattice, -/obj/structure/cable/green{ - d1 = 32; - d2 = 2; - icon_state = "11-2" - }, -/turf/simulated/open, -/area/maintenance/interstitial_cargo) -"Kj" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"Kk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/pipedispenser, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site) -"Kq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/north, -/turf/simulated/floor/plating, -/area/maintenance/substation/interstitial) -"Kr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"Kv" = ( -/obj/structure/table/rack{ - dir = 1 - }, -/obj/item/clothing/suit/fire, -/obj/item/tank/oxygen, -/obj/item/clothing/mask/gas, -/obj/item/extinguisher, -/obj/item/clothing/head/hardhat/red, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/elevator) -"Kw" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"Kz" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 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, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"KC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/obj/item/frame/air_alarm, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site) -"KD" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"KF" = ( -/obj/item/material/shard, -/obj/structure/grille, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site) -"KI" = ( -/obj/structure/janitorialcart{ - dir = 8 - }, -/obj/item/mop, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/janitor/stairs) -"KJ" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/interstitial_cargo) -"KR" = ( -/turf/simulated/wall, -/area/janitor/stairs) -"KU" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/maintenance/elevator) -"Lc" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"Lh" = ( -/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/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access = list(50); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"Lj" = ( -/obj/effect/decal/warning_stripes, -/obj/structure/ladder/up{ - pixel_y = 16 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/interstitial_cargo) -"Lk" = ( -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"Ll" = ( -/obj/effect/decal/warning_stripes, -/obj/structure/ladder{ - pixel_y = 16 - }, -/turf/simulated/open, -/area/maintenance/interstitial_cargo) -"Lo" = ( -/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/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"Lp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Psychiatry Wing"; - req_access = list(5); - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/upperlevel) -"Lr" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 5; - icon_state = "corner_white" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"Lt" = ( -/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/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"Lu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(12,50); - 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/plating, -/area/maintenance/interstitial_cargo) -"Lv" = ( -/obj/structure/cable{ - 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/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"Lw" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/interstitial_cargo) -"Lx" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/up{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 16; - d2 = 0; - icon_state = "12-0" - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/interstitial_cargo) -"Ly" = ( -/obj/machinery/light/small/emergency, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"Lz" = ( -/obj/structure/disposalpipe/down{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 8 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - d1 = 32; - icon_state = "11-1" - }, -/turf/simulated/open, -/area/maintenance/interstitial_cargo) -"LB" = ( -/obj/structure/table/standard, -/obj/item/storage/box/lights/mixed{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/storage/box/mousetraps, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/janitor/stairs) -"LC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/machinery/firealarm/east, -/obj/effect/landmark{ - name = "Revenant" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"LD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/biohazard{ - pixel_x = 32; - pixel_y = 20 - }, -/obj/random/junk, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"LI" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/elevator) -"LK" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc/east, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site/zone_2) -"LT" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1 - }, -/obj/machinery/camera/network/mining{ - c_tag = "Mining - Interstitial Exterior"; - dir = 1; - pixel_x = -10 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"LY" = ( -/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/effect/decal/cleanable/dirt, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "eng_ladder"; - pixel_x = -17; - pixel_y = 28; - tag_airpump = "eng_ladder_pump"; - tag_chamber_sensor = "eng_ladder_sensor"; - tag_exterior_door = "eng_ladder_outer"; - tag_interior_door = "eng_ladder_inner" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"Me" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"Mf" = ( -/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/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_interstitial) -"Mi" = ( -/obj/structure/track{ - icon_state = "track3" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"Mq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "virology_airlock_control"; - name = "Interior access button"; - pixel_x = -24; - req_access = list(33) - }, -/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/white, -/area/maintenance/medbay_virology) -"Mt" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"Mv" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 6; - icon_state = "corner_white" - }, -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"Mw" = ( -/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/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"My" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access = list(26); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/janitor/stairs) -"Mz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"MB" = ( -/obj/structure/cable{ - 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/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"MC" = ( -/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/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"MH" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/open, -/area/hallway/secondary/entry/stairs) -"MI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"MK" = ( -/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/firealarm/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/plating, -/area/janitor/stairs) -"MS" = ( -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 32; - icon_state = "11-1" - }, -/obj/structure/lattice, -/obj/structure/disposalpipe/down{ - dir = 8 - }, -/turf/simulated/open, -/area/maintenance/bridge_elevator) -"MT" = ( -/obj/structure/disposalpipe/segment, -/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/interstitial_cargo) -"MV" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/maintenance/substation/interstitial) -"MX" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/elevator) -"MZ" = ( -/obj/structure/disposalpipe/segment, -/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/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"Nb" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/open, -/area/quartermaster/storage) -"Nd" = ( -/obj/structure/lattice, -/obj/machinery/floodlight{ - name = "Construction Floodlight" - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/maintenance/interstitial_construction_site/zone_2) -"Nf" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/upperlevel) -"Nl" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"Ns" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/door/window/northright, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"Nx" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"Ny" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/blood/ripped, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"NB" = ( -/turf/simulated/wall, -/area/maintenance/interstitial_construction_site/zone_2) -"NH" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "fuckyou3_pump" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"NJ" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 6; - icon_state = "corner_white" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"NQ" = ( -/obj/structure/lattice, -/obj/structure/closet/crate, -/obj/random/loot, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/maintenance/interstitial_construction_site) -"Om" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/obj/item/material/shard{ - icon_state = "medium" - }, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site) -"Op" = ( -/obj/effect/floor_decal/sign/p, -/turf/simulated/floor/tiled/white, -/area/medical/upperlevel) -"Oq" = ( -/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/plating, -/area/maintenance/telecoms_ladder) -"Ow" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"Oz" = ( -/turf/simulated/floor/plating, -/area/maintenance/elevator) -"OD" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/roller{ - pixel_y = -2 - }, -/obj/item/roller{ - pixel_y = 14 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/medical/upperlevel) -"OG" = ( -/obj/structure/grille, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site/zone_2) -"ON" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/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/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"OP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1; - icon_state = "corner_white" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"OR" = ( -/obj/structure/table/rack, -/obj/item/shovel{ - pixel_x = -8 - }, -/obj/item/shovel, -/obj/item/shovel{ - pixel_x = 8 - }, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site/zone_2) -"OU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"OX" = ( -/obj/structure/lattice, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/maintenance/interstitial_construction_site) -"Pd" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"Pf" = ( -/obj/structure/track{ - icon_state = "track0" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"Ph" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/engineering_ladder) -"Pj" = ( -/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/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"Pm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10; - icon_state = "corner_white" - }, -/obj/machinery/alarm/south{ - req_one_access = list(24,11,55) - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"Pp" = ( -/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/machinery/alarm/west, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"Pq" = ( -/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{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"Pu" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"PA" = ( -/obj/structure/table/standard, -/obj/item/folder/white, -/obj/item/pen, -/obj/effect/floor_decal/corner/pink{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"PB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/pink/full{ - dir = 1 - }, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"PJ" = ( -/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/maintenance/medbay_interstitial) -"PM" = ( -/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/machinery/door/airlock/hatch{ - name = "Telecomms Access"; - req_access = list(12); - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"PP" = ( -/obj/structure/closet/secure_closet/custodial, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/plating, -/area/janitor/stairs) -"PT" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"PX" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/machinery/newscaster/south, -/obj/item/device/hand_labeler, -/obj/effect/floor_decal/corner/pink/full, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"PZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"Qb" = ( -/obj/structure/closet/crate/internals, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"Qc" = ( -/obj/effect/large_stock_marker, -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"Qp" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = null; - name = "Virology Blast Doors" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_virology) -"Qs" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"Qt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"Qu" = ( -/obj/machinery/power/apc/north{ - is_critical = 1 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_construction_site/office) -"Qz" = ( -/turf/simulated/wall, -/area/maintenance/elevator) -"QB" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/shower{ - dir = 4; - pixel_y = 12 - }, -/obj/structure/sink{ - pixel_y = 20 - }, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "cobweb1" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"QC" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/alarm/west, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/shower{ - dir = 4; - pixel_y = 12 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"QD" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"QE" = ( -/obj/structure/lattice, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/open, -/area/maintenance/medbay_virology) -"QJ" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - use_power = 1 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"QK" = ( -/obj/structure/cable{ - d1 = 16; - d2 = 0; - icon_state = "12-0" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/telecoms_ladder) -"QM" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/upperlevel) -"QN" = ( -/obj/effect/floor_decal/corner/yellow/full{ - dir = 8; - icon_state = "corner_white_full" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"QO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/medbay_virology) -"QP" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"QS" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/upperlevel) -"QW" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"Rb" = ( -/obj/structure/closet/crate/medical, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"Rd" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"Rf" = ( -/obj/effect/decal/cleanable/dirt, -/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/selfdestruct) -"Rl" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"Ro" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/computer/guestpass{ - pixel_x = -32 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/upperlevel) -"RH" = ( -/obj/structure/track{ - icon_state = "track9" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"RI" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/maintenance/medbay_virology) -"RJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1379; - id_tag = "eng_ladder_pump" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airlock_sensor{ - id_tag = "eng_ladder_sensor"; - pixel_y = -24 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"RK" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_main) -"RN" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/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 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"RO" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"RP" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/upperlevel) -"RR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"RT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"RU" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"RX" = ( -/obj/structure/bed/stool/chair, -/turf/simulated/floor/plating, -/area/maintenance/elevator) -"Sb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(5); - dir = 1 - }, -/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/plating, -/area/maintenance/medbay_interstitial) -"Si" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/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/plating, -/area/maintenance/medbay_interstitial) -"Sk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(5); - dir = 4 - }, -/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/maintenance/medbay_interstitial) -"So" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/obj/machinery/smartfridge/chemistry{ - name = "\improper Empty Smartfridge" - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/tiled/dark, -/area/maintenance/medbay_virology) -"Sr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"Ss" = ( -/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/effect/floor_decal/industrial/warning/dust, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"Sw" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/security/break_room) -"Sx" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"SA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"SE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/obj/item/material/shard, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site) -"SF" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/bed/stool/chair/office/wheelchair{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/medical/upperlevel) -"SN" = ( -/obj/item/device/radio/intercom/north, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/upperlevel) -"SQ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"ST" = ( -/obj/structure/lattice, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/open, -/area/maintenance/medbay_virology) -"SV" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_construction_site/office) -"SX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "fuckyou1_inner"; - locked = 1; - req_access = list(13); - dir = 1 - }, -/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/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"SY" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/maintenance/medbay_virology) -"SZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site) -"Ti" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"Tl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"Ts" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/pink/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_interstitial) -"Tu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 6 - }, -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"Tv" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Surface Access Stairwell" - }, -/obj/machinery/door/firedoor/multi_tile, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"Tx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"Ty" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/maintenance/medbay_virology) -"TB" = ( -/obj/machinery/floodlight{ - name = "Construction Floodlight" - }, -/obj/machinery/light_switch{ - pixel_x = -2; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"TD" = ( -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/firealarm/west, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"TL" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"TP" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site) -"TY" = ( -/turf/simulated/wall, -/area/maintenance/interstitial_construction_site/office) -"Ua" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"Ub" = ( -/obj/machinery/alarm/west, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/janitor/stairs) -"Ue" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"Ui" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id = null; - name = "Virology Blast Doors" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_virology) -"Uj" = ( -/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/interstitial_cargo) -"Uk" = ( -/obj/structure/disposalpipe/segment, -/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/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "fuckyou3_outer"; - locked = 1; - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"Ul" = ( -/turf/simulated/open, -/area/hallway/secondary/entry/stairs) -"Uq" = ( -/obj/structure/table/reinforced/steel, -/obj/item/folder/yellow, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_construction_site/office) -"Ur" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"Uy" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"UA" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10; - tag = "icon-warning_dust (SOUTHWEST)" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/splatter, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"UB" = ( -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/down/supply, -/obj/structure/cable{ - d1 = 32; - d2 = 2; - icon_state = "11-2" - }, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/engineering_ladder) -"UC" = ( -/obj/item/stack/flag/red/planted, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"UE" = ( -/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/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"UF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/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/plating, -/area/maintenance/medbay_interstitial) -"UG" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"UI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"UK" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/medbay_virology) -"UO" = ( -/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/effect/floor_decal/corner/pink{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"US" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/mucus, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"UW" = ( -/obj/item/storage/secure/safe{ - pixel_x = 32 - }, -/obj/machinery/firealarm/north, -/obj/effect/floor_decal/corner/pink/full{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/decal/cleanable/spiderling_remains, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"Vi" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/maintenance/medbay_virology) -"Vm" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/light_switch{ - pixel_x = -10; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"Vp" = ( -/obj/machinery/ringer/east{ - department = "Cargo"; - id = "cargo_ringer"; - req_access = list(31) - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/open, -/area/quartermaster/storage) -"Vt" = ( -/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" - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"Vv" = ( -/obj/structure/extinguisher_cabinet/south, -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/pink/full, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_interstitial) -"Vx" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) - }, -/turf/simulated/floor/plating, -/area/maintenance/elevator) -"VC" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"VH" = ( -/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/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"VJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/hologram/holopad, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/mucus, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"VO" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/alarm/south{ - req_one_access = list(24,11,55) - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/firealarm/east, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Virology Staircase"; - dir = 1 - }, -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/pink/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_interstitial) -"VR" = ( -/obj/effect/large_stock_marker, -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"VV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site) -"Wa" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"Wk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5; - icon_state = "corner_white" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"Wm" = ( -/obj/structure/bed/stool/chair/office/wheelchair{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/medical/upperlevel) -"Wo" = ( -/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/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"Wu" = ( -/obj/structure/track{ - icon_state = "track3" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"WF" = ( -/obj/random/pottedplant, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/alarm/south, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Access Stairwell"; - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"WG" = ( -/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/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/upperlevel) -"WJ" = ( -/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{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"WK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site/zone_2) -"WL" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_interstitial) -"WO" = ( -/obj/machinery/alarm/north, -/obj/effect/landmark{ - name = "Revenant" - }, -/turf/simulated/floor/plating, -/area/maintenance/security_interstitial) -"WR" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site) -"WS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Elevator Maintenance"; - req_access = list(12); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/elevator) -"WV" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/substation/interstitial) -"WX" = ( -/turf/simulated/wall, -/area/maintenance/security_interstitial) -"WZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/steel, -/obj/random/loot, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site) -"Xn" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 1; - icon_state = "corner_white_full" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"Xu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/item/device/radio/intercom/north, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/item/reagent_containers/glass/beaker/vial, -/obj/effect/decal/cleanable/molten_item, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"Xv" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"Xx" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"XA" = ( -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/elevator) -"XG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/fire_alarm, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site/zone_2) -"XJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"XQ" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Upper-Level Elevator Entrance"; - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/upperlevel) -"XV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10; - icon_state = "corner_white" - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_main) -"XW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/steel, -/obj/random/loot, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site/zone_2) -"XX" = ( -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp, -/obj/effect/floor_decal/corner/pink/full{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "cobweb1" - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"Ya" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/status_display/supply_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"Yd" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/corner/pink/full, -/obj/item/storage/box/monkeycubes, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"Ye" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/upperlevel) -"Yo" = ( -/obj/machinery/power/sensor{ - long_range = 1; - name = "Powernet Sensor - Construction Level (Interstitial)"; - name_tag = "Construction Level (Interstitial)" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/interstitial) -"Ys" = ( -/obj/effect/large_stock_marker, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"Yw" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"Yz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"YA" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/upperlevel) -"YN" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/down{ - dir = 1 - }, -/obj/machinery/door/window/eastleft{ - name = "Maintenance Access"; - req_access = list(12) - }, -/turf/simulated/open, -/area/maintenance/medbay_interstitial) -"YQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/interstitial_cargo) -"YS" = ( -/turf/simulated/wall, -/area/maintenance/medbay_interstitial) -"YU" = ( -/obj/structure/closet/secure_closet/freezer{ - name = "refrigerator" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/security/break_room) -"YW" = ( -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"YX" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_virology) -"Zk" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"Zr" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay_interstitial) -"Zs" = ( -/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/effect/decal/cleanable/dirt, -/turf/simulated/floor/airless, -/area/maintenance/interstitial_construction_site) -"Zu" = ( -/obj/item/device/radio/intercom/east, -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_cargo) -"Zz" = ( -/turf/simulated/open, -/area/turbolift/medical_interstitial) -"ZA" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/tiled, -/area/security/break_room) -"ZE" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Construction Level Substation"; - req_one_access = list(11,24); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/interstitial) -"ZG" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/upperlevel) -"ZM" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/break_room) -"ZN" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_engineering{ - name = "Construction Office"; - req_one_access = list(11,24); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/maintenance/interstitial_construction_site/office) -"ZR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(64); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_interstitial) -"ZS" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"ZU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/machinery/alarm/west, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"ZY" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/upperlevel) - -(1,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(2,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(3,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(4,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(5,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(6,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(7,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(8,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(9,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(10,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(11,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(12,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(13,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(14,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(15,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(16,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(17,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(18,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(19,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(20,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(21,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(22,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(23,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(24,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(25,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(26,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(27,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(28,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(29,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(30,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(31,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(32,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(33,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(34,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(35,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -QW -ab -ab -ab -ab -ab -ab -ab -ab -ac -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(36,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ab -ab -ab -ab -ab -ab -ac -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(37,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ac -ab -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(38,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(39,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(40,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ac -ab -ab -aa -ab -ab -ab -ac -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(41,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -FK -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ad -aa -aa -aa -ad -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(42,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ac -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(43,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(44,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -FK -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(45,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(46,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(47,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(48,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ac -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(49,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(50,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(51,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -ad -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(52,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Ph -Ph -Ph -Ph -Ph -Ph -Ph -Ph -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(53,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Ph -UB -aj -ZU -Fz -EI -Mt -Ph -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(54,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Ph -pl -ak -ao -ao -yP -Mt -Ph -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ab -QW -ab -ab -ab -aa -ae -ae -ae -ae -ae -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(55,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Ph -ah -al -ai -Ph -Ph -Ph -Ph -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ae -QK -uK -an -ae -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(56,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Ph -ai -am -aq -Ph -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ae -ot -GL -wA -ae -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(57,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Ph -Ph -sz -Ph -Ph -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ae -af -AT -CL -ae -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(58,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -Ph -UE -xH -Ph -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ac -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -ae -ag -Oq -wG -ae -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(59,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -Ph -LY -RJ -Ph -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ac -ab -ab -ab -ab -aa -aa -ae -ae -PM -ae -ae -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(60,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -Ph -Ee -Ph -Ph -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(61,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -Zk -zn -Hd -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(62,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -me -Er -mj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(63,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -qc -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(64,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -qc -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(65,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -qc -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(66,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -qc -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(67,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -qc -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(68,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -qc -ou -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(69,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -qc -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(70,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -qc -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(71,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -qc -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(72,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -qc -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(73,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -qc -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(74,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -qc -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(75,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -qc -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(76,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -qc -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(77,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -qc -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(78,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -qc -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(79,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -qc -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(80,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -qc -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(81,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -qc -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -md -aB -aB -mh -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(82,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -qc -ab -ab -aa -aa -aa -aa -aa -aa -aa -wJ -mg -tm -aa -aB -aB -aB -aB -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(83,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -qc -ab -ab -aa -aa -aa -aa -aa -aa -aa -mi -pZ -IC -aa -aB -aB -aB -aB -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(84,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -qc -ab -ab -ab -ab -aa -aa -aa -aa -ab -mi -pZ -IC -aa -me -aB -aB -mj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(85,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -qc -ab -ab -ab -ab -ab -ab -ab -ab -ab -mi -pZ -IC -ab -ab -cL -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -Vt -ae -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(86,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -qc -ab -ab -ab -ab -ab -ab -ab -ab -ab -Yw -mf -up -ab -ab -aB -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -sL -ae -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(87,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -qc -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aB -ab -ab -ab -aB -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -mo -mo -mo -KJ -KJ -KJ -ae -BM -ae -KJ -KJ -rh -rh -rh -rh -rh -rh -rh -rh -rh -rh -rh -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(88,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -Ua -Mw -Mw -Mw -Mw -Mw -Mw -Mw -Mw -Mw -Mw -Mw -Mw -Mw -Mw -MB -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -mo -mo -mo -mo -KJ -vi -pC -Kz -zF -Ic -Ti -KJ -qL -Uy -zw -Qb -wr -AW -wr -AQ -wr -qR -rh -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(89,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -qc -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -mo -mo -mo -mo -mo -KJ -AB -Dd -Ki -Ce -Rd -RO -DL -Jx -Rb -Fs -CD -Fs -ss -Fs -Ek -Fs -xi -rh -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(90,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -qc -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -mo -mo -mo -KJ -KJ -KJ -KD -nu -nu -tN -KJ -BS -KJ -sh -wV -MI -Qs -rn -rn -rn -rn -rn -nR -rh -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -md -mf -mh -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(91,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -qc -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -mo -mo -mo -mo -KJ -cp -cp -cp -cp -cp -cp -YQ -KJ -Ya -pH -AG -RU -rn -rn -rn -rn -rn -Dj -rh -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ad -Kc -mi -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(92,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -qc -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -rI -ab -ab -ab -ab -ab -mo -mo -KJ -KJ -cp -cp -cp -cp -cp -cp -YQ -KJ -JF -Fs -lY -TL -rn -rn -rn -tt -rn -Ys -rh -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -me -mg -mj -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(93,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -qc -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -rI -ab -ab -ab -ab -ab -ab -mo -mo -KJ -cp -cp -cp -cp -cp -cp -YQ -KJ -Qc -sx -IQ -wy -vX -Vp -IL -Nb -rn -VR -rh -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(94,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -qc -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -nD -nD -Pf -Wu -sk -ab -md -mf -mh -mo -mo -KJ -cp -cp -cp -cp -cp -cp -YQ -KJ -rh -rh -rh -rh -rh -rh -rh -rh -rh -rh -rh -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(95,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ta -ta -qe -SZ -SZ -ta -wl -ta -SZ -SZ -oc -ta -ta -NB -GU -wY -mX -BH -OG -OG -NB -NB -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -Gr -qN -vP -ab -IC -nF -mi -mo -KJ -KJ -cp -cp -cp -cp -cp -cp -YQ -KJ -KJ -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(96,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -WR -WZ -SZ -WR -OX -OX -Zs -SZ -qe -OX -rA -Kk -ta -Nd -AO -wY -AO -AO -ua -XW -XG -NB -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -JY -qN -vP -ab -me -mg -mj -mo -mo -KJ -cp -cp -cp -cp -cp -cp -YQ -KJ -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(97,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -SZ -qe -SZ -SZ -OX -qe -Zs -SZ -OX -SZ -NQ -sd -ta -OR -AO -wY -wY -AO -mX -wY -mX -wY -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -JY -qN -vP -ab -ab -ab -ab -xa -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -YQ -KJ -KJ -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(98,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -KC -SZ -qe -OX -qe -qe -Zs -SZ -qe -qe -qe -qe -SZ -st -mX -wY -wY -wY -wY -wY -wY -wY -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -JY -qN -vP -ab -ab -md -mf -mf -mf -KJ -cq -cy -Pd -il -mM -gC -Yz -KJ -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(99,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -KF -qe -qe -OX -qe -SZ -Zs -OX -SZ -qe -SZ -qe -ta -sY -wY -wY -wY -wY -AO -mX -mX -wY -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -vC -Mi -RH -ab -md -LT -EL -KD -Ke -wH -aA -cy -qM -SQ -Ow -KJ -KJ -KJ -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(100,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ta -nH -OX -qe -SZ -SZ -Zs -SZ -OX -qe -qe -SZ -SZ -AO -wY -wY -wY -wY -wY -AO -wY -AO -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -IC -aB -OU -qz -zx -OU -QD -cy -qM -Be -Sr -Ns -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(101,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -SZ -qe -qe -qe -SZ -qe -Zs -SZ -qe -qe -SZ -SZ -ta -mX -AO -wY -wY -mX -wY -wY -wY -AO -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -JX -ym -ym -ym -ym -ym -ym -ym -ym -ym -ym -ym -Im -uW -Uk -wC -Gl -DC -Cl -xr -rK -Rl -PT -sg -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(102,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -Om -nx -SZ -OX -SZ -OX -Zs -qe -SZ -SZ -OX -SZ -ta -mX -AO -mX -mX -mX -wY -AO -AO -wY -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -Pj -ab -ab -ab -ab -UC -ab -ab -ab -ab -ab -ab -IC -aB -OU -sE -NH -OU -Zu -UG -cE -Hh -yW -Ns -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(103,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -SE -sQ -SZ -SZ -SZ -SZ -Zs -SZ -qe -SZ -OX -TP -Ga -WK -GO -WK -LK -mX -wY -wY -wY -NB -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -Pj -ab -ab -mo -mo -mo -mo -mo -mo -ab -ab -ab -me -JU -EL -KD -Ke -EL -EL -EL -EL -Kb -Lh -EL -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(104,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -WR -pE -OX -OX -Ak -cX -aE -cX -cX -cX -cX -VV -ta -NB -yj -NB -TY -TY -SV -pm -TY -TY -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -Pj -ab -mo -mo -mo -mo -mo -mo -mo -mo -ab -ab -ab -me -mg -mg -mg -mo -mo -mo -EL -QJ -WJ -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(105,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -iD -iD -iD -az -RK -iD -iD -mG -iD -iD -az -RK -iD -iD -aL -nz -aV -TY -Qu -wd -BJ -CU -TY -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -Pj -ab -mo -mo -mo -qi -qi -qi -qi -qi -tW -Bf -Hb -qi -tW -Bf -Hb -qi -qi -qi -qi -Ue -WJ -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(106,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -at -QN -En -En -En -En -IP -tJ -vs -vs -vs -vs -vs -IU -OP -IW -Jf -ZN -Ge -CC -GP -Uq -qk -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -Pj -ab -mo -mo -mo -qi -QP -nX -Fw -Tv -Me -Kj -Me -TD -Tl -Kj -Me -yZ -Ul -Ul -qi -PZ -rr -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(107,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -QW -ab -ab -au -ax -Mv -aw -aw -aw -NJ -aF -NJ -aw -aw -aw -NJ -aK -Av -Ja -aW -TY -qo -Gw -Bz -Cf -yF -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -Pj -ab -mo -mo -mo -qi -QP -kw -Me -Me -SA -pF -oO -oO -UI -Br -pB -Me -Ul -MH -qi -Nx -qY -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(108,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ar -ar -ar -Qz -Qz -Qz -Qz -Qz -ar -Qz -Qz -Qz -Qz -Qz -ar -aN -Ja -aW -TY -bi -br -bE -Cn -TY -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -Pj -ab -mo -mo -qi -qi -qi -qi -qi -qi -vh -MC -WF -qi -qi -qi -qi -qi -qi -qi -qi -Lk -WJ -EL -EL -EL -EL -EL -EL -EL -EL -EL -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(109,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -ar -Qz -ay -ay -ay -ay -ay -Qz -aG -aG -aG -aG -aG -Ev -aN -IZ -Gv -iD -iD -iD -bF -iD -iD -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -Pj -ab -ab -mo -KR -mB -KI -Ub -MK -My -yU -oD -Lo -JV -Uj -Uj -Uj -nO -ok -ok -ok -ok -Pu -MZ -MT -MT -MT -MT -MT -MT -MT -cu -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(110,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -ar -Qz -ay -ay -ay -ay -ay -Qz -aG -aG -aG -aG -aG -KU -Wk -Pq -Gz -iD -TB -wL -aw -IJ -iD -JH -JK -iD -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -Pj -ab -ab -ab -Eu -CX -wE -wX -CO -qi -FD -xG -oB -qi -EL -EL -EL -HI -EL -EL -EL -EL -EL -EL -EL -EL -EL -EL -EL -EL -EL -WJ -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(111,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ar -ar -ar -ay -ay -ay -ay -ay -ar -aG -aG -aG -aG -aG -ar -yf -Jb -Jg -bb -Jm -bu -bG -bQ -bP -bV -bY -bP -md -Lc -ab -ab -ab -ab -ab -ab -ab -ab -ab -Pj -UC -ab -mo -KR -LB -PP -xJ -KR -qi -tW -Bf -Hb -qi -mo -mo -EL -yq -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -EL -WJ -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(112,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ar -Qz -ay -ay -ay -ay -ay -Qz -aG -aG -aG -aG -aG -Ev -Lr -Jd -XV -iD -Jn -Js -Jy -ty -SX -JJ -ON -DJ -rL -Ss -sK -sK -sK -sK -sK -sK -sK -sK -ym -ZS -ab -ab -mo -KR -KR -KR -KR -KR -mo -ab -ab -ab -mo -mo -mo -EL -yq -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -EL -WJ -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(113,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ar -Qz -ay -ay -ay -ay -ay -Qz -aG -aG -aG -aG -aG -KU -aM -nz -Pm -iD -bk -Bl -bH -XJ -bR -JG -pq -bP -me -mj -ab -ab -UC -ab -ab -ab -ab -ab -ab -ab -ab -ab -mo -mo -mo -mo -mo -mo -mo -ab -ab -ab -ab -mo -mo -EL -av -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -EL -WJ -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(114,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ar -ar -ar -EK -LI -LI -Vx -LI -LI -LI -LI -LI -LI -LI -nA -Xn -Je -Jh -iD -Jo -bv -Jz -LC -iD -iD -iD -iD -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -mo -mo -mo -mo -mo -ab -ab -ou -ab -ab -mo -mo -EL -yq -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -EL -WJ -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(115,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ar -ar -ar -ar -ar -ar -ar -ju -ar -ar -WS -ar -ar -ar -ZE -WV -aX -WV -iD -iD -iD -iD -iD -mo -mo -mo -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -mo -mo -mo -EL -qF -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -EL -WJ -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(116,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ar -mo -mo -ar -mo -ar -ar -ar -Kv -Oz -RX -tk -ar -Kq -HO -HN -WV -mo -mo -mo -mo -mo -mo -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -mo -mo -mo -mo -mo -mo -EL -EL -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -EL -WJ -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(117,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -mo -mo -ar -XA -MX -Oz -iS -ar -Yo -HC -nE -WV -mo -mo -mo -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -mo -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -EL -WJ -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(118,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -mo -mo -ar -ar -ar -mJ -ar -ar -cZ -Al -MV -WV -UK -mo -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -EL -WJ -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(119,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -mo -mo -UK -Iv -Iv -xy -Iv -Iv -Iv -xy -Iv -Iv -UK -md -Ny -UA -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -EL -WJ -EL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(120,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -mo -UK -QE -xy -Ad -BW -BW -BW -BW -BW -Co -pp -RT -LD -Fg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KJ -KJ -Lu -KJ -KJ -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(121,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -mo -mo -mo -UK -Iv -Iv -nN -Iv -Iv -Iv -xy -Iv -Iv -UK -me -wc -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KJ -Lj -Lt -Lx -KJ -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(122,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -mo -mo -UK -UK -tR -Ui -tz -nT -Iv -xy -Iv -Iv -UK -mo -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KJ -JB -Lv -Ly -KJ -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(123,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -mo -UK -of -BP -py -tM -AL -Iv -xy -Iv -Iv -UK -mo -mo -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KJ -Ll -Lw -Lz -KJ -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(124,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -db -dd -dm -dv -db -dd -dm -dv -db -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -mo -UK -CP -GA -zW -zd -AL -Iv -xy -Iv -Iv -UK -mo -mo -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KJ -KJ -KJ -KJ -KJ -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(125,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -db -jv -dn -dn -dH -jx -dn -ej -db -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -aa -aa -ab -ab -YS -JQ -Sx -Sx -uX -UK -UK -UK -UK -Xu -xP -CT -AL -xy -xy -xy -ST -UK -mo -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(126,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -db -de -do -dw -db -dJ -ea -dJ -db -dc -dc -dc -dc -rp -fz -fV -rp -gE -rp -fz -fV -rp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -Xv -Ts -BC -pc -Vv -UK -QB -QC -UK -on -qU -zi -Qp -Iv -xy -Iv -Iv -UK -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(127,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -db -df -dp -dx -dI -dQ -dR -ek -db -ew -eI -eU -dM -rp -fA -fW -gp -gF -gY -hq -hG -rp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -na -yX -Bg -Ex -Gg -Fj -Cc -Hn -Mq -Wa -pa -yT -UK -tR -tz -tz -rt -UK -ab -ab -ab -ab -hD -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(128,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -db -dg -dp -dx -dJ -dR -dR -el -db -ex -jB -eV -mk -rp -fB -fX -gq -gG -gZ -hr -hH -rp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -na -oF -WL -PJ -Zr -UK -Kr -um -UK -qs -wn -yD -Ty -XX -qu -PA -PX -UK -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(129,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -db -jw -dp -dx -dI -dQ -dR -ek -db -ex -eJ -eW -fh -rp -fZ -fY -gq -gH -ha -hs -hI -rp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -yE -oF -HE -Mf -VO -UK -UK -UK -UK -QO -UO -Nl -nJ -pO -qU -Ff -rH -UK -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(130,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -db -dh -dq -dx -dJ -dR -dR -em -db -ey -eK -eX -fi -rp -fD -fZ -gr -gG -Ab -ht -ml -rp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -YS -YS -YS -Sk -YS -YS -mo -mo -UK -vd -nm -pd -Dt -pd -US -VJ -qG -UK -mo -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(131,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -db -di -dr -dx -dI -jy -eb -ek -db -ez -eL -eY -fj -rp -fA -fZ -gs -gI -hb -hu -hK -rp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -YS -Ei -YS -mo -mo -mo -UK -nr -CN -Vi -vf -UW -Fk -Qt -wT -UK -mo -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(132,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -db -dj -ds -dy -db -db -db -db -db -eA -jC -jD -eA -rp -fE -ga -ga -Fe -rp -hv -hL -rp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -YS -Ei -YS -mo -mo -mo -UK -FF -qT -Yd -vf -vf -vf -vk -vf -UK -UK -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(133,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -FK -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dc -dk -dt -dz -dK -dS -ec -en -va -eB -eM -dS -dS -fp -dS -dS -dS -gJ -hc -EQ -hM -dc -dc -dc -dc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -aa -YS -Ei -YS -mo -mo -mo -UK -YX -oX -Ur -vf -ol -qV -Hc -pQ -sR -FI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(134,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dc -dl -du -dA -dA -dT -ed -dA -es -dA -eN -dA -Et -fq -dA -dA -gt -gK -hd -hw -dM -dM -jF -ii -dc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -YS -Ei -YS -mo -mo -mo -UK -PB -Tu -JA -vf -nk -CP -Fc -CP -CP -SY -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(135,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dc -dc -eE -dB -dL -dU -ee -dL -et -eC -eO -et -Ax -et -eC -eO -et -gL -he -hx -hO -hO -ii -ii -dc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -YS -Ei -YS -mo -mo -mo -UK -UK -UK -UK -UK -UK -So -zB -Bj -RI -Au -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(136,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -eE -dC -Ci -dV -ef -eo -eu -eD -Sw -fa -fk -fr -fF -gb -et -WX -WX -vb -WX -WX -WX -WX -dc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -YS -Ei -YS -mo -mo -mo -mo -mo -mo -mo -mo -UK -UK -UK -UK -UK -UK -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(137,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -eE -dD -dN -dW -eg -ep -ev -YU -eQ -fb -fl -fs -fG -gc -et -gM -hf -hy -WX -ib -vc -WX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -YS -Ei -YS -mo -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -mo -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(138,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -eE -dE -dO -dX -mZ -jz -et -eF -eP -fc -fm -ZA -fG -gd -et -WO -hg -sC -WX -WX -WX -WX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -YS -Ei -YS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(139,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -eE -dF -dP -dY -eh -eq -eu -eG -eP -fd -fn -ZM -fI -ge -et -gN -hh -WX -WX -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -YS -Ei -YS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(140,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -eE -dG -dG -dZ -ei -er -ev -eH -eT -fd -fo -ZA -fJ -gf -et -gO -hh -WX -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -YS -Ei -YS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(141,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -eE -eE -eE -eE -eE -eE -et -eC -so -eO -et -eC -so -eO -et -hi -Hx -WX -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -YS -Ei -YS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(142,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -WX -WX -WX -WX -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -YS -Ei -YS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(143,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -YS -YS -Wo -YS -YS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(144,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -YS -YS -YS -YS -YS -YS -YS -YW -Ei -yS -YS -YS -YS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(145,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -YS -yS -yS -yS -yS -yS -yS -yS -RN -GE -GE -Si -YS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(146,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -YS -ZR -YS -YS -YS -YS -YS -YS -tB -YS -YS -Ei -YS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(147,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -hZ -kq -kA -kK -kU -hZ -GT -GT -GT -GT -YS -Ei -YS -aa -aa -aa -aa -pT -pT -pT -pT -pT -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(148,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ke -jA -kB -kt -kL -ke -GT -GT -GT -GT -YS -Ei -YS -YS -YS -YS -YS -pT -OD -Wm -SF -pT -pT -pT -pT -pT -pT -ab -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(149,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -kf -jA -kB -kM -kV -kg -GT -GT -GT -GT -YS -RN -uD -uD -uD -uD -uD -Sb -Db -EZ -zm -Ro -oJ -FP -sX -zQ -YA -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(150,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -kf -jA -kC -kO -po -hZ -Hm -Hm -Hm -Hm -YS -tB -YS -YS -YS -YS -YS -pT -SN -Ed -XQ -QS -Bu -Bu -Bu -Ye -RP -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(151,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ff -jA -kB -kP -kU -kY -GT -GT -GT -GT -Hm -GT -hZ -aa -aa -aa -aa -pT -mz -sl -mT -mT -mT -mT -mT -mT -mT -ab -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(152,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -kg -jA -kB -kt -kL -kg -GT -GT -GT -GT -Hm -GT -hZ -aa -hZ -hZ -hZ -pT -ZG -WG -Nf -Zz -Zz -Zz -Zz -Zz -pw -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(153,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -hZ -IH -kB -kQ -kV -hZ -GT -GT -GT -GT -Hm -GT -hZ -aa -hZ -GT -GT -Nf -QM -sl -ZY -Zz -Zz -Zz -Zz -Zz -pw -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(154,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -hZ -kr -kE -hZ -hZ -hZ -GT -GT -GT -GT -Hm -GT -hZ -aa -hZ -GT -GT -qQ -yO -sU -mT -Zz -Zz -Zz -Zz -Zz -pw -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(155,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -mo -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -hZ -hZ -kF -hZ -hZ -hZ -lg -lm -lm -lm -lD -hZ -hZ -hZ -hZ -Vm -kt -ZY -QM -sl -Nf -Zz -Zz -Zz -Zz -Zz -pw -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(156,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -hZ -ks -kG -kR -hZ -kZ -jP -ln -lq -lx -jP -lL -hZ -lN -mm -kt -kt -Lp -Op -IG -ZY -Zz -Zz -Zz -Zz -Zz -pw -YS -YS -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(157,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -bT -bT -bT -bT -bT -bT -bT -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -jQ -jA -kH -kt -kW -kt -lh -kt -kt -kt -RR -kt -lS -lU -RR -kt -mw -hZ -pT -jK -mT -pw -pw -pw -pw -pw -pw -lZ -YS -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(158,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -bT -bT -bU -cQ -cQ -cQ -cT -bT -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -kj -jA -kI -kS -kX -kX -li -kX -lr -kX -lE -lM -lM -lV -mp -mt -mx -hZ -HV -UF -Ir -Ir -Pp -Ir -VH -IX -Gj -vD -YS -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(159,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -bT -bU -cN -bT -bT -cS -cU -bT -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -hZ -ku -kJ -kT -hZ -II -kt -Gm -ko -ko -lF -IK -hZ -lW -kt -kt -mv -hZ -HX -Kw -Dv -Dv -Dv -Dv -VC -As -xv -YN -YS -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(160,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -bT -co -bT -bT -bT -bT -cU -bT -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -hZ -hZ -hZ -kk -hZ -hZ -lj -hZ -la -ls -lG -ly -hZ -lX -mq -mq -my -hZ -Dy -YS -YS -YS -YS -YS -YS -Xx -vm -Tx -YS -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(161,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -bT -ct -cP -bT -bT -bT -cU -bT -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -YS -Ix -hZ -lb -lk -hZ -lt -lz -lH -lO -hZ -hZ -hZ -hZ -hZ -hZ -Ix -YS -aa -aa -aa -aa -YS -YS -YS -YS -YS -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(162,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -bT -bT -ct -cR -cR -cR -cV -bT -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -YS -Ix -hZ -lc -lk -hZ -lu -lA -lI -lP -hZ -HV -Ir -Ir -Ir -Ir -Iy -YS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(163,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -bT -bT -bT -bT -bT -bT -bT -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -YS -Ix -hZ -ld -ll -hZ -lv -lB -lJ -lQ -hZ -HX -YS -YS -YS -YS -YS -YS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(164,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -YS -Ix -hZ -le -lk -hZ -lw -lC -lK -lR -hZ -HX -YS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(165,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -ab -ab -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -YS -Ix -hZ -lf -lk -hZ -hZ -hZ -hZ -hZ -hZ -HX -YS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(166,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -YS -Ix -hZ -hZ -hZ -hZ -Is -Ir -Ir -Ir -Ir -Iy -YS -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(167,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -ab -ab -ou -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -YS -GI -Ir -Ir -Ir -Ir -Iy -YS -YS -YS -YS -YS -YS -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(168,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -YS -YS -YS -YS -YS -YS -YS -YS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(169,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -ab -ab -aa -ab -ab -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(170,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -ab -ab -aa -ab -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(171,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -ab -ab -aa -ab -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -ab -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(172,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -ab -aa -ab -ab -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -ab -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(173,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -ab -ab -aa -ab -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -mo -mo -ab -ab -mo -JE -JE -JE -JE -JE -aa -aa -JE -aa -aa -JE -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(174,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -ab -ab -ab -ab -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -mo -ab -ab -ab -ab -ab -JE -bl -bw -bI -JE -JE -JE -JE -JE -JE -JE -JE -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(175,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -ab -ab -ab -ab -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -ab -ab -ab -ab -ab -ab -ab -ab -bd -bm -bx -bJ -JE -bX -bX -bX -bX -bX -JE -aa -aa -aa -aa -aa -aa -JE -JE -JE -JE -JE -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(176,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -ab -ab -ab -ab -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -ab -ab -ab -ab -ab -ab -aS -aZ -be -bn -by -JC -JE -bX -bX -bX -bX -bX -JE -aa -aa -aa -aa -aa -aa -JE -cd -re -cg -JE -JE -JE -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(177,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -ab -ab -aa -ab -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -ab -ab -ab -ab -ab -aQ -aT -ba -bf -bo -bz -JC -JE -bX -bX -bX -bX -bX -JE -JE -aa -aa -aa -aa -aa -JE -ce -ch -yb -cj -ck -JE -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(178,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -ab -ab -aa -ab -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -ab -ab -ab -ab -ab -aU -aZ -bg -Jq -Ju -JD -JE -bX -bX -bX -bX -bX -JE -aa -aa -aa -aa -aa -aa -JE -cf -ci -MS -JE -Kd -JE -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(179,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -ab -aa -ab -ab -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -ab -ab -ab -ab -ab -ab -bh -bp -Jv -bK -JE -bX -bX -bX -bX -bX -JE -JE -JE -JE -JE -JE -JE -JE -JE -JE -JE -JE -Kd -JE -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(180,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -ab -aa -aa -ab -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -ab -ou -ab -ab -ab -JE -bq -bA -bL -JE -JE -JE -JE -JE -JE -JE -JE -cb -bM -bM -bM -bM -bM -bM -bM -bM -bM -cc -JE -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(181,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -ab -ab -ab -ab -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -ab -ab -ab -ab -ab -JE -JE -bB -JE -JE -aa -aa -JE -aa -aa -JE -JE -Kd -JE -JE -JE -JE -JE -JE -JE -JE -JE -JE -JE -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(182,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -ab -ab -ab -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -io -io -io -io -io -mo -mo -mo -mo -mo -mo -ab -ab -ab -ab -ab -aa -JE -Kd -JE -JE -JE -JE -JE -JE -JE -JE -JE -Kd -JE -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(183,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -ab -ab -ab -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -io -io -io -io -iN -cW -cW -iV -iV -iV -iV -iV -iV -iV -iV -iV -iV -iV -jj -bD -jl -jt -bM -bM -bM -bM -bM -bM -bM -cc -JE -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(184,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -ab -ab -ab -mo -mo -aa -io -io -io -io -aa -aa -io -io -io -io -io -aa -aa -io -io -io -iG -iL -iO -io -io -io -mo -mo -mo -mo -ab -ab -ab -ab -ab -aa -JE -bc -jm -bc -JE -JE -JE -JE -JE -JE -JE -JE -JE -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(185,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -FK -aa -aa -aa -aa -aa -mo -mo -ab -ab -mo -mo -io -io -io -io -io -io -io -io -io -io -io -io -io -io -io -io -io -iH -iH -iP -io -io -io -io -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -bc -jn -bc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(186,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -ab -mo -io -io -io -iq -is -io -io -io -io -ix -iv -iA -io -io -io -io -io -iE -mL -mL -Rf -ir -iT -io -io -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -bc -bC -bc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(187,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -ab -ab -io -io -ip -ir -ir -iu -iv -iw -ix -ix -iy -ix -ix -iw -iv -iB -iC -Mz -iI -ir -iQ -ir -bs -io -io -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -bc -bC -bc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -FK -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(188,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -ab -io -io -io -mb -it -io -io -io -io -ix -iz -iA -io -io -io -io -io -iF -ir -ir -ir -ir -iT -io -io -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -bc -bC -bc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(189,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -ab -ab -io -io -io -io -io -io -io -io -io -io -io -io -io -io -io -io -io -iJ -iJ -iR -io -io -io -io -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -bc -bC -bc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(190,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -ab -ab -mo -io -io -io -io -aa -aa -io -io -io -io -io -aa -aa -io -io -io -iK -iM -iK -io -io -io -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -bc -jo -bc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(191,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -io -io -io -io -io -io -io -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -bc -jp -bc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(192,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -io -io -io -io -io -aa -aa -aa -ab -ab -ou -ab -aa -aa -aa -aa -aa -aa -bc -bC -bc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(193,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -ab -ou -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -bc -bC -bc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(194,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bc -bC -bc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(195,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bc -bC -bc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(196,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -ab -ab -ab -aa -aa -aa -aa -aa -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -bc -jq -bc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(197,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -ab -ab -ab -aa -aa -aa -aa -mo -mo -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -bc -jr -bc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(198,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -ab -ab -ab -ab -ab -aa -mo -mo -mo -mo -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -bc -bc -bc -bc -bc -aa -aa -bc -iY -bc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(199,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -ab -ab -ab -ab -ab -ab -mo -mo -mo -mo -mo -mo -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -bc -bc -bc -bc -bc -bc -bc -aa -bc -iY -bc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(200,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -mo -mf -mf -mf -mf -mf -mo -mo -mo -mo -mo -mo -mo -mo -mo -aa -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -bc -bc -bc -bc -bc -iZ -jc -je -bc -bc -bc -bc -iY -bc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(201,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -aB -aB -aB -aB -aB -aB -aB -aB -aB -aB -aB -aB -aB -aB -aB -mi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bc -bc -bc -bc -bc -iY -iY -iY -jf -bc -bc -bc -bc -iY -bc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(202,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -aB -aB -aB -aB -aB -aB -aB -aB -aB -aB -aB -aB -aB -aB -aB -mi -ab -ab -ab -ab -ab -ou -ab -ab -ab -ab -bc -bc -iW -iX -iX -iY -ja -iY -iX -ji -ja -jk -iY -js -bc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(203,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -aB -aB -aB -aB -aB -aB -aB -aB -aB -mo -aB -aB -aB -aB -aB -mi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bc -bc -bc -bc -bc -iY -iY -iY -jg -bc -bc -bc -bc -bc -bc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(204,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -aB -aB -aB -aB -mo -mo -mo -mo -mo -mo -mo -mo -aB -aB -aB -mo -mo -ab -ab -ab -ab -ab -ab -mo -mo -mo -mo -bc -bc -bc -bc -bc -jb -jd -jh -bc -bc -bc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(205,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -aB -aB -aB -aB -mo -mo -mo -mo -mo -mo -mo -mo -aB -aB -aB -mo -mo -ab -ab -ab -ab -mo -mo -mo -aa -aa -aa -aa -aa -aa -bc -bc -bc -bc -bc -bc -bc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(206,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -aB -aB -aB -aB -mo -mo -mo -mo -mo -mo -mo -mo -mo -aB -aB -aB -mo -mo -mo -ab -ab -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -bc -bc -bc -bc -bc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(207,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -aB -aB -aB -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -aB -aB -aB -mo -mo -mo -mo -mo -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(208,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -aB -aB -aB -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -aB -aB -aB -mo -mo -mo -mo -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(209,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -aB -aB -aB -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -aB -aB -aB -mo -mo -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(210,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -aB -aB -aB -mo -mo -mo -mo -mo -mo -mo -mo -aB -aB -aB -aB -mo -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(211,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -aB -aB -aB -mo -mo -mo -mo -mo -mo -mo -mo -aB -aB -aB -mo -mo -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(212,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -aB -aB -aB -aB -mo -mo -mo -mo -mo -mo -aB -aB -aB -aB -mo -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(213,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -aB -aB -aB -aB -aB -aB -aB -aB -aB -aB -aB -aB -aB -aB -mo -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(214,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -aB -aB -aB -aB -aB -aB -aB -aB -aB -aB -aB -aB -mo -mo -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(215,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -aB -aB -aB -aB -aB -aB -aB -aB -aB -aB -mo -mo -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(216,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(217,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(218,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -mo -mo -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(219,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mo -mo -mo -mo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(220,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(221,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(222,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(223,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(224,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(225,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(226,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(227,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(228,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(229,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(230,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(231,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(232,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(233,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(234,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(235,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(236,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(237,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(238,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(239,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(240,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(241,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(242,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(243,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(244,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(245,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(246,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(247,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(248,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(249,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(250,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(251,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(252,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(253,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(254,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(255,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} diff --git a/maps/aurora/aurora-6_surface.dmm b/maps/aurora/aurora-6_surface.dmm deleted file mode 100644 index 9caaa754086..00000000000 --- a/maps/aurora/aurora-6_surface.dmm +++ /dev/null @@ -1,93376 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/obj/machinery/door/airlock/glass{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"aab" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint"; - req_access = list(63); - dir = 1 - }, -/turf/simulated/floor/wood, -/area/security/bridge_surface_checkpoint) -"aaq" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"aaz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/solarmaint) -"aaS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - name = "Civilian (Surface Level) Substation"; - req_one_access = list(11,24); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian_east) -"abC" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"aca" = ( -/turf/simulated/wall, -/area/hallway/secondary/entry/stairs) -"acs" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/security/vacantoffice) -"acA" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "12,8"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"acE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/solarmaint) -"acH" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/obj/machinery/status_display/supply_display{ - pixel_y = -32 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"adw" = ( -/obj/machinery/power/apc/east, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"adC" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"adL" = ( -/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/dark, -/area/crew_quarters/fitness/changing) -"adX" = ( -/obj/effect/floor_decal/corner/lime/full, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"aeb" = ( -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/red, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"aeC" = ( -/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/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/toilet) -"aeD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "spiderling"; - name = "dead greimorian" - }, -/turf/simulated/floor/plating, -/area/store) -"aeI" = ( -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"ago" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/sign/directions/cryo{ - pixel_y = -4 - }, -/obj/structure/sign/directions/civ{ - dir = 4; - pixel_y = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/central) -"agq" = ( -/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/sign/drop{ - pixel_x = 32 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"agH" = ( -/obj/machinery/papershredder, -/turf/simulated/floor/wood, -/area/security/bridge_surface_checkpoint) -"agI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"agN" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"agR" = ( -/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/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"agU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/power/apc/north, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"ahz" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"ahR" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"aiP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/starboardsolar) -"aka" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/camera/network/telecom{ - c_tag = "Telecomms - Foyer" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/turretid/lethal{ - ailock = 1; - check_synth = 1; - control_area = null; - desc = "A firewall prevents AIs from interacting with this device."; - name = "Telecoms lethal turret control"; - pixel_y = 29; - req_access = list(61) - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomfoyer) -"akj" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/structure/sign/drop{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"aks" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - fluorescent = null; - frequency = 1380; - id_tag = "science_bridge_pump" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "science_bridge_sensor"; - master_tag = "science_bridge"; - pixel_y = -25 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/bridge/levela/research_dock) -"akw" = ( -/turf/simulated/floor/plating, -/area/bridge/levela) -"akQ" = ( -/obj/machinery/requests_console/west{ - department = "Cargo Bay"; - departmentType = 2; - pixel_y = -32 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"alj" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"alm" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "11,7"; - name = "survey shuttle" - }, -/area/shuttle/research) -"alx" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"amp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"amt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "spiderling"; - name = "dead greimorian" - }, -/turf/simulated/floor/lino, -/area/store) -"amP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/storage/shields) -"anj" = ( -/turf/simulated/wall, -/area/security/checkpoint2) -"anp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"ant" = ( -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"anD" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Vacant Office 2"; - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"aob" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"aon" = ( -/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/plating, -/area/maintenance/bridge_elevator/surface) -"aot" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"apo" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"apT" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/door/window/eastright{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"aqq" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"aqv" = ( -/turf/unsimulated/floor/asteroid/ash, -/area/mine/unexplored) -"aqE" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"arF" = ( -/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/secondary/entry/aft) -"asm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"asB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"atV" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/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" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"aui" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "0,3"; - name = "survey shuttle" - }, -/area/shuttle/research) -"auA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/portsolar) -"auH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/bridge/levela/research_dock) -"auJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 2; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/bridge/levela/research_dock) -"auS" = ( -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"avm" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/item/device/radio/intercom/west, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"avT" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "12,1"; - name = "survey shuttle"; - opacity = 1 - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"avV" = ( -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"awu" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - name = "Distro to Canisters"; - target_pressure = 200 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"awE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/store) -"awS" = ( -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"axX" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ - frequency = 1380; - id_tag = "escape_pod_3"; - pixel_x = -25; - tag_door = "escape_pod_3_hatch" - }, -/obj/effect/shuttle_landmark/escape_pod/start/pod3, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod3) -"ayi" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "science_bridge_out"; - name = "Shuttle Docking Port"; - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 2; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge/levela/research_dock) -"ayr" = ( -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "solar_aft_airlock"; - pixel_x = 25; - req_access = list(13); - tag_airpump = "solar_aft_pump"; - tag_chamber_sensor = "solar_aft_sensor"; - tag_exterior_door = "solar_aft_outer"; - tag_interior_door = "solar_aft_inner" - }, -/obj/machinery/airlock_sensor{ - id_tag = "solar_aft_sensor"; - master_tag = "solar_aft_airlock"; - pixel_x = 25; - pixel_y = 12 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1379; - id_tag = "solar_aft_pump" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/warning_stripes, -/turf/simulated/floor/plating, -/area/maintenance/starboardsolar) -"ayL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"azf" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"azv" = ( -/obj/effect/shuttle_landmark/emergency/dock, -/turf/unsimulated/floor/asteroid/ash, -/area/mine/explored) -"azA" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "0,8"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"aAZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/grey{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"aBF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/quartermaster/loading) -"aBT" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/store) -"aCk" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Red Dock Command"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"aCo" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "green_dock_west_inner"; - locked = 1; - name = "Emergency Services Dock"; - req_access = list(13); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"aCz" = ( -/obj/machinery/door/airlock/glass{ - name = "Red Dock"; - dir = 4 - }, -/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" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"aCD" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"aDJ" = ( -/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, -/area/quartermaster/loading) -"aDS" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/turret_protected/tcomsat) -"aEb" = ( -/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, -/area/hallway/secondary/entry/aft) -"aEx" = ( -/obj/structure/table/standard, -/obj/effect/decal/cleanable/dirt, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/store) -"aEX" = ( -/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{ - name = "Maintenance Hatch"; - req_access = list(63); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"aFj" = ( -/obj/structure/disposalpipe/segment, -/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/machinery/alarm/east, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"aFJ" = ( -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"aGC" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/bed/stool/chair/padded/teal{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"aHM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"aHO" = ( -/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 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"aHV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"aIh" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"aJk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"aJq" = ( -/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/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"aJy" = ( -/obj/machinery/light, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Vacant Office 1"; - dir = 1 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/carpet, -/area/security/vacantoffice) -"aJC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"aJO" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"aJP" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/wood, -/area/hydroponics/garden) -"aKa" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"aKw" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"aLh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "science_shuttle"; - name = "interior access button"; - pixel_x = 24; - pixel_y = -23 - }, -/turf/simulated/floor/plating, -/area/shuttle/research) -"aMI" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"aMX" = ( -/obj/machinery/door/airlock/glass{ - name = "Primary Tool Storage"; - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"aNK" = ( -/obj/effect/shuttle_landmark/burglar/surface, -/turf/unsimulated/floor/asteroid/ash, -/area/mine/explored) -"aNR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"aOn" = ( -/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/external{ - frequency = 1700; - icon_state = "door_locked"; - id_tag = "c_maint_surface_inner"; - locked = 1; - name = "External Airlock Interior"; - req_access = list(13); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/store) -"aOw" = ( -/obj/machinery/alarm/east, -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/toy/figure/assistant, -/obj/item/device/hand_labeler, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"aOO" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"aPB" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/fitness/pool) -"aQz" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/item/device/radio/intercom/east, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Pod 3"; - dir = 4 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod3) -"aRc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"aRL" = ( -/turf/simulated/wall/r_wall, -/area/bridge/levela/research_dock) -"aRU" = ( -/obj/effect/floor_decal/corner/white{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"aSb" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/structure/window/reinforced{ - name = "adjusted reinforced window" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"aSm" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/airless, -/area/solar/fore) -"aSV" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/random/pottedplant, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"aSY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Telecoms Storage"; - req_access = list(61); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"aTQ" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"aUE" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "surface_starboard_outer"; - locked = 1; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"aUK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/newscaster/north, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"aUV" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"aVe" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/open/airless, -/area/turret_protected/tcomsat) -"aVE" = ( -/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/secondary/entry/central) -"aWR" = ( -/obj/machinery/bluespace_beacon, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"aXo" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "9,4"; - name = "survey shuttle" - }, -/area/shuttle/research) -"aXp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"aXy" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"aZf" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Blue Dock Port"; - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"bak" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 1; - name = "Distro to Canisters"; - target_pressure = 150 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"bav" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/chem_master{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/hydroponics/garden) -"baJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"bbn" = ( -/obj/structure/table/reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Surface Bridge" - }, -/turf/simulated/floor/wood, -/area/security/bridge_surface_checkpoint) -"bbs" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1700; - id_tag = "c_maint_surface_pump" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/sign/directions/tcom{ - dir = 8; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/maintenance/store) -"bbx" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/foresolar) -"bcb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hydroponics/garden) -"bdF" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "yellow_shuttle_dock_outer"; - locked = 1; - name = "Docking Port Airlock"; - req_access = list(13); - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "yellow_shuttle_dock_airlock"; - name = "exterior access button"; - pixel_x = -6; - pixel_y = -28; - req_one_access = list(13) - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"beb" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/effect/floor_decal/corner/white/diagonal{ - dir = 4 - }, -/obj/machinery/alarm/west{ - name = "Surface - Pool Air alarm"; - target_temperature = 303.15 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"bek" = ( -/obj/structure/cryofeed, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/sleep/cryo) -"ben" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"beV" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 1 - }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = 36 - }, -/obj/structure/sign/directions/all{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"bfe" = ( -/obj/effect/shuttle_landmark/merchant/dock, -/turf/unsimulated/floor/asteroid/ash, -/area/mine/explored) -"bfR" = ( -/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/structure/disposalpipe/segment, -/obj/effect/landmark/start{ - name = "Cargo Technician" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"bgg" = ( -/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/plating, -/area/maintenance/store) -"bgn" = ( -/obj/machinery/airlock_sensor{ - frequency = 1337; - id_tag = "command_surface_sensor"; - pixel_y = -25 - }, -/obj/machinery/light/small/emergency, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"bgB" = ( -/obj/structure/closet, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"bhr" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness/changing) -"bie" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/sleep/bedrooms) -"bil" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1700; - master_tag = "tcoms_airlock"; - name = "exterior access button"; - pixel_x = -27; - pixel_y = -26; - req_one_access = list(13) - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/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" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"biF" = ( -/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 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"bjE" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"bjT" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/eastleft, -/obj/random/soap, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"blj" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/item/device/radio/intercom/west, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"blm" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ - frequency = 1380; - id_tag = "arrivals_east"; - master_tag = "arrival_dock"; - pixel_x = 30; - req_one_access = list(13); - tag_airpump = "arrivals_east_pump"; - tag_chamber_sensor = "arrivals_east_sensor"; - tag_exterior_door = "arrivals_east_outer"; - tag_interior_door = "arrivals_east_inner" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1380; - id_tag = "arrivals_east_pump" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"bly" = ( -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"blE" = ( -/obj/machinery/bluespacerelay, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"bmC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"bmH" = ( -/obj/structure/closet, -/obj/random/loot, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"bmM" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"boG" = ( -/turf/simulated/floor/airless/ceiling, -/area/mine/explored) -"boW" = ( -/obj/machinery/power/smes/buildable{ - charge = 5000000; - input_attempt = 1; - input_level = 200000; - output_attempt = 1; - output_level = 200000 - }, -/obj/structure/cable/blue{ - icon_state = "0-4" - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"bpq" = ( -/obj/effect/floor_decal/corner/lime/full, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"bqV" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomfoyer) -"brt" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"brR" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "3,7"; - name = "survey shuttle" - }, -/area/shuttle/research) -"brS" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "green_dock_west_outer"; - locked = 1; - name = "Emergency Services Dock"; - req_access = list(13); - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1337; - master_tag = "green_dock_west"; - name = "exterior access button"; - pixel_x = -7; - pixel_y = -25; - req_access = list(13) - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"bsc" = ( -/obj/machinery/door/airlock/external{ - frequency = 1399; - icon_state = "door_locked"; - id_tag = "admin_shuttle_dock_inner"; - locked = 1; - name = "Docking Port Airlock"; - req_access = list(13); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/bridge/levela) -"bsK" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"btv" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/lino, -/area/tcommsat/lounge) -"btS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/hatch{ - name = "Telecoms Control Lounge"; - req_access = list(61); - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"bvh" = ( -/obj/structure/cryofeed, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/sleep/cryo) -"bvj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"bvR" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/structure/window/reinforced{ - 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/hallway/secondary/exit) -"bvZ" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Primary Tool Storage Fore" - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"bwu" = ( -/obj/structure/bed/stool/chair/padded/black, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"bxf" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"bxv" = ( -/obj/machinery/vending/snack, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"byl" = ( -/obj/structure/closet/secure_closet/hangar_tech, -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"byy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"bzh" = ( -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint"; - req_access = list(63); - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"bzW" = ( -/turf/simulated/wall/r_wall, -/area/turret_protected/tcomsat) -"bAx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"bBg" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"bBl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"bBz" = ( -/obj/structure/shuttle_part/escape_pod{ - icon_state = "0,3" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/escape_pod/pod2) -"bBR" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "8,14"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"bCx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"bDo" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "9,9"; - name = "survey shuttle" - }, -/area/shuttle/research) -"bDC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hydroponics/garden) -"bDH" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "QMTint" - }, -/obj/structure/window/reinforced/polarized{ - id = "QMTint" - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/quartermaster/qm) -"bDT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"bFh" = ( -/turf/simulated/floor/tiled, -/area/bridge/levela) -"bFC" = ( -/obj/machinery/telecomms/server/presets/engineering, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"bGv" = ( -/obj/item/device/radio/intercom/south, -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"bGO" = ( -/obj/machinery/alarm/west, -/obj/effect/floor_decal/corner/lime/full, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"bGP" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/turret_protected/tcomsat) -"bGZ" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/large_stock_marker, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"bHg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"bHF" = ( -/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, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"bHJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "office_shutter"; - name = "Office Shutters" - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/security/vacantoffice) -"bHO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - 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{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"bHZ" = ( -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) -"bIh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"bIo" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/bridge/levela) -"bIt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "green_dock_aft_interior"; - locked = 1; - name = "Emergency Services Dock"; - req_access = list(13); - dir = 1 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1337; - master_tag = "green_dock_aft_airlock"; - name = "interior access button"; - pixel_x = 26; - pixel_y = -7; - req_access = list(13) - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"bIw" = ( -/obj/structure/toilet{ - dir = 4; - pixel_y = 5 - }, -/obj/machinery/button/remote/airlock{ - id = "surf_unit_2"; - name = "Door Bolt Control"; - pixel_x = 10; - pixel_y = -24; - req_access = null; - specialfunctions = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"bIX" = ( -/obj/machinery/door/airlock/engineering{ - name = "Gamma Solar Array"; - req_access = null; - req_one_access = list(10,11,13); - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/foresolar) -"bIY" = ( -/obj/structure/bed/stool/padded/red, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/lounge) -"bJN" = ( -/turf/simulated/floor/plating, -/area/tcommsat/computer) -"bKv" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/turf/simulated/floor/airless{ - icon_state = "solarpanel" - }, -/area/solar/port) -"bLE" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "command_surface_inner"; - locked = 1; - name = "Command Docking Exterior Access"; - req_access = list(13); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"bLU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"bMa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/pen, -/turf/simulated/floor/carpet, -/area/store) -"bMk" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"bMn" = ( -/obj/structure/shuttle_part/escape_pod{ - icon_state = "2,3" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/escape_pod/pod2) -"bMt" = ( -/obj/structure/table/standard, -/obj/machinery/recharger, -/turf/simulated/floor/tiled, -/area/storage/primary) -"bMS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/sconference_room) -"bMW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"bNq" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"bNJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/stairs) -"bNO" = ( -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/machinery/seed_extractor, -/turf/simulated/floor/wood, -/area/hydroponics/garden) -"bNW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/portsolar) -"bNZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo) -"bOv" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = 15; - pixel_y = -11 - }, -/turf/simulated/floor/carpet, -/area/sconference_room) -"bPb" = ( -/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/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"bPl" = ( -/obj/structure/closet/walllocker/medical{ - pixel_y = -32 - }, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/obj/item/reagent_containers/inhaler/dexalin, -/obj/item/reagent_containers/inhaler/dexalin, -/turf/simulated/floor/tiled/freezer, -/area/tcommsat/lounge) -"bPu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Expedition Preparation" - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"bPU" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"bPW" = ( -/turf/simulated/wall, -/area/tcommsat/lounge) -"bRW" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"bRZ" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"bTR" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/portsolar) -"bTY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"bUp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"bUz" = ( -/obj/effect/decal/warning_stripes, -/obj/structure/ladder{ - pixel_y = 16 - }, -/turf/simulated/open, -/area/maintenance/cargo/surface) -"bUD" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/device/radio/intercom/east, -/obj/machinery/door/blast/shutters/open{ - id = "bridge_surface_checkpoint"; - name = "Checkpoint Shutters" - }, -/turf/simulated/floor/wood, -/area/security/bridge_surface_checkpoint) -"bUX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Vacant Office"; - 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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"bVW" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"bWf" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"bWg" = ( -/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/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"bWo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"bXw" = ( -/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/effect/landmark/start{ - name = "Cargo Technician" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"bXz" = ( -/obj/structure/closet, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plating, -/area/turret_protected/tcomsat) -"bXH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1337; - master_tag = "distress_shuttle_dock"; - name = "interior access button"; - pixel_x = -28; - pixel_y = 26; - req_one_access = list(13) - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"bYA" = ( -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"bYU" = ( -/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/hallway/secondary/entry/central) -"bZu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/tcommsat/lounge) -"bZv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"cap" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"cbq" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/door/window/southright, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"cbJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"cbK" = ( -/turf/simulated/floor/plating, -/area/store) -"cck" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external{ - frequency = 1399; - icon_state = "door_locked"; - id_tag = "green_dock_north_inner"; - locked = 1; - name = "Emergency Services Dock"; - req_access = list(13); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"cdS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/stack/material/plastic{ - amount = 10 - }, -/turf/simulated/floor/plating, -/area/store) -"cdV" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"ceb" = ( -/obj/effect/floor_decal/corner/white/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/washing_machine, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Locker Room Washing" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"ceK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"ceU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"cfC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos{ - name = "Telecommunications Air Bypass"; - req_one_access = list(11,24); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tcommsat/entrance) -"cfS" = ( -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/turf/simulated/floor/wood, -/area/sconference_room) -"cfY" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"cgw" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo) -"chK" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"chQ" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "3,12"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"ciW" = ( -/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" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"cjG" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/open/airless, -/area/turret_protected/tcomsat) -"ckm" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/vending/wallmed1{ - pixel_x = -1; - pixel_y = 29; - req_access = null - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"ckH" = ( -/obj/machinery/door/airlock/external{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"ckL" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/reagentgrinder{ - pixel_y = 12 - }, -/obj/machinery/firealarm/north, -/turf/simulated/floor/grass, -/area/hydroponics/garden) -"ckT" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/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" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"ckZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/storage/shields) -"clO" = ( -/turf/simulated/wall, -/area/crew_quarters/fitness/changing) -"cmb" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/newscaster/east, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"cmp" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"cmr" = ( -/obj/structure/filingcabinet, -/turf/simulated/floor/wood, -/area/sconference_room) -"cmK" = ( -/obj/structure/cable/blue{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/super/north, -/turf/simulated/floor/bluegrid/server, -/area/tcommsat/chamber) -"cmT" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"cnc" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"cnf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"cnu" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall, -/area/solar/port) -"coI" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/solar/fore) -"cpi" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hydroponics/garden) -"cpj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"cqL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/storage/primary) -"crc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera/network/telecom{ - c_tag = "Telecomms - Port Wing Central"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/airless, -/area/turret_protected/tcomsat) -"crg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 10 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/tcommsat/chamber) -"crH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"cst" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/device/multitool, -/obj/structure/sign/electricshock{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"csw" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/west{ - is_critical = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/hallway/secondary/entry/dock) -"csT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"cta" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - name = "EXTERNAL AIRLOCK" - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"ctm" = ( -/obj/machinery/newscaster/south, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"ctn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/turret_protected/tcomsat) -"ctR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/item/modular_computer/console/preset/security, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"cuk" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/turf/simulated/floor/carpet, -/area/sconference_room) -"cuB" = ( -/obj/effect/shuttle_landmark/ccia/dock, -/turf/unsimulated/floor/asteroid/ash, -/area/mine/explored) -"cuM" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "4,0"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"cvd" = ( -/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" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"cvm" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall, -/area/tcommsat/chamber) -"cwm" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"cwt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"cwx" = ( -/obj/structure/flora/ausbushes/grassybush{ - pixel_x = 9 - }, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass, -/area/hallway/secondary/entry/fore) -"czc" = ( -/turf/simulated/floor/tiled, -/area/turret_protected/tcomfoyer) -"czx" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"czK" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecoms Satellite"; - req_access = list(61); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"cBe" = ( -/obj/structure/sink{ - pixel_y = 28 - }, -/obj/structure/mirror{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/freezer, -/area/tcommsat/lounge) -"cCl" = ( -/obj/machinery/door/airlock/external{ - frequency = 1399; - icon_state = "door_locked"; - id_tag = "admin_shuttle_dock_outer"; - locked = 1; - name = "Docking Port Airlock"; - req_access = list(13); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"cCm" = ( -/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" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"cCC" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"cCJ" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/effect/floor_decal/big/scc_full, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"cDq" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"cDs" = ( -/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/freezer, -/area/crew_quarters/toilet) -"cDR" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/power/apc/south, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"cEm" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/item/device/radio/intercom/north{ - name = "General Listening Channel" - }, -/obj/structure/bed/stool/chair/padded/black, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"cEB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/store) -"cEC" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/high/east, -/obj/structure/sign/flag/scc{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"cFY" = ( -/obj/machinery/power/solar{ - id = "aftsolar"; - name = "Aft Solar Array" - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/airless{ - icon_state = "solarpanel" - }, -/area/solar/starboard) -"cGy" = ( -/turf/simulated/wall/shuttle/unique/escape_pod{ - icon_state = "0,2" - }, -/area/shuttle/escape_pod/pod3) -"cGU" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/bluegrid/server, -/area/tcommsat/chamber) -"cHp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/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/tiled, -/area/hallway/secondary/entry/central) -"cHA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"cHB" = ( -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"cHG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/glass{ - name = "Staff Only"; - req_access = null; - dir = 1 - }, -/obj/effect/spider/stickyweb, -/obj/machinery/door/blast/shutters{ - id = "commissary_counter"; - name = "Shutter" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/lino, -/area/store) -"cHJ" = ( -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Surface Docks"; - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"cHM" = ( -/obj/item/device/radio/intercom/west, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"cHR" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/tcommsat/entrance) -"cHY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/bridge/levela/research_dock) -"cJc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"cJh" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/effect/floor_decal/corner/white/diagonal{ - dir = 4 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/structure/table/reinforced, -/obj/machinery/chemical_dispenser/bar_soft/full, -/obj/item/device/radio/intercom/south, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Pool Cafe"; - dir = 1; - pixel_x = 2 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"cLg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/turret_protected/tcomsat) -"cLA" = ( -/obj/machinery/telecomms/processor/preset_four, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"cMh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/turf/simulated/floor/plating, -/area/store) -"cMI" = ( -/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/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/solar/port) -"cMM" = ( -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"cNy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/hydroponics/garden) -"cNK" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"cNV" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"cOq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"cPq" = ( -/turf/simulated/wall, -/area/quartermaster/qm) -"cQF" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"cRo" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "arrivals_west_inner"; - locked = 1; - name = "Arrivals Airlock"; - req_access = list(13); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"cRI" = ( -/obj/effect/floor_decal/corner/white/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/structure/sink/kitchen{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"cSd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"cSr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/sconference_room) -"cSw" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"cSB" = ( -/obj/machinery/power/solar_control{ - id = "roofsolars"; - name = "Aft Solar Control" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/starboardsolar) -"cSV" = ( -/turf/simulated/wall/r_wall, -/area/mine/unexplored) -"cTb" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/security/bridge_surface_checkpoint) -"cTx" = ( -/obj/structure/flora/ausbushes/brflowers{ - pixel_y = -7 - }, -/turf/simulated/floor/grass, -/area/hallway/secondary/entry/fore) -"cTI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"cUd" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/quartermaster/loading) -"cUE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/window/brigdoor/southleft{ - name = "Command Lobby"; - req_access = list(19) - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"cUW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"cVr" = ( -/obj/structure/table/wood, -/obj/random/single{ - icon = 'icons/obj/playing_cards.dmi'; - icon_state = "deck"; - name = "randomly spawned deck of cards"; - spawn_nothing_percentage = 50; - spawn_object = /obj/item/deck - }, -/turf/simulated/floor/carpet, -/area/hallway/secondary/entry/departure_lounge) -"cVs" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"cVQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"cWF" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/fitness) -"cXk" = ( -/obj/machinery/porta_turret/stationary, -/obj/effect/decal/warning_stripes, -/turf/simulated/floor/airless, -/area/turret_protected/tcomfoyer) -"cXQ" = ( -/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/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"cYm" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"cYP" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "8,12"; - name = "survey shuttle" - }, -/area/shuttle/research) -"cYU" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - name = "Storeroom"; - req_access = null; - dir = 4 - }, -/turf/simulated/floor/wood, -/area/store) -"cYW" = ( -/obj/item/device/radio/intercom/east, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"cZC" = ( -/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 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"cZM" = ( -/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/secondary/entry/fore) -"dbc" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "2,8"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"dcQ" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/door/window/westleft, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"ddx" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall, -/area/solar/starboard) -"dft" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"dgn" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"dgu" = ( -/obj/machinery/door/airlock/external{ - frequency = 1399; - icon_state = "door_locked"; - id_tag = "admin_shuttle_dock_inner"; - locked = 1; - name = "Docking Port Airlock"; - req_access = list(13); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"dgL" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"dhe" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/storage/shields) -"dip" = ( -/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 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"diC" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"djQ" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/bluegrid/server, -/area/tcommsat/chamber) -"dkX" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - id = "QMTint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "QMTint" - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/quartermaster/qm) -"dlc" = ( -/obj/structure/bed/stool/chair/shuttle, -/obj/effect/floor_decal/corner/purple/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"dlA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"dmz" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"dmE" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"dmH" = ( -/turf/simulated/wall, -/area/bridge/levela) -"dou" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "seccheckpointoffice"; - name = "Checkpoint Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/checkpoint2) -"doD" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"dqa" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1399; - master_tag = "admin_shuttle_dock_airlock"; - name = "exterior access button"; - pixel_x = 21; - pixel_y = 10; - req_access = list(10,13) - }, -/obj/machinery/door/airlock/external{ - frequency = 1399; - icon_state = "door_locked"; - id_tag = "admin_shuttle_dock_outer"; - locked = 1; - name = "Docking Port Airlock"; - req_access = list(13); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"dqI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"dqT" = ( -/obj/structure/closet/wardrobe/black, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"drA" = ( -/obj/random/pottedplant, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"drN" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/item/storage/toolbox/emergency, -/obj/structure/closet/emcloset, -/obj/machinery/firealarm/west, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo) -"drT" = ( -/turf/simulated/wall/r_wall, -/area/security/bridge_surface_checkpoint) -"dsb" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"dsq" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "3,10"; - name = "survey shuttle" - }, -/area/shuttle/research) -"dsN" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"dsS" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"dsZ" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "cargo_bay_door"; - locked = 1; - name = "Cargo Docking Hatch"; - req_access = list(13); - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/turf/simulated/floor/plating, -/area/quartermaster/loading) -"dtn" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"dvt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/sconference_room) -"dvx" = ( -/obj/item/device/radio/intercom/north, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"dvz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"dvB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/turret_protected/tcomsat) -"dwq" = ( -/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" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"dwt" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"dwS" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "command_surface_inner"; - locked = 1; - name = "Command Docking Exterior Access"; - req_access = list(13); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"dwU" = ( -/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" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"dxt" = ( -/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{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"dxw" = ( -/turf/simulated/wall, -/area/hallway/secondary/entry/dock) -"dyX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"dzx" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1337; - master_tag = "command_surface_airlock"; - name = "interior access button"; - pixel_x = -25; - pixel_y = 25; - req_access = list(13) - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"dzz" = ( -/obj/structure/bed/stool/chair, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"dBC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"dCL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/store) -"dDb" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/fitness) -"dEp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"dEA" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"dFh" = ( -/obj/item/bedsheet/mime, -/obj/structure/bed/padded, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/bedrooms) -"dGe" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"dIV" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "6,3"; - name = "survey shuttle" - }, -/area/shuttle/research) -"dLW" = ( -/obj/machinery/biogenerator/small/west, -/turf/simulated/floor/wood, -/area/hydroponics/garden) -"dMM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"dMX" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1700; - id_tag = "tcoms_airlock_pump" - }, -/obj/machinery/camera/network/telecom{ - c_tag = "Telecomms - Airlock"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"dMY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/machinery/door/airlock/atmos{ - name = "Docks Air Bypass"; - req_one_access = list(11,24); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"dMZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/starboardsolar) -"dNq" = ( -/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/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"dNz" = ( -/obj/machinery/vending/dinnerware, -/turf/simulated/floor/lino, -/area/tcommsat/lounge) -"dNX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"dOd" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"dOX" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/item/crowbar, -/obj/item/device/flash, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"dPn" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled, -/area/storage/tools) -"dPA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"dTB" = ( -/turf/simulated/floor/wood, -/area/security/bridge_surface_checkpoint) -"dTY" = ( -/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/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - req_one_access = list(12,61); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tcommsat/entrance) -"dUb" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/pen, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"dUm" = ( -/obj/structure/sign/directions/cryo{ - dir = 4; - pixel_x = -2; - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"dUN" = ( -/turf/simulated/floor/carpet, -/area/security/vacantoffice) -"dUX" = ( -/obj/structure/bed/stool/chair, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/item/device/radio/intercom/north, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"dVx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"dVA" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "science_shuttle_pump" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "science_shuttle"; - pixel_y = 28; - tag_airpump = "science_shuttle_pump"; - tag_chamber_sensor = "science_shuttle_sensor"; - tag_exterior_door = "science_shuttle_out"; - tag_interior_door = "science_shuttle_in" - }, -/turf/simulated/floor/plating, -/area/shuttle/research) -"dVF" = ( -/turf/simulated/floor/plating, -/area/maintenance/solarmaint) -"dVT" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "3,13"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"dXj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/maintenance/store) -"dYh" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"dZm" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "nuke_shuttle_dock_inner"; - locked = 1; - name = "Docking Port Airlock"; - req_access = list(13); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"dZx" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/crew_quarters/fitness/pool) -"dZP" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"ead" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "cargo_bay_door"; - locked = 1; - name = "Cargo Docking Hatch"; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/loading) -"eaJ" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/turf/simulated/floor/beach/water/pool{ - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"ebE" = ( -/obj/structure/cable{ - 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, -/area/tcommsat/entrance) -"ebW" = ( -/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 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"eck" = ( -/obj/machinery/door/airlock/research{ - name = "Storage 1"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"eco" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"ecs" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "arrivals_west_outer"; - locked = 1; - name = "Arrivals Airlock"; - req_access = list(13); - dir = 1 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "arrivals_west"; - name = "exterior access button"; - pixel_x = 30; - pixel_y = 4; - req_one_access = list(13) - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"edo" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Surface Access Stairwell" - }, -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"edA" = ( -/obj/machinery/door/airlock/glass{ - name = "NSS Aurora"; - dir = 1 - }, -/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, -/area/hallway/secondary/entry/fore) -"edI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/departure_lounge) -"edT" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"eek" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"eex" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "nuke_shuttle_dock_outer"; - locked = 1; - name = "Docking Port Airlock"; - req_access = list(13); - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1337; - master_tag = "nuke_shuttle_dock_airlock"; - name = "exterior access button"; - pixel_x = -5; - pixel_y = 26; - req_one_access = list(13) - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"eeX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"efG" = ( -/turf/simulated/mineral/surface, -/area/mine/explored) -"efT" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/airless, -/area/turret_protected/tcomsat) -"egb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/bridge/levela) -"egE" = ( -/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, -/area/hallway/secondary/entry/aft) -"egY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/simulated/floor/lino, -/area/store) -"ehp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/starboardsolar) -"ehr" = ( -/obj/machinery/shield_gen/external, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/storage/shields) -"ehP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"ejE" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/solarmaint) -"ekf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/binary/pump/on, -/turf/simulated/floor/plating, -/area/maintenance/starboardsolar) -"ekE" = ( -/obj/item/storage/box/cups, -/obj/structure/table/standard, -/turf/simulated/floor/wood, -/area/sconference_room) -"ekV" = ( -/obj/machinery/firealarm/south, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"elc" = ( -/obj/structure/table/standard, -/obj/item/stock_parts/subspace/crystal, -/obj/item/stock_parts/subspace/crystal, -/obj/item/stock_parts/subspace/crystal, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"elP" = ( -/obj/machinery/door/airlock/glass{ - name = "Kitchen"; - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/lino, -/area/tcommsat/lounge) -"elY" = ( -/obj/structure/sign/flag/scc{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"emj" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/grass, -/area/hydroponics/garden) -"emo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/store) -"emB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - name = "EXTERNAL AIRLOCK" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"emO" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/tcommsat/computer) -"enk" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"enx" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/sconference_room) -"enE" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Commissary Maintenance"; - req_access = list(12); - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/store) -"enK" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/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 = 2; - icon_state = "1-2" - }, -/obj/machinery/firealarm/west, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = -17 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"eoL" = ( -/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/hallway/secondary/entry/emergency) -"eoO" = ( -/obj/machinery/camera/network/telecom{ - c_tag = "Telecomms - Lobby Fore" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"epp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/store) -"epq" = ( -/obj/structure/window/shuttle/unique/research{ - icon_state = "7,16"; - outside_window = 1 - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"ept" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"epL" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"eql" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_pod_2_hatch"; - locked = 1; - name = "Escape Pod Hatch"; - req_access = list(13); - dir = 1 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod2) -"eqp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lime/full{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"erb" = ( -/obj/effect/floor_decal/corner/red, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"ery" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "QMTint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "QMTint" - }, -/obj/structure/window/reinforced/polarized{ - id = "QMTint" - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/quartermaster/qm) -"erD" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"erU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/shuttle/research) -"esJ" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/sconference_room) -"eui" = ( -/obj/structure/table/reinforced, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/powercell, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"ewm" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"ews" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/foresolar) -"exe" = ( -/turf/simulated/wall/r_wall, -/area/tcommsat/entrance) -"eyg" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Corridor Camera 6"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"ezb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"ezj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"ezo" = ( -/turf/simulated/wall, -/area/solar/starboard) -"ezp" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/security/vacantoffice) -"ezu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/sconference_room) -"ezR" = ( -/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/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/departure_lounge) -"eAa" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"eAZ" = ( -/obj/structure/noticeboard, -/turf/simulated/wall, -/area/sconference_room) -"eCj" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"eCq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lime{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"eCC" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"eCP" = ( -/obj/structure/closet/wardrobe/white, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"eCQ" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - name = "EXTERNAL AIRLOCK"; - pixel_x = -32 - }, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/maintenance/portsolar) -"eDh" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/bedrooms) -"eDp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - name = "dusty desk lamp"; - on = 0 - }, -/turf/simulated/floor/carpet, -/area/store) -"eDv" = ( -/obj/structure/closet/wardrobe/grey, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"eDT" = ( -/obj/effect/shuttle_landmark/merc_elite/merchant, -/turf/unsimulated/floor/asteroid/ash, -/area/mine/explored) -"eDV" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/portsolar) -"eEv" = ( -/obj/machinery/door/airlock/glass{ - name = "Auxillary Tool Storage"; - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/storage/tools) -"eFm" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/open/airless, -/area/turret_protected/tcomsat) -"eFR" = ( -/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{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_command{ - name = "Station Shield Control"; - req_one_access = list(11,19,24); - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/shields) -"eGQ" = ( -/obj/structure/closet/secure_closet/operations_manager, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"eHi" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/random/junk, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/store) -"eHm" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - external_pressure_bound = 140; - external_pressure_bound_default = 140; - icon_state = "map_vent_out"; - pressure_checks = 0; - pressure_checks_default = 0; - use_power = 1 - }, -/turf/simulated/floor/bluegrid/server, -/area/tcommsat/chamber) -"eHq" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/structure/cable/green, -/obj/machinery/power/apc/west, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"eHJ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"eIe" = ( -/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/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"eIV" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/machinery/firealarm/north, -/turf/simulated/floor/lino, -/area/hallway/secondary/entry/departure_lounge) -"eJO" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"eJV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"eKv" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"eKC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"eLG" = ( -/obj/structure/flora/ausbushes/grassybush{ - pixel_x = -10; - pixel_y = 13 - }, -/obj/structure/flora/ausbushes/grassybush{ - pixel_y = -5 - }, -/obj/structure/flora/ausbushes/palebush{ - pixel_x = 9; - pixel_y = 18 - }, -/turf/simulated/floor/grass, -/area/hallway/secondary/entry/fore) -"eNk" = ( -/obj/structure/closet/crate/internals{ - name = "emergency equipment" - }, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/item/airbubble, -/obj/item/airbubble, -/obj/item/storage/bag/inflatable, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/item/clothing/suit/space, -/obj/item/clothing/mask/gas/alt, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/head/helmet/space, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"eNG" = ( -/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/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"eOD" = ( -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "bridge_surface_corridor"; - name = "Shutter" - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"eOV" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/obj/machinery/light, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"ePg" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "brig_solar_airlock"; - name = "exterior access button"; - pixel_x = 25; - pixel_y = -25; - req_access = null; - req_one_access = list(10,11,13) - }, -/turf/simulated/floor/airless, -/area/solar/port) -"ePP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"ePX" = ( -/obj/structure/table/rack, -/obj/effect/decal/cleanable/dirt, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/store) -"eQr" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Civilian - Surface Substation"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian_east) -"eQw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"eRe" = ( -/obj/machinery/telecomms/hub/preset, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/bluegrid/server, -/area/tcommsat/chamber) -"eRk" = ( -/obj/machinery/telecomms/server/presets/common, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"eRn" = ( -/turf/simulated/floor/tiled/ramp{ - dir = 8 - }, -/area/quartermaster/loading) -"eRo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"eRu" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lime{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"eRv" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/foresolar) -"eSK" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/stairs) -"eTa" = ( -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"eTH" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "command_surface_outer"; - locked = 1; - name = "Command Docking Exterior Access"; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"eTV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"eUi" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"eUp" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"eVz" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"eWl" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"eWw" = ( -/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, -/turf/simulated/floor/wood, -/area/sconference_room) -"eXj" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/stairs) -"eXn" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"eXJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1337; - id_tag = "merchant_shuttle_dock_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1337; - id_tag = "merchant_shuttle_dock"; - pixel_y = 29; - req_access = list(13); - tag_airpump = "merchant_shuttle_dock_pump"; - tag_chamber_sensor = "merchant_shuttle_dock_sensor"; - tag_exterior_door = "merchant_shuttle_dock_outer"; - tag_interior_door = "merchant_shuttle_dock_inner" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"eYu" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"eZy" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/carpet, -/area/sconference_room) -"eZI" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"fal" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"faB" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/solar/port) -"faO" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/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/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"fbo" = ( -/obj/structure/closet, -/obj/random/loot, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/store) -"fbv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"fbF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/store) -"fbL" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/device/radio/intercom/north, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"fci" = ( -/turf/simulated/wall/shuttle/unique/escape_pod{ - icon_state = "2,0" - }, -/area/shuttle/escape_pod/pod1) -"fco" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"fcI" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/north, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"fdu" = ( -/turf/unsimulated/chasm_mask, -/area/mine/explored) -"fdz" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"fei" = ( -/obj/structure/table/wood, -/turf/simulated/floor/carpet, -/area/sconference_room) -"feS" = ( -/obj/structure/table/reinforced, -/obj/machinery/chemical_dispenser/bar_soft/full{ - dir = 8; - pixel_x = 2 - }, -/turf/simulated/floor/lino, -/area/tcommsat/lounge) -"ffB" = ( -/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/tiled, -/area/hallway/secondary/entry/aft) -"ffJ" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/tiled, -/area/storage/tools) -"fho" = ( -/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/secondary/entry/dock) -"fhP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/lino, -/area/hallway/secondary/entry/departure_lounge) -"fhX" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - frequency = 1381; - icon_state = "door_locked"; - id_tag = "server_access_inner"; - locked = 1; - name = "Telecoms Server Access"; - req_access = list(61); - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tcommsat/computer) -"fiq" = ( -/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" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"fiD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"fiS" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"flc" = ( -/obj/structure/punching_bag, -/obj/effect/floor_decal/corner/red/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"flh" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "science_shuttle_pump" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/shuttle/research) -"flV" = ( -/obj/structure/table/reinforced, -/obj/item/material/ashtray/plastic, -/obj/item/trash/cigbutt/cigarbutt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"fmr" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"fmU" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "3,9"; - name = "survey shuttle" - }, -/area/shuttle/research) -"fny" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"fnK" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/foresolar) -"fnS" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 - }, -/turf/simulated/floor/bluegrid/server, -/area/tcommsat/chamber) -"foh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"fos" = ( -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/airless{ - icon_state = "solarpanel" - }, -/area/solar/port) -"fou" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"fpd" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/sconference_room) -"fpL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"fqp" = ( -/turf/simulated/wall, -/area/storage/primary) -"fqE" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "yellow_shuttle_dock_airlock"; - name = "interior access button"; - pixel_x = -30; - pixel_y = 26; - req_one_access = list(13) - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"fqK" = ( -/obj/machinery/hologram/holopad/long_range, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"fqN" = ( -/obj/structure/window/shuttle/unique/research{ - icon_state = "7,14" - }, -/turf/simulated/floor/plating, -/area/shuttle/research) -"fqT" = ( -/turf/simulated/floor/tiled/ramp{ - dir = 1 - }, -/area/hallway/secondary/entry/stairs) -"frq" = ( -/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, -/area/hallway/secondary/entry/aft) -"frK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"fsl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/solarmaint) -"fsS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/storage/shields) -"fue" = ( -/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/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"fuf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/bridge/levela) -"fuh" = ( -/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 = 8; - icon_state = "2-8" - }, -/obj/machinery/light_switch{ - pixel_x = -21; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness/changing) -"fun" = ( -/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/fitness) -"fvJ" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"fvW" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"fwd" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"fwx" = ( -/obj/structure/window/shuttle/unique/research{ - icon_state = "7,13" - }, -/turf/simulated/floor/plating, -/area/shuttle/research) -"fwV" = ( -/turf/simulated/wall/r_wall, -/area/tcommsat/lounge) -"fxD" = ( -/obj/structure/bed/stool/chair/sofa/brown, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"fxL" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"fyt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"fyY" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/airless, -/area/turret_protected/tcomsat) -"fzZ" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"fBc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/power/apc/super/west, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/storage/shields) -"fBi" = ( -/obj/item/folder/yellow, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/turf/simulated/floor/carpet, -/area/security/vacantoffice) -"fBv" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"fBK" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"fBZ" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"fCm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/turret_protected/tcomsat) -"fCu" = ( -/obj/machinery/alarm/south{ - req_one_access = list(24,11,55) - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"fCy" = ( -/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/tiled, -/area/hallway/secondary/entry/central) -"fCD" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/locker) -"fDh" = ( -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"fDy" = ( -/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/tiled, -/area/hallway/secondary/entry/locker) -"fDC" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"fEp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"fEq" = ( -/turf/simulated/wall, -/area/hallway/secondary/entry/aft) -"fEH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomfoyer) -"fGn" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/tiled, -/area/storage/primary) -"fGp" = ( -/obj/machinery/light, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Yellow Dock Aft"; - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"fHH" = ( -/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/effect/floor_decal/industrial/outline/yellow, -/obj/effect/large_stock_marker, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"fIU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"fJc" = ( -/obj/item/stack/cable_coil/yellow{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/cable_coil/yellow, -/turf/simulated/floor/plating, -/area/maintenance/portsolar) -"fJj" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Solar - Fore TComms"; - cur_coils = 2 - }, -/turf/simulated/floor/plating, -/area/maintenance/foresolar) -"fJL" = ( -/obj/machinery/door/airlock/glass{ - name = "Yellow Dock"; - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"fKm" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/structure/window/reinforced{ - 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/secondary/exit) -"fKU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/foresolar) -"fLo" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 4 - }, -/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{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/store) -"fOB" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - name = "Distro to Canisters"; - target_pressure = 150 - }, -/turf/simulated/floor/plating, -/area/maintenance/store) -"fPh" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/storage/tools) -"fPi" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/bridge/levela) -"fPB" = ( -/obj/structure/bed/stool/chair/padded/beige, -/turf/simulated/floor/carpet, -/area/hallway/secondary/entry/departure_lounge) -"fPR" = ( -/obj/structure/window/shuttle/unique/escape_pod{ - icon_state = "1,3" - }, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/pod1) -"fQf" = ( -/obj/structure/shuttle_part/escape_pod{ - icon_state = "2,3" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/escape_pod/pod3) -"fQm" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Corridor Camera 4"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"fQU" = ( -/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, -/area/hallway/secondary/entry/locker) -"fRP" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"fSa" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/solar/fore) -"fSf" = ( -/obj/machinery/computer/security/telescreen{ - name = "Telecomms Cameras"; - network = list("Tcomsat"); - pixel_x = -32; - pixel_y = -4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"fSV" = ( -/obj/effect/floor_decal/corner/white/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"fTi" = ( -/obj/machinery/door/airlock{ - id_tag = "sconferencebolts"; - name = "Conference Room"; - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/sconference_room) -"fTM" = ( -/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/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"fTQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"fUA" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "specops_dock_airlock_inner"; - locked = 1; - name = "Port Docking Hatch"; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"fUT" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"fVd" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 4 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/solarmaint) -"fWk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"fWr" = ( -/obj/machinery/door/airlock/glass{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"fWE" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "4,12"; - name = "survey shuttle" - }, -/area/shuttle/research) -"fXA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/quartermaster/loading) -"fYb" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall/r_wall, -/area/tcommsat/entrance) -"fYH" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"fZC" = ( -/obj/random/junk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/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/bridge_elevator/surface) -"gaj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"gaD" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"gaR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"gaU" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ - frequency = 1380; - id_tag = "escape_pod_1_berth"; - pixel_x = -25; - pixel_y = 30; - tag_door = "escape_pod_1_berth_hatch" - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"gba" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"gbr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/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/bridge_elevator/surface) -"gbZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"gcH" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/lino, -/area/tcommsat/lounge) -"gcI" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "6,4"; - name = "survey shuttle" - }, -/area/shuttle/research) -"gdf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"gdo" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"gdI" = ( -/obj/item/pen{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/wood, -/area/sconference_room) -"gec" = ( -/obj/machinery/light_switch{ - pixel_x = 22; - pixel_y = 10 - }, -/obj/structure/bed/padded, -/obj/item/bedsheet/mime, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/bedrooms) -"gfH" = ( -/obj/machinery/telecomms/bus/preset_three, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"gfY" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled/freezer, -/area/tcommsat/lounge) -"ggb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/fitness/pool) -"ggf" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_x = 6; - pixel_y = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"ggj" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"ggM" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"ghv" = ( -/obj/machinery/power/solar{ - id = "auxsolarnorth"; - name = "Fore Solar Array" - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/airless{ - icon_state = "solarpanel" - }, -/area/solar/fore) -"giv" = ( -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"giB" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/mime, -/obj/machinery/power/apc/west, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/bedrooms) -"giF" = ( -/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/junction{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"gjG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 9 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"gko" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/mime, -/obj/machinery/alarm/east, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/bedrooms) -"gkR" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/store) -"gny" = ( -/obj/structure/bed/stool/chair, -/obj/machinery/firealarm/north, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"gnQ" = ( -/obj/structure/table/standard, -/obj/item/device/hand_labeler, -/obj/machinery/requests_console/north{ - department = "Cargo Bay"; - departmentType = 2 - }, -/obj/item/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/device/hand_labeler, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"gog" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"goo" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"goU" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "bridge_surface_corridor"; - name = "Shutter" - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"gpM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"gpQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos{ - name = "Telecommunications Air Bypass"; - req_access = list(61); - req_one_access = null; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/tcommsat/entrance) -"gqn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-33" - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/wood, -/area/sconference_room) -"gqB" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/central) -"gqC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"gry" = ( -/turf/simulated/open/airless, -/area/turret_protected/tcomsat) -"grz" = ( -/obj/item/device/t_scanner, -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"grA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/store) -"grD" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1399; - master_tag = "green_dock_north"; - name = "interior access button"; - pixel_x = 25; - pixel_y = 26; - req_access = list(13) - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"grJ" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/wood, -/area/sconference_room) -"gtC" = ( -/obj/structure/table/wood, -/obj/item/clothing/suit/storage/hazardvest/white{ - desc = "A high-visibility vest coated with a water-repellent material. "; - name = "lifeguard vest" - }, -/obj/item/toy/bosunwhistle{ - desc = "This is how you get Wendy's whistle wet."; - name = "lifeguard whistle" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness/pool) -"gvh" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/storage/shields) -"gvi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/structure/closet/emcloset, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"gvI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"gvW" = ( -/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 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"gwb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"gwe" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"gwm" = ( -/obj/effect/floor_decal/corner/white/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/structure/window/reinforced, -/obj/structure/closet/wardrobe/suit, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"gwT" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"gwX" = ( -/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/secondary/entry/central) -"gxB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/foresolar) -"gyc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/store) -"gyn" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"gzk" = ( -/obj/machinery/door/airlock/external{ - frequency = 1700; - icon_state = "door_locked"; - id_tag = "tcoms_airlock_inner"; - locked = 1; - name = "Telecoms Surface Access"; - req_access = list(13); - dir = 4 - }, -/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/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"gzy" = ( -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"gzB" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/grass, -/area/hydroponics/garden) -"gAs" = ( -/obj/machinery/alarm/west, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"gAy" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/machinery/button/remote/airlock{ - desc = "A remote control-switch for the office door."; - id = "qmdoor"; - name = "office door control"; - pixel_x = 15; - pixel_y = -25; - req_access = list(41) - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control-switch for the cargo doors."; - id = "cargodoor"; - name = "cargo door control"; - pixel_x = 15; - pixel_y = -34; - req_access = list(41) - }, -/obj/effect/landmark/start{ - name = "Quartermaster" - }, -/obj/machinery/button/switch/windowtint{ - id = "QMTint"; - pixel_x = -20; - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"gAY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/camera/network/telecom{ - c_tag = "Telecomms - Storage" - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"gBy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/bridge/levela) -"gBD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lime, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"gBK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"gCo" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"gCU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - name = "EXTERNAL AIRLOCK" - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"gDk" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/obj/random/junk, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"gDF" = ( -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"gDN" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/item/crowbar, -/obj/item/device/flash, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"gEA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/solarmaint) -"gEN" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"gFv" = ( -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable/green{ - d1 = 32; - icon_state = "11-1" - }, -/obj/structure/disposalpipe/down{ - dir = 4 - }, -/turf/simulated/open, -/area/maintenance/bridge_elevator/surface) -"gFw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "surface_starboard"; - name = "interior access button"; - pixel_x = 26; - pixel_y = 25; - req_access = list(13) - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"gGo" = ( -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"gGx" = ( -/obj/random/pottedplant, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"gGy" = ( -/obj/structure/extinguisher_cabinet/west, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Corridor Camera 11"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"gHl" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/turret_protected/tcomsat) -"gHD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"gJs" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "10,9"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"gKx" = ( -/obj/vehicle/train/cargo/engine, -/obj/machinery/alarm/north, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"gLG" = ( -/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/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"gMs" = ( -/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/secondary/entry/central) -"gME" = ( -/obj/structure/cable{ - 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/plating, -/area/maintenance/store) -"gMR" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/beach/water/pool{ - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"gMU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"gNt" = ( -/obj/structure/closet/toolcloset, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/storage/tools) -"gNz" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/locker) -"gNG" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"gNU" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/firealarm/east, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"gOY" = ( -/obj/structure/table/wood, -/obj/item/storage/box/fancy/cigarettes{ - pixel_y = 2 - }, -/obj/random/single{ - icon = 'icons/obj/items.dmi'; - icon_state = "lighter-g"; - name = "randomly spawned lighter"; - spawn_nothing_percentage = 50; - spawn_object = /obj/item/flame/lighter - }, -/turf/simulated/floor/carpet, -/area/hallway/secondary/entry/departure_lounge) -"gPQ" = ( -/obj/structure/bed/stool/chair, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"gQt" = ( -/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/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/store) -"gQU" = ( -/obj/machinery/telecomms/server/presets/unused, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"gQW" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/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" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"gRl" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"gRB" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"gSu" = ( -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Auxiliary Dock"; - dir = 4; - pixel_y = 11 - }, -/obj/machinery/airlock_sensor{ - frequency = 1399; - id_tag = "admin_shuttle_dock_sensor"; - pixel_x = -27; - pixel_y = 7 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"gSI" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/towel, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"gSR" = ( -/turf/simulated/wall, -/area/crew_quarters/fitness/pool) -"gTo" = ( -/obj/structure/bed/stool/padded/red, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"gTW" = ( -/obj/structure/window/shuttle/unique/research{ - icon_state = "5,15" - }, -/turf/simulated/floor/plating, -/area/shuttle/research) -"gUk" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"gVk" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - name = "Distro to Canisters"; - target_pressure = 150 - }, -/turf/simulated/floor/plating, -/area/maintenance/portsolar) -"gVS" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/shieldwallgen, -/turf/simulated/floor/plating, -/area/storage/shields) -"gWq" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "bridge_surface_corridor"; - name = "Shutter" - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"gWU" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "10,8"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"gXx" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "seccheckpointoffice"; - name = "Checkpoint Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/checkpoint2) -"gXL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/maintenance/store) -"gYt" = ( -/obj/machinery/vending/tool, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/storage/primary) -"gYP" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1337; - id_tag = "distress_shuttle_dock"; - pixel_x = -1; - pixel_y = 29; - req_one_access = list(13); - tag_airpump = "distress_shuttle_dock_pump"; - tag_chamber_sensor = "distress_shuttle_dock_sensor"; - tag_exterior_door = "distress_shuttle_dock_outer"; - tag_interior_door = "distress_shuttle_dock_inner" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1337; - id_tag = "distress_shuttle_dock_pump" - }, -/obj/machinery/airlock_sensor{ - frequency = 1337; - id_tag = "distress_shuttle_dock_sensor"; - master_tag = "nuke_shuttle_dock_airlock"; - pixel_y = -25 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"gYY" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "green_dock_aft_exterior"; - locked = 1; - name = "Emergency Services Dock"; - req_access = list(13); - dir = 1 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1337; - master_tag = "green_dock_aft_airlock"; - name = "exterior access button"; - pixel_x = -27; - pixel_y = 7; - req_access = list(13) - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"gZA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"gZQ" = ( -/obj/machinery/alarm/east, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"gZR" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/open/airless, -/area/turret_protected/tcomsat) -"hap" = ( -/obj/machinery/door/airlock/engineering{ - name = "Beta Solar Array"; - req_access = null; - req_one_access = list(10,11,13); - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/portsolar) -"hav" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"hbQ" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/cryo) -"hcq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"hcS" = ( -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/device/megaphone/engi, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"hdM" = ( -/turf/simulated/wall/r_wall, -/area/bridge/levela) -"hek" = ( -/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/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo) -"heu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/storage/tools) -"hex" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/storage/tools) -"hez" = ( -/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/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"heA" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/turf/simulated/floor/plating, -/area/quartermaster/loading) -"hfg" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "expedition armory"; - req_access = null - }, -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/item/gun/energy/laser/shotgun/research, -/obj/item/gun/energy/laser/shotgun/research, -/obj/machinery/recharger/wallcharger{ - pixel_x = 32; - pixel_y = -13 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"hfx" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/random/pottedplant, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"hfz" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1399; - id_tag = "admin_shuttle_dock_airlock"; - pixel_x = 27; - req_one_access = list(13); - tag_airpump = "admin_shuttle_dock_pump"; - tag_chamber_sensor = "admin_shuttle_dock_sensor"; - tag_exterior_door = "admin_shuttle_dock_outer"; - tag_interior_door = "admin_shuttle_dock_inner" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1399; - id_tag = "admin_shuttle_dock_pump" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"hfH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"hgg" = ( -/obj/machinery/alarm/east, -/obj/structure/bed/stool/chair/padded/black, -/turf/simulated/floor/wood, -/area/sconference_room) -"hgy" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/item/device/radio/intercom/west, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"hgG" = ( -/obj/machinery/alarm/north, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/sconference_room) -"hgU" = ( -/obj/effect/floor_decal/corner/red/full, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"hhB" = ( -/obj/structure/grille, -/turf/simulated/floor/airless, -/area/solar/starboard) -"hhD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"hhW" = ( -/obj/structure/sign/drop{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomfoyer) -"hjj" = ( -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-21" - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"hjt" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"hjy" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/security/bridge_surface_checkpoint) -"hjV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"hkf" = ( -/obj/item/device/radio/intercom/north, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Arrivals Terminal Fore" - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"hkp" = ( -/turf/simulated/wall, -/area/solar/fore) -"hlb" = ( -/obj/structure/window/reinforced, -/turf/simulated/open/airless, -/area/turret_protected/tcomsat) -"hlo" = ( -/obj/machinery/light, -/obj/machinery/camera/network/telecom{ - c_tag = "Telecomms - Central Compartment Aft"; - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/bluegrid/server, -/area/tcommsat/chamber) -"hlx" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/quartermaster/loading) -"hmg" = ( -/obj/machinery/meter{ - name = "Air supply" - }, -/obj/machinery/alarm/west, -/obj/machinery/atmospherics/pipe/simple/hidden/blue, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"hms" = ( -/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" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"hmU" = ( -/turf/simulated/wall/r_wall, -/area/tcommsat/computer) -"hnc" = ( -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"hoo" = ( -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"hoK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 2; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/bridge/levela/research_dock) -"hpI" = ( -/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/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction/yjunction, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"hpL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"hpO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"hrw" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/white/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "poolcafe"; - name = "Pool Cafe" - }, -/obj/item/glass_jar, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"hsj" = ( -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"hst" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/airlock/command{ - name = "Shuttle Docking"; - req_one_access = list(19,38,63,72); - 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/bridge/levela) -"htH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Changing Room"; - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/fitness/changing) -"hux" = ( -/obj/structure/table/standard, -/obj/item/clothing/head/softcap/cargo, -/obj/item/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/softcap/cargo, -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/machinery/status_display/supply_display{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"huI" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "4,14"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"hvc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"hvj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "surface_starboard_inner"; - locked = 1; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"hwH" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/turret_protected/tcomsat) -"hwJ" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 8 - }, -/obj/structure/closet/walllocker/medical{ - pixel_y = 31 - }, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/glasses/hud/health, -/obj/item/storage/firstaid/o2, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"hwS" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "sconferenceprivacy" - }, -/obj/structure/window/reinforced/polarized{ - id = "sconferenceprivacy" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "sconferenceprivacy" - }, -/turf/simulated/floor/plating, -/area/sconference_room) -"hxu" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "commissary_counter"; - name = "Shutter" - }, -/obj/item/towel/random{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/towel/random{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/lino, -/area/store) -"hxx" = ( -/turf/simulated/floor/airless, -/area/solar/fore) -"hxR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "seccheckpointoffice"; - name = "Checkpoint Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/checkpoint2) -"hyn" = ( -/turf/simulated/wall/r_wall, -/area/hydroponics/garden) -"hyu" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"hyy" = ( -/obj/structure/grille/broken, -/obj/item/stack/rods, -/turf/simulated/floor/airless, -/area/mine/explored) -"hzr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"hzL" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/fitness/pool) -"hAA" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/tcommsat/computer) -"hAY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"hBB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"hBJ" = ( -/obj/machinery/light, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Corridor Camera 1"; - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/vending/cigarette, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"hBV" = ( -/obj/machinery/light{ - name = "adjusted light fixture"; - pixel_x = 16; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate{ - name = "power generation supplies" - }, -/obj/item/circuitboard/rtg, -/obj/item/stack/cable_coil{ - amount = 5 - }, -/obj/item/stock_parts/capacitor, -/obj/item/stack/material/uranium{ - amount = 10 - }, -/obj/item/stack/material/phoron{ - amount = 30 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"hCb" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "10,10"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"hCc" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "8,13"; - name = "survey shuttle" - }, -/area/shuttle/research) -"hDW" = ( -/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/random/junk, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"hEL" = ( -/obj/machinery/light/small, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "yellow_shuttle_dock_sensor"; - master_tag = "yellow_shuttle_dock_airlock"; - pixel_y = 26 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"hFl" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"hFz" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"hFO" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"hGZ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/alarm/east, -/turf/simulated/floor/wood, -/area/hydroponics/garden) -"hHk" = ( -/obj/structure/table/rack, -/obj/item/stack/nanopaste, -/obj/item/stack/nanopaste, -/obj/item/stack/nanopaste, -/obj/item/stack/nanopaste, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"hIb" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-29" - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"hIc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/portsolar) -"hIs" = ( -/obj/machinery/firealarm/east, -/obj/machinery/atmospherics/binary/pump/on{ - name = "Distro to Canisters"; - target_pressure = 150 - }, -/obj/effect/floor_decal/industrial/warning/cee, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"hIF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"hJf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"hKE" = ( -/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/maintenance{ - req_access = list(12); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/fitness/changing) -"hLG" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Warehouse Maintenance"; - req_access = list(31); - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"hLZ" = ( -/obj/structure/disposalpipe/segment, -/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/plating, -/area/maintenance/cargo/surface) -"hNj" = ( -/obj/machinery/door/airlock/glass{ - name = "Red Dock"; - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"hOp" = ( -/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 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"hOF" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1337; - master_tag = "distress_shuttle_dock"; - name = "exterior access button"; - pixel_x = -5; - pixel_y = 26; - req_one_access = list(13) - }, -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "distress_shuttle_dock_outer"; - locked = 1; - name = "Docking Port Airlock"; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"hOJ" = ( -/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, -/area/hallway/secondary/entry/central) -"hOO" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"hPP" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"hQa" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"hQl" = ( -/obj/machinery/light, -/obj/machinery/power/apc/south, -/obj/structure/cable/green, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/grass, -/area/hydroponics/garden) -"hQn" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "sconferenceprivacy" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "sconferenceprivacy" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "sconferenceprivacy" - }, -/turf/simulated/floor/plating, -/area/sconference_room) -"hQA" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/machinery/door/blast/shutters{ - id = "commissary_counter"; - name = "Shutter" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/lino, -/area/store) -"hRc" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "green_dock_fore_exterior"; - locked = 1; - name = "Emergency Services Dock"; - req_access = list(13); - dir = 1 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1337; - master_tag = "green_dock_fore_airlock"; - name = "exterior access button"; - pixel_x = -27; - pixel_y = -7; - req_access = list(13) - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"hRm" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "2,7"; - name = "survey shuttle" - }, -/area/shuttle/research) -"hRV" = ( -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "escape_dock_north_sensor"; - master_tag = "escape_dock_north_airlock"; - pixel_y = -25 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"hSl" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1337; - id_tag = "green_dock_aft_pump" - }, -/obj/machinery/airlock_sensor{ - frequency = 1337; - id_tag = "green_dock_aft_sensor"; - pixel_x = -28 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"hTh" = ( -/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/hallway/secondary/entry/locker) -"hUK" = ( -/obj/structure/cable/yellow, -/turf/simulated/floor/airless, -/area/solar/fore) -"hUM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/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/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"hUU" = ( -/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 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"hVP" = ( -/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 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"hWe" = ( -/obj/structure/window/shuttle/unique/research{ - icon_state = "5,13" - }, -/turf/simulated/floor/plating, -/area/shuttle/research) -"hWY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"hXu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/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/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"hXU" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/lino, -/area/tcommsat/lounge) -"hXY" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "3,3"; - name = "survey shuttle" - }, -/area/shuttle/research) -"hYh" = ( -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Arrivals Terminal Aft"; - dir = 1 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = -28 - }, -/obj/structure/sign/directions/all{ - pixel_y = -36 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"hYF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 2; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/bridge/levela/research_dock) -"hYO" = ( -/obj/structure/reagent_dispensers/extinguisher, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"hYT" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"hYY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"hZk" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/solarmaint) -"hZo" = ( -/obj/machinery/door/airlock/glass{ - name = "NSS Aurora"; - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"hZD" = ( -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Surface Corridor 1"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"ibG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/loading) -"ibJ" = ( -/obj/structure/closet/walllocker/firecloset{ - pixel_x = 28; - pixel_y = -4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"ibM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"ibX" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"icA" = ( -/obj/structure/table/wood, -/obj/machinery/chemical_dispenser/coffee/full{ - spawn_cartridges = list(/obj/item/reagent_containers/chem_disp_cartridge/coffee,/obj/item/reagent_containers/chem_disp_cartridge/milk,/obj/item/reagent_containers/chem_disp_cartridge/cream,/obj/item/reagent_containers/chem_disp_cartridge/sugar) - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/wood, -/area/sconference_room) -"icV" = ( -/turf/simulated/open, -/area/turbolift/main_arrivals_aux) -"idj" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/tiled, -/area/storage/primary) -"idk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/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, -/area/hallway/secondary/entry/aft) -"iem" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"ieq" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/open/airless, -/area/turret_protected/tcomsat) -"ieu" = ( -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"ifb" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/solar/fore) -"ifi" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/airless, -/area/turret_protected/tcomsat) -"ifs" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/light_switch{ - pixel_x = 22; - pixel_y = 10 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"igg" = ( -/obj/structure/weightlifter, -/obj/item/device/radio/intercom/north, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"igP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"ihh" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "7,0"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"ihG" = ( -/obj/machinery/vending/assist, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/storage/primary) -"ihW" = ( -/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/effect/floor_decal/corner/white{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"iiJ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"iiN" = ( -/turf/simulated/floor/tiled/ramp, -/area/shuttle/research) -"iiR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/effect/floor_decal/industrial/warning/cee, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"ijg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"ijh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"ijl" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/cookiesnack, -/obj/item/storage/box/fancy/cookiesnack, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = -8; - pixel_y = 14 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = -1; - pixel_y = 14 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = 6; - pixel_y = 14 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = -5; - pixel_y = 17 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = 2; - pixel_y = 17 - }, -/obj/machinery/newscaster/west{ - pixel_y = 2 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"ijm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/departure_lounge) -"iju" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecoms Control Room"; - req_access = list(61); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"ijz" = ( -/obj/machinery/status_display/supply_display{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"ikn" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "solar_aft_outer"; - locked = 1; - name = "Engineering External Access"; - req_access = null; - req_one_access = list(10,11,13); - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/starboardsolar) -"ikW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "office_shutter"; - name = "Office Shutters" - }, -/turf/simulated/floor/plating, -/area/security/vacantoffice) -"ilT" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"imn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/security/vacantoffice) -"imY" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall, -/area/solar/fore) -"ioe" = ( -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/wood, -/area/sconference_room) -"ioN" = ( -/obj/machinery/door/airlock/external{ - frequency = 1399; - icon_state = "door_locked"; - id_tag = "green_dock_north_outer"; - locked = 1; - name = "Emergency Services Dock"; - req_access = list(13); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"ipR" = ( -/obj/machinery/firealarm/north, -/obj/structure/closet/emcloset, -/obj/item/storage/toolbox/emergency, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"iqa" = ( -/obj/structure/bed/stool/chair, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"iqd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"iqg" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'LETHAL TURRETS'. Enter at your own risk!"; - name = "LETHAL TURRETS"; - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomfoyer) -"iqt" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/sconference_room) -"iri" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Cryogenic Storage"; - pixel_x = -4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo) -"irk" = ( -/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/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/store) -"ism" = ( -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"itg" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "5,1"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"iud" = ( -/obj/effect/decal/cleanable/generic, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/store) -"iur" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/floodlight, -/turf/simulated/floor/tiled, -/area/store) -"iuE" = ( -/obj/machinery/space_heater, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"ivJ" = ( -/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/freezer, -/area/crew_quarters/toilet) -"ivX" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"iwL" = ( -/obj/structure/closet/secure_closet/hangar_tech, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"iwV" = ( -/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/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"ixI" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/store) -"ixU" = ( -/obj/effect/shuttle_landmark/burglar/blue, -/obj/effect/shuttle_landmark/distress/blue, -/turf/unsimulated/floor/asteroid/ash, -/area/mine/explored) -"iyy" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"iyL" = ( -/obj/structure/closet/crate, -/obj/item/aicard, -/obj/item/device/multitool, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"iyX" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"izd" = ( -/obj/structure/table/steel, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/light_switch{ - pixel_x = 24; - pixel_y = 8 - }, -/turf/simulated/floor/tiled, -/area/storage/tools) -"izm" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/flora/pottedplant{ - icon_state = "plant-28" - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"izN" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"iAd" = ( -/obj/structure/extinguisher_cabinet/west{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"iAZ" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"iBi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"iBy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/turret_protected/tcomsat) -"iBI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 5 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"iBN" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"iCn" = ( -/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" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"iCB" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo) -"iCN" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/down/supply, -/obj/structure/cable{ - d1 = 32; - d2 = 2; - icon_state = "11-2" - }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/open/airless, -/area/maintenance/telecoms_ladder) -"iDb" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/solar/fore) -"iDv" = ( -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"iEe" = ( -/turf/simulated/open, -/area/hallway/secondary/entry/stairs) -"iEz" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/store) -"iEC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/departure_lounge) -"iER" = ( -/obj/structure/bed/stool/chair, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"iFv" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Yellow Dock Fore" - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"iFB" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ - frequency = 1380; - id_tag = "escape_pod_1"; - pixel_x = -25; - tag_door = "escape_pod_1_hatch" - }, -/obj/effect/shuttle_landmark/escape_pod/start/pod1, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod1) -"iGq" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/elevator) -"iGs" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/store) -"iGH" = ( -/obj/machinery/vending/hydronutrients, -/turf/simulated/floor/grass, -/area/hydroponics/garden) -"iGP" = ( -/obj/random/junk, -/turf/unsimulated/chasm_mask, -/area/mine/explored) -"iHT" = ( -/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 = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"iIm" = ( -/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/tiled, -/area/hallway/secondary/entry/fore) -"iIt" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"iJp" = ( -/obj/structure/table/rack, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness/changing) -"iJA" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1700; - id_tag = "tcoms_airlock_pump" - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"iJD" = ( -/obj/structure/shuttle_part/research{ - density = 0; - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "4,15"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"iKp" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/bedrooms) -"iKu" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"iKC" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/loading) -"iLs" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "0,2"; - name = "survey shuttle" - }, -/area/shuttle/research) -"iLX" = ( -/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/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"iMe" = ( -/obj/structure/window/shuttle/unique/escape_pod{ - icon_state = "1,3" - }, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/pod3) -"iOo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"iOy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/tcommsat/entrance) -"iQw" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"iQS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/plating, -/area/maintenance/store) -"iRd" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"iRJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1399; - id_tag = "green_dock_north_pump" - }, -/obj/machinery/airlock_sensor{ - frequency = 1399; - id_tag = "green_dock_north_sensor"; - pixel_x = -28 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"iSs" = ( -/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/maintenance_hatch{ - req_access = list(12); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tcommsat/entrance) -"iTu" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hydroponics/garden) -"iUs" = ( -/obj/structure/table/reinforced, -/obj/item/trash/tray, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/lounge) -"iUY" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"iVd" = ( -/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/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"iVK" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "10,1"; - name = "survey shuttle" - }, -/area/shuttle/research) -"iVX" = ( -/obj/effect/floor_decal/corner/dark_blue, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"iWE" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"iWV" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"iXf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/store) -"iXQ" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"iXR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/chair, -/turf/simulated/floor/tiled, -/area/store) -"iYM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"iZV" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "solar_tool_airlock"; - name = "interior access button"; - pixel_x = 25; - pixel_y = 25; - req_access = null; - req_one_access = list(10,11,13) - }, -/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/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/foresolar) -"jaz" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"jaR" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1700; - id_tag = "tcoms_airlock_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1700; - id_tag = "tcoms_airlock"; - pixel_y = 29; - tag_airpump = "tcoms_airlock_pump"; - tag_chamber_sensor = "tcoms_airlock_sensor"; - tag_exterior_door = "tcoms_airlock_outer"; - tag_interior_door = "tcoms_airlock_inner" - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"jaY" = ( -/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 = 6 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo) -"jcC" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "12,7"; - name = "survey shuttle" - }, -/area/shuttle/research) -"jcE" = ( -/obj/machinery/alarm/west, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"jcK" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"jcX" = ( -/obj/effect/shuttle_landmark/merc_elite/command, -/turf/unsimulated/floor/asteroid/ash, -/area/mine/explored) -"jdl" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"jdx" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Solar - Port TComms"; - cur_coils = 2 - }, -/turf/simulated/floor/plating, -/area/maintenance/portsolar) -"jeb" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/tcommsat/lounge) -"jei" = ( -/obj/item/beach_ball, -/obj/machinery/alarm/west{ - name = "Surface - Pool Air alarm"; - target_temperature = 303.15 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"jeJ" = ( -/obj/machinery/door/airlock/engineering{ - name = "Alpha Solar Array"; - req_access = null; - req_one_access = list(10,11,13); - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/starboardsolar) -"jeY" = ( -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"jfK" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"jgK" = ( -/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/tiled, -/area/hallway/secondary/entry/emergency) -"jhh" = ( -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"jhw" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/fitness) -"jhz" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "5,2"; - name = "survey shuttle" - }, -/area/shuttle/research) -"jhV" = ( -/obj/effect/decal/cleanable/generic, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/store) -"jiW" = ( -/obj/structure/closet/lasertag, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness/changing) -"jkk" = ( -/obj/machinery/papershredder, -/turf/simulated/floor/wood, -/area/sconference_room) -"jkx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"jlO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/store) -"jlQ" = ( -/obj/machinery/door/airlock/mining{ - id_tag = "qmdoor"; - name = "Quartermaster"; - req_access = list(41); - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"jmH" = ( -/obj/structure/disposalpipe/down{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - d1 = 32; - icon_state = "11-1" - }, -/turf/simulated/open, -/area/maintenance/cargo/surface) -"jne" = ( -/obj/structure/closet, -/turf/simulated/floor/plating, -/area/turret_protected/tcomsat) -"jnA" = ( -/obj/machinery/firealarm/west, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"jnY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/store) -"joJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"jpc" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "command_surface_outer"; - locked = 1; - name = "Command Docking Exterior Access"; - req_access = list(13); - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1337; - master_tag = "command_surface_airlock"; - name = "exterior access button"; - pixel_x = -7; - pixel_y = 25; - req_access = list(13) - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"jpH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 2; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "bridge_surface_checkpoint"; - name = "Checkpoint Shutters" - }, -/turf/simulated/floor/plating, -/area/security/bridge_surface_checkpoint) -"jqc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"jqn" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/lounge) -"jrk" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "merchant_shuttle_dock_outer"; - locked = 1; - req_access = list(13); - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1337; - master_tag = "merchant_shuttle_dock"; - name = "exterior access button"; - pixel_y = 32; - req_access = list(13) - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"jrA" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled, -/area/storage/tools) -"jtc" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/storage/tools) -"jts" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"juH" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/shields) -"juT" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southleft, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/store) -"jva" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"jvb" = ( -/obj/structure/cable/blue{ - 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, -/area/tcommsat/computer) -"jvo" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"jvp" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/beach/water/pool{ - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"jvS" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/solarmaint) -"jwu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"jxp" = ( -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/grass, -/area/hydroponics/garden) -"jyz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/tcommsat/chamber) -"jyG" = ( -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"jyZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"jAf" = ( -/obj/machinery/door/airlock/external{ - icon_state = "door_locked"; - locked = 1; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"jBl" = ( -/obj/structure/cryofeed{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/sleep/cryo) -"jBF" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-32" - }, -/obj/item/device/radio/intercom/south, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Pool Aft"; - dir = 1; - pixel_x = 2 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"jBU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"jDo" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 1 - }, -/area/hallway/secondary/entry/stairs) -"jDz" = ( -/turf/unsimulated/floor/asteroid/ash, -/area/solar/starboard) -"jDK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/machinery/airlock_sensor/airlock_exterior{ - frequency = 1381; - id_tag = "server_access_ex_sensor"; - master_tag = "server_access_airlock"; - pixel_x = 25; - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"jEn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - id = "office_shutter"; - name = "Office Shutters" - }, -/turf/simulated/floor/plating, -/area/security/vacantoffice) -"jFj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/carpet, -/area/sconference_room) -"jFp" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"jFv" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo) -"jFD" = ( -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"jFJ" = ( -/obj/machinery/turretid/stun{ - ailock = 1; - check_synth = 1; - control_area = null; - desc = "A firewall prevents AIs from interacting with this device."; - name = "Telecoms Foyer turret control"; - pixel_y = 29; - req_access = list(61) - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"jFM" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_dock_center_inner"; - locked = 1; - name = "Escape Airlock"; - req_access = list(13); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"jFQ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/solar/port) -"jFS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "green_dock_fore_interior"; - locked = 1; - name = "Emergency Services Dock"; - req_access = list(13); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"jGl" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - 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 = 9 - }, -/turf/simulated/floor/tiled, -/area/storage/tools) -"jGB" = ( -/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 = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"jHc" = ( -/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/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"jHf" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"jHF" = ( -/obj/machinery/door/airlock/mining{ - id_tag = "qmdoor"; - name = "Quartermaster"; - req_access = list(41); - 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/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"jHH" = ( -/obj/machinery/alarm/west, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"jIt" = ( -/obj/structure/weightlifter, -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"jIw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"jIS" = ( -/obj/machinery/iv_drip{ - pixel_x = 7 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"jIV" = ( -/obj/effect/floor_decal/corner/brown/full, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"jIW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Commissary"; - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "commissary_entry"; - name = "Shutter" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/store) -"jLm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"jLB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"jMx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"jMy" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/trash/cheesie, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/lounge) -"jNp" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "3,1"; - name = "survey shuttle" - }, -/area/shuttle/research) -"jNx" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"jOY" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"jPl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"jPN" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecoms East Wing"; - req_access = list(61); - 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, -/area/turret_protected/tcomfoyer) -"jQf" = ( -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"jQE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/turret_protected/tcomsat) -"jQW" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"jRy" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/brown, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"jRQ" = ( -/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/hallway/secondary/entry/aft) -"jRW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "science_bridge"; - name = "interior access button"; - pixel_x = -6; - pixel_y = 25 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"jSi" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"jTN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"jUc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"jUK" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/bridge/levela/research_dock) -"jVy" = ( -/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" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"jVA" = ( -/obj/machinery/telecomms/server/presets/security, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"jVQ" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"jWe" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"jXR" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/machinery/airlock_sensor{ - id_tag = "surface_starboard_sensor"; - pixel_y = -28 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Surface - Starboard Airlock" - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"jXT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 8; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"jYx" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"jYz" = ( -/obj/machinery/door/airlock/glass{ - name = "Blue Dock"; - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"kaf" = ( -/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 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"kax" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"kaz" = ( -/turf/simulated/wall/r_wall, -/area/storage/shields) -"kbM" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"kbQ" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/structure/bed/stool/chair/padded/black, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"kbV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"kbX" = ( -/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 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"kbZ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/drop{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"kcu" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"kcJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tape_roll, -/obj/structure/table/standard, -/obj/machinery/light_construct{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/store) -"kdq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"kdr" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/bridge_elevator/surface) -"kdE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"kee" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"keO" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/random/coin, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"keV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA" - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"kfj" = ( -/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, -/area/hallway/secondary/entry/central) -"kfo" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"kfL" = ( -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"kgW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"kgX" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/tape_roll, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"kii" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner_wide/paleblue/full, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"kjJ" = ( -/turf/simulated/floor/airless, -/area/turret_protected/tcomsat) -"kjO" = ( -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"kkU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/storage/tools) -"klH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Garden"; - dir = 4 - }, -/turf/simulated/floor/wood, -/area/hydroponics/garden) -"klU" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"kmf" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"knf" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "QMTint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "QMTint" - }, -/obj/structure/window/reinforced/polarized{ - id = "QMTint" - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/quartermaster/qm) -"knp" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/structure/window/reinforced{ - name = "adjusted window" - }, -/obj/structure/bed/stool/chair/office/bridge{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"knH" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"knV" = ( -/obj/machinery/atmospherics/pipe/manifold4w/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 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction/yjunction, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"knW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"koe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"koq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"koK" = ( -/obj/structure/table/standard, -/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, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/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, -/area/turret_protected/tcomsat) -"koW" = ( -/obj/machinery/hologram/holopad/long_range, -/turf/simulated/floor/carpet, -/area/sconference_room) -"kpb" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"kpr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"kpy" = ( -/obj/structure/bed/stool/chair/office/light, -/turf/simulated/floor/carpet, -/area/sconference_room) -"kqa" = ( -/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/secondary/entry/fore) -"kqg" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/quartermaster/loading) -"ksy" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecoms West Wing"; - req_access = list(61); - 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, -/area/turret_protected/tcomfoyer) -"ktd" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"ktg" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"ktj" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/pen{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/sconference_room) -"kty" = ( -/turf/simulated/wall, -/area/maintenance/cargo/surface) -"ktC" = ( -/turf/simulated/wall/shuttle/unique/escape_pod{ - icon_state = "0,0" - }, -/area/shuttle/escape_pod/pod2) -"ktD" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/bridge/levela/research_dock) -"ktS" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/random/pottedplant, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"kuZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"kvb" = ( -/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/multi_tile, -/obj/machinery/door/airlock/multi_tile/glass, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo) -"kvc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"kvz" = ( -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"kwQ" = ( -/obj/structure/punching_bag, -/obj/effect/floor_decal/corner/red/full, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"kwT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/apc/east, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/store) -"kxt" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/device/paicard, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"kyf" = ( -/obj/structure/grille, -/turf/simulated/floor/airless, -/area/solar/fore) -"kym" = ( -/obj/machinery/autolathe, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"kyQ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/turret_protected/tcomsat) -"kyW" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"kze" = ( -/obj/effect/shuttle_landmark/legion/green, -/turf/unsimulated/chasm_mask, -/area/mine/explored) -"kzu" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"kzZ" = ( -/obj/item/stack/rods, -/turf/simulated/floor/airless, -/area/mine/explored) -"kAl" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/storage/firstaid/fire, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"kAm" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "9,2"; - name = "survey shuttle" - }, -/area/shuttle/research) -"kBh" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "9,10"; - name = "survey shuttle" - }, -/area/shuttle/research) -"kBH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/store) -"kCP" = ( -/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 = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/hydroponics/garden) -"kDk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/hallway/secondary/entry/departure_lounge) -"kDn" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"kDq" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "brig_solar_airlock"; - name = "interior access button"; - pixel_x = -25; - pixel_y = -25; - req_access = null; - req_one_access = list(10,11,13) - }, -/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/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/floor/plating, -/area/maintenance/portsolar) -"kEl" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "cargo_bay_door"; - locked = 1; - name = "Cargo Docking Hatch"; - req_access = list(13); - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/simulated/floor/plating, -/area/quartermaster/loading) -"kEF" = ( -/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/plating, -/area/maintenance/arrivals) -"kEY" = ( -/obj/item/clothing/suit/fire, -/obj/item/tank/oxygen, -/obj/item/clothing/mask/gas, -/obj/item/extinguisher, -/obj/item/clothing/head/hardhat/red, -/obj/structure/table/rack{ - dir = 1 - }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"kFc" = ( -/obj/structure/bed/stool/padded/red, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/bed/stool/padded/red, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/lounge) -"kFM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"kGv" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm/south{ - req_one_access = list(24,11,55) - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"kGW" = ( -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - id = "QMLoad"; - pixel_y = -5 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"kHN" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "sconferenceprivacy" - }, -/obj/structure/window/reinforced/polarized{ - id = "sconferenceprivacy" - }, -/turf/simulated/floor/plating, -/area/sconference_room) -"kIG" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"kJi" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "0,1"; - name = "survey shuttle"; - opacity = 1 - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"kJC" = ( -/obj/machinery/atm{ - pixel_y = -32 - }, -/turf/simulated/floor/lino, -/area/hallway/secondary/entry/departure_lounge) -"kJX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/bedrooms) -"kKw" = ( -/obj/structure/closet/wardrobe/red, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -30 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"kKF" = ( -/turf/unsimulated/floor/asteroid/ash, -/area/mine/explored) -"kLh" = ( -/obj/machinery/airlock_sensor{ - frequency = 1337; - id_tag = "merchant_shuttle_dock_sensor"; - pixel_y = -27 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"kLV" = ( -/obj/effect/floor_decal/corner/red/full, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"kLZ" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"kMv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"kMD" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "sconferenceprivacy" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "sconferenceprivacy" - }, -/turf/simulated/floor/plating, -/area/sconference_room) -"kMV" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"kMX" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"kNa" = ( -/obj/effect/floor_decal/corner/white/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/newscaster/west, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"kNz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"kNP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/lino, -/area/hallway/secondary/entry/departure_lounge) -"kOK" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"kPc" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - fluorescent = null; - frequency = 1380; - id_tag = "science_bridge_pump" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/bridge/levela/research_dock) -"kPX" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"kQo" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/random/junk, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"kQM" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "11,5"; - name = "survey shuttle" - }, -/area/shuttle/research) -"kRp" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/fitness/pool) -"kRG" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue/full, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"kSh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"kSi" = ( -/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, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"kSC" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "9,1"; - name = "survey shuttle" - }, -/area/shuttle/research) -"kSS" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "9,11"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"kUp" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/bridge/levela/research_dock) -"kUt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet, -/area/sconference_room) -"kUx" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_pod_1_berth_hatch"; - locked = 1; - name = "Escape Pod"; - req_access = list(13); - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/bridge/levela) -"kVe" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "9,12"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"kVL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/store) -"kVN" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/obj/machinery/newscaster/south, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"kWs" = ( -/obj/item/device/radio/intercom/west, -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/effect/landmark{ - name = "Mission Paper" - }, -/obj/item/device/camera{ - pixel_y = 2 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"kWB" = ( -/obj/structure/window/reinforced, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/open/airless, -/area/turret_protected/tcomsat) -"kXS" = ( -/obj/machinery/atmospherics/binary/passive_gate{ - name = "shuttle airlock pressure regulator"; - target_pressure = 75; - unlocked = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/door/airlock/glass_research{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "science_shuttle_in"; - name = "Crew Cabin"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/shuttle/research) -"kYk" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/grey{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"kYn" = ( -/turf/simulated/wall/shuttle/unique/escape_pod{ - icon_state = "2,2" - }, -/area/shuttle/escape_pod/pod2) -"kYo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"kYp" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"kYs" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/solar/port) -"kYN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/landmark{ - name = "Revenant" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"kZt" = ( -/obj/structure/bed/roller, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"kZA" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"lbq" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/southleft, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"lbw" = ( -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"lcs" = ( -/obj/structure/closet/wardrobe/xenos, -/obj/item/clothing/shoes/footwraps, -/obj/item/clothing/shoes/footwraps, -/obj/item/clothing/shoes/workboots/toeless, -/obj/item/clothing/shoes/workboots/toeless, -/obj/item/clothing/shoes/jackboots/toeless, -/obj/item/clothing/shoes/jackboots/toeless, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"ldg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Showers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"leY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/store) -"lfE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/atmos{ - name = "Docks Air Bypass"; - req_one_access = list(11,24); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"lgt" = ( -/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/secondary/entry/central) -"lgD" = ( -/obj/random/loot, -/obj/structure/closet, -/turf/simulated/floor/plating, -/area/maintenance/store) -"lgR" = ( -/obj/structure/window/basic{ - dir = 4 - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/turf/simulated/floor/carpet, -/area/security/vacantoffice) -"lhn" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/open/airless, -/area/turret_protected/tcomsat) -"lht" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"lhL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/bridge/levela) -"lid" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"lio" = ( -/obj/structure/table/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/toothpaste{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/reagent_containers/toothpaste{ - pixel_x = 2; - pixel_y = -4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/store) -"liL" = ( -/obj/effect/shuttle_landmark/ert/dock, -/turf/unsimulated/floor/asteroid/ash, -/area/mine/explored) -"ljh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/bluegrid/server, -/area/tcommsat/chamber) -"ljj" = ( -/turf/simulated/open/airless, -/area/mine/explored) -"ljM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/solarmaint) -"lkU" = ( -/obj/machinery/door/airlock{ - id_tag = "Dormitory 2"; - name = "Dorm"; - dir = 1 - }, -/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/wood, -/area/crew_quarters/sleep/bedrooms) -"llq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"llv" = ( -/obj/structure/closet/wardrobe/pjs, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/bedrooms) -"lmh" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/structure/bed/stool/chair/padded/black{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"lmQ" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"lnD" = ( -/obj/machinery/airlock_sensor/airlock_interior{ - frequency = 1381; - id_tag = "server_access_in_sensor"; - name = "interior sensor"; - pixel_y = 25 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 - }, -/turf/simulated/floor/bluegrid/server, -/area/tcommsat/chamber) -"loo" = ( -/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/secondary/entry/central) -"loE" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"lpm" = ( -/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 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"lqn" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"lqI" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"lqJ" = ( -/turf/simulated/wall/r_wall, -/area/turret_protected/tcomfoyer) -"lrx" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/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/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"lrH" = ( -/obj/item/modular_computer/console/preset/security, -/turf/simulated/floor/wood, -/area/security/bridge_surface_checkpoint) -"lrW" = ( -/obj/effect/floor_decal/plaque, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"lsn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"lss" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/ringer/north{ - department = "Cargo"; - id = "cargo_ringer"; - req_access = list(31) - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"lsJ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/airless, -/area/turret_protected/tcomsat) -"luj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 2; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "bridge_surface_checkpoint"; - name = "Checkpoint Shutters" - }, -/turf/simulated/floor/plating, -/area/security/bridge_surface_checkpoint) -"luv" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"luF" = ( -/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 - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"luZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"lvi" = ( -/obj/machinery/vending/hydroseeds, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/hydroponics/garden) -"lvm" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"lvK" = ( -/obj/structure/closet/cabinet, -/obj/effect/decal/cleanable/dirt, -/obj/random/booze, -/obj/effect/decal/cleanable/cobweb2, -/obj/machinery/alarm/north, -/obj/random/junk, -/obj/random/junk, -/obj/random/booze, -/obj/item/reagent_containers/food/drinks/bottle{ - icon_state = "beer" - }, -/obj/item/reagent_containers/food/drinks/bottle{ - icon_state = "beer" - }, -/turf/simulated/floor/wood, -/area/store) -"lwH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"lwU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/quartermaster/loading) -"lxI" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"lxZ" = ( -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"lya" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1700; - id_tag = "c_maint_surface_pump" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/maintenance/store) -"lyf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"lyj" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"lyR" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"lzS" = ( -/obj/machinery/door/window/southright{ - name = "Cockpit Access" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"lAh" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"lAJ" = ( -/obj/machinery/telecomms/server/presets/supply, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"lAP" = ( -/turf/simulated/floor/plating, -/area/quartermaster/loading) -"lBd" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - frequency = 1381; - icon_state = "door_locked"; - id_tag = "server_access_outer"; - locked = 1; - name = "Telecoms Server Access"; - req_access = list(61); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"lBg" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"lBr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/store) -"lBF" = ( -/obj/item/stack/flag/red/planted, -/turf/unsimulated/floor/asteroid/ash, -/area/mine/explored) -"lBP" = ( -/turf/simulated/wall/shuttle/unique/escape_pod{ - icon_state = "0,2" - }, -/area/shuttle/escape_pod/pod1) -"lCa" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/bed/stool/chair/office/bridge{ - desc = "A seat for a lifeguard."; - dir = 8; - name = "lifeguard chair" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness/pool) -"lCI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"lCX" = ( -/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 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/hallway/secondary/entry/departure_lounge) -"lDn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"lEd" = ( -/turf/simulated/wall/r_wall, -/area/hallway/secondary/entry/central) -"lFe" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/black, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/tcommsat/chamber) -"lFp" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/starboardsolar) -"lFL" = ( -/obj/machinery/door/airlock/glass{ - 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/hallway/secondary/entry/aft) -"lFN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"lGc" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"lGh" = ( -/obj/machinery/porta_turret{ - dir = 10 - }, -/obj/effect/decal/warning_stripes, -/turf/simulated/floor/plating, -/area/tcommsat/entrance) -"lGI" = ( -/obj/machinery/door/firedoor, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"lHG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"lIr" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "centcom_shuttle_dock_airlock"; - pixel_x = 30; - req_one_access = list(13); - tag_airpump = "centcom_shuttle_dock_pump"; - tag_chamber_sensor = "centcom_shuttle_dock_sensor"; - tag_exterior_door = "centcom_shuttle_dock_outer"; - tag_interior_door = "centcom_shuttle_dock_inner" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "centcom_shuttle_dock_sensor"; - pixel_x = -25 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "centcom_shuttle_dock_pump" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Administration Dock"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"lIA" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"lIB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet/east{ - pixel_y = -3 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"lJg" = ( -/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/carpet, -/area/security/vacantoffice) -"lKN" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_dock_center_outer"; - locked = 1; - name = "Escape Airlock"; - req_access = list(13); - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "escape_dock_center_airlock"; - name = "exterior access button"; - pixel_x = 4; - pixel_y = -26; - req_one_access = list(13) - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"lKO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"lKS" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"lKW" = ( -/obj/machinery/door/firedoor, -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/airlock/glass{ - name = "Pool"; - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"lLc" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"lLe" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "seccheckpointoffice"; - name = "Checkpoint Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/checkpoint2) -"lLj" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"lLr" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"lLT" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"lLU" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"lMN" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_dock_center_outer"; - locked = 1; - name = "Escape Airlock"; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"lMS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 8; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"lOa" = ( -/obj/structure/sign/flag/scc{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"lON" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10; - tag = "icon-warning_dust (SOUTHWEST)" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"lPq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"lPW" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"lQs" = ( -/obj/structure/cryofeed{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/sleep/cryo) -"lQQ" = ( -/obj/structure/table/rack, -/obj/effect/decal/cleanable/dirt, -/obj/random/loot, -/turf/simulated/floor/tiled, -/area/store) -"lQV" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/telecoms_ladder) -"lSq" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/item/modular_computer/console/preset/security, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"lTi" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "seccheckpoint1"; - name = "Checkpoint Lockdown"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"lUe" = ( -/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/secondary/entry/central) -"lUn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"lUN" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/solar/port) -"lVb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"lVx" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/starboardsolar) -"lVF" = ( -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"lWb" = ( -/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/fore) -"lWT" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"lXZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_y = 4 - }, -/obj/structure/sign/directions/engineering{ - dir = 4; - pixel_y = -4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/central) -"lYv" = ( -/obj/structure/closet/wardrobe/pjs, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Corridor Camera 13" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"lYR" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/corner/purple/diagonal{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"mam" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Firefighting Equipment"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/storage/primary) -"maw" = ( -/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 - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"mbm" = ( -/obj/structure/curtain/open, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness/changing) -"mbr" = ( -/obj/machinery/door/airlock/maintenance{ - id_tag = "sconferencebolts"; - req_access = list(12); - dir = 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, -/turf/simulated/floor/plating, -/area/sconference_room) -"mbD" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Civilian Surface" - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian_east) -"mcj" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/chips, -/obj/random/single{ - icon = 'icons/obj/drinks.dmi'; - icon_state = "cola"; - name = "randomly spawned cola"; - spawn_nothing_percentage = 50; - spawn_object = /obj/item/reagent_containers/food/drinks/cans/cola - }, -/turf/simulated/floor/carpet, -/area/hallway/secondary/entry/departure_lounge) -"mcK" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"mda" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"mdk" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "4,11"; - name = "survey shuttle" - }, -/area/shuttle/research) -"mdu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/portsolar) -"men" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/grass, -/area/hydroponics/garden) -"mev" = ( -/obj/machinery/power/sensor{ - long_range = 1; - name = "Powernet Sensor - Telecommunications Grid"; - name_tag = "Telecommunications Grid" - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/blue{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"meU" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ - frequency = 1380; - id_tag = "escape_pod_3_berth"; - pixel_x = -25; - pixel_y = 30; - tag_door = "escape_pod_3_berth_hatch" - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"meV" = ( -/turf/simulated/wall, -/area/crew_quarters/toilet) -"mfc" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"mff" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "escape_dock_north_airlock"; - name = "interior access button"; - pixel_x = 30; - pixel_y = -26; - req_one_access = list(13) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"mfW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"mgy" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/solar/port) -"mhy" = ( -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"mhz" = ( -/obj/item/folder/yellow, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/pen/red{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"miA" = ( -/obj/machinery/atm{ - pixel_y = 27 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"mjE" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"mjO" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"mkk" = ( -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/sign/directions/all{ - dir = 1; - pixel_y = -32 - }, -/obj/structure/sign/directions/cryo{ - dir = 4; - pixel_y = -40 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"mkG" = ( -/obj/effect/shuttle_landmark/merc/dock, -/turf/unsimulated/floor/asteroid/ash, -/area/mine/explored) -"mkT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/departure_lounge) -"mld" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"mlq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/machinery/meter{ - pixel_x = -17 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/hallway/secondary/entry/dock) -"mna" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"mnZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/quartermaster/loading) -"mox" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/store) -"moB" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/structure/sign/deathsposal{ - pixel_y = 32 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"mpu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"mpL" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"mpP" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"mqa" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"mqp" = ( -/turf/simulated/wall, -/area/storage/tools) -"mqz" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/hydroponics/garden) -"mrq" = ( -/obj/effect/floor_decal/industrial/warning{ - 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, -/area/storage/tools) -"mrv" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"mrP" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"msi" = ( -/obj/machinery/power/solar{ - id = "aftsolar"; - name = "Aft Solar Array" - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/airless{ - icon_state = "solarpanel" - }, -/area/solar/starboard) -"mtj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"mtn" = ( -/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" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"mtq" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"mtz" = ( -/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/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - req_one_access = list(12,61); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"mtI" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/bed/stool/padded/red, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"muj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/departure_lounge) -"muA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/plating, -/area/bridge/levela/research_dock) -"muV" = ( -/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 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"mvk" = ( -/turf/simulated/wall, -/area/hallway/secondary/entry/port) -"mvA" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"mwb" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "seccheckpoint2"; - name = "Checkpoint Lockdown"; - opacity = 0 - }, -/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/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"mxa" = ( -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/elevator) -"mxQ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/storage/primary) -"mxS" = ( -/obj/structure/table/reinforced, -/obj/item/trash/tastybread, -/obj/machinery/door/firedoor, -/turf/simulated/floor/lino, -/area/tcommsat/lounge) -"myD" = ( -/obj/machinery/atmospherics/unary/freezer{ - icon_state = "freezer_1"; - set_temperature = 73; - use_power = 1 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"myQ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"mzH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"mzS" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"mAA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"mAG" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/open/airless, -/area/turret_protected/tcomsat) -"mBD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"mBU" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-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/secondary/entry/locker) -"mBZ" = ( -/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/plating, -/area/maintenance/bridge_elevator/surface) -"mCF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"mFq" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - dir = 8 - }, -/obj/random/soap, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/westleft, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"mFN" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "arrivals_east_inner"; - locked = 1; - name = "Arrivals Airlock"; - req_access = list(13); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"mGo" = ( -/turf/simulated/wall/shuttle/unique/escape_pod{ - icon_state = "2,0" - }, -/area/shuttle/escape_pod/pod3) -"mGS" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"mGU" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/airless, -/area/turret_protected/tcomsat) -"mHp" = ( -/obj/machinery/light, -/obj/machinery/firealarm/south, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"mHu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/bridge/levela) -"mHv" = ( -/obj/item/cell, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"mIf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"mIp" = ( -/turf/simulated/wall/shuttle/unique/escape_pod{ - icon_state = "2,1" - }, -/area/shuttle/escape_pod/pod3) -"mIG" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hydroponics/garden) -"mII" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/store) -"mIL" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/blue{ - icon_state = "0-4" - }, -/obj/structure/sign/drop{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomfoyer) -"mJd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/bridge/levela) -"mJp" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/shuttle/research) -"mJs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"mKq" = ( -/obj/structure/sign/pods, -/turf/simulated/wall/r_wall, -/area/bridge/levela) -"mKU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"mLu" = ( -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-29" - }, -/obj/machinery/newscaster/south, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"mNu" = ( -/obj/item/modular_computer/console/preset/supply, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"mNv" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/hydroponics/garden) -"mNB" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/maintenance/store) -"mNG" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"mOc" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"mOj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/sleep/bedrooms) -"mOv" = ( -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"mPQ" = ( -/obj/structure/table/wood, -/obj/item/storage/box/drinkingglasses, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/obj/item/reagent_containers/glass/beaker/pitcher{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/simulated/floor/wood, -/area/sconference_room) -"mQv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"mQW" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness/changing) -"mRg" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/solarmaint) -"mRl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"mRo" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/wood, -/area/security/bridge_surface_checkpoint) -"mRI" = ( -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"mSd" = ( -/obj/machinery/camera/network/telecom{ - c_tag = "Telecomms - Port Wing Aft"; - dir = 4 - }, -/turf/simulated/open/airless, -/area/turret_protected/tcomsat) -"mSJ" = ( -/obj/structure/shuttle_part/escape_pod{ - icon_state = "0,3" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/escape_pod/pod1) -"mTM" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/lino, -/area/hallway/secondary/entry/departure_lounge) -"mUa" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"mUb" = ( -/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/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo) -"mUu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "yellow_shuttle_dock_inner"; - locked = 1; - name = "Docking Port Airlock"; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"mUP" = ( -/obj/structure/table/standard, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/analyzer, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"mUR" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_dock_center_inner"; - locked = 1; - name = "Escape Airlock"; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"mVh" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/turf/simulated/floor/beach/water/pool{ - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"mVp" = ( -/obj/machinery/atm{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"mVU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"mVY" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/red, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"mWr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"mXQ" = ( -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"mYu" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"mYV" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/simulated/floor/wood, -/area/security/bridge_surface_checkpoint) -"mZb" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"nai" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - fluorescent = null; - frequency = 1380; - id_tag = "science_bridge_pump" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Surface Research Airlock"; - pixel_x = 22 - }, -/obj/structure/sign/flag/scc{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/bridge/levela/research_dock) -"naj" = ( -/obj/structure/closet/walllocker/emerglocker/west{ - pixel_x = -27; - pixel_y = 3 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/structure/window/reinforced{ - name = "adjusted window" - }, -/obj/structure/bed/stool/chair/office/bridge{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"naZ" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/bluegrid/server, -/area/tcommsat/chamber) -"nbA" = ( -/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/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"ncu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"ncw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"ncF" = ( -/obj/structure/table/rack, -/obj/item/circuitboard/telecomms/processor, -/obj/item/circuitboard/telecomms/processor, -/obj/item/circuitboard/telecomms/receiver, -/obj/item/circuitboard/telecomms/server, -/obj/item/circuitboard/telecomms/server, -/obj/item/circuitboard/telecomms/bus, -/obj/item/circuitboard/telecomms/bus, -/obj/item/circuitboard/telecomms/broadcaster, -/obj/item/circuitboard/telecomms/hub, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"ncU" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/west, -/turf/simulated/floor/tiled, -/area/storage/primary) -"ndc" = ( -/obj/machinery/camera/network/supply{ - c_tag = "Cargo - Auxilliary Entrance"; - dir = 4 - }, -/obj/machinery/vending/zora, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"ndC" = ( -/obj/machinery/newscaster/south, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/turf/simulated/floor/carpet, -/area/security/vacantoffice) -"ndX" = ( -/obj/machinery/vending/cola, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/lino, -/area/hallway/secondary/entry/departure_lounge) -"neq" = ( -/obj/structure/bed/roller, -/obj/structure/closet/walllocker/medical/secure{ - name = "blood closet"; - pixel_x = 30; - pixel_y = -30; - req_access = null - }, -/obj/item/reagent_containers/blood/OMinus, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"nfa" = ( -/turf/simulated/wall, -/area/quartermaster/loading) -"ngh" = ( -/obj/structure/shuttle_part/escape_pod{ - icon_state = "2,3" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/escape_pod/pod1) -"ngC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"nhk" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness/changing) -"nht" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1337; - id_tag = "green_dock_west"; - pixel_y = 29; - req_access = list(13); - tag_airpump = "green_dock_west_pump"; - tag_chamber_sensor = "green_dock_west_sensor"; - tag_exterior_door = "green_dock_west_outer"; - tag_interior_door = "green_dock_west_inner" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1337; - id_tag = "green_dock_west_pump" - }, -/obj/machinery/airlock_sensor{ - frequency = 1337; - id_tag = "green_dock_west_sensor"; - pixel_x = -1; - pixel_y = -25 - }, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"nim" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "science_shuttle_sensor"; - pixel_y = -23 - }, -/turf/simulated/floor/plating, -/area/shuttle/research) -"nje" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/bed/stool/chair/padded/black{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"nki" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA" - }, -/turf/simulated/wall/r_wall, -/area/bridge/levela) -"nlz" = ( -/obj/structure/window/shuttle/unique/research{ - icon_state = "7,15" - }, -/turf/simulated/floor/plating, -/area/shuttle/research) -"nlB" = ( -/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/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Changing Room"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness/changing) -"nlX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Station Shield Control"; - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm/west, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/storage/shields) -"nmb" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"nmu" = ( -/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/secondary/entry/aft) -"nmF" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "arrivals_east_outer"; - locked = 1; - name = "Arrivals Airlock"; - req_access = list(13); - dir = 1 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "arrivals_east"; - name = "exterior access button"; - pixel_x = -30; - pixel_y = 4; - req_one_access = list(13) - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"nmN" = ( -/obj/effect/landmark{ - name = "Revenant" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/mine/explored) -"nnZ" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/solar/fore) -"noP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"nqQ" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"nqR" = ( -/obj/structure/table/reinforced, -/obj/item/trash/tray, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "commissary_counter"; - name = "Shutter" - }, -/turf/simulated/floor/lino, -/area/store) -"nqS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/hallway/secondary/entry/departure_lounge) -"nqU" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/shield_capacitor/multiz{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/storage/shields) -"nrZ" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/full{ - dir = 4 - }, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"nsh" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "8,1"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"nsi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/hatch{ - name = "Telecoms Control Lounge"; - req_access = list(61); - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"nui" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/simulated/floor/plating, -/area/quartermaster/loading) -"nvR" = ( -/obj/structure/table/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/snacks/chips{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/snacks/chips, -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/store) -"nvS" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/solarmaint) -"nwv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"nwC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 8; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "bridge_surface_checkpoint"; - name = "Checkpoint Shutters" - }, -/turf/simulated/floor/plating, -/area/security/bridge_surface_checkpoint) -"nwJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"nwO" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "centcom_shuttle_dock_outer"; - locked = 1; - name = "Docking Port Airlock"; - req_access = list(13); - dir = 1 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "centcom_shuttle_dock_airlock"; - name = "exterior access button"; - pixel_x = 25; - req_one_access = list(13,65) - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"nxu" = ( -/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/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"nxM" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/storage/tools) -"nxU" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"nyd" = ( -/obj/effect/shuttle_landmark/merc_elite/green, -/turf/unsimulated/floor/asteroid/ash, -/area/mine/explored) -"nyp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/portsolar) -"nyH" = ( -/obj/structure/window/shuttle/unique/research{ - icon_state = "5,16"; - outside_window = 1 - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"nzb" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"nAz" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"nAA" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"nAF" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"nBe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"nBO" = ( -/obj/machinery/door/airlock/glass{ - name = "Blue Dock"; - dir = 1 - }, -/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, -/area/hallway/secondary/entry/dock) -"nCv" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/power/apc/west, -/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 = 6 - }, -/turf/simulated/floor/tiled, -/area/storage/tools) -"nCx" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "QMTint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "QMTint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "QMTint" - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/quartermaster/loading) -"nCy" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/locker) -"nCK" = ( -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"nDe" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"nDk" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 4 - }, -/obj/machinery/door/firedoor, -/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/plating, -/area/maintenance/store) -"nDt" = ( -/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" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"nDy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/store) -"nDz" = ( -/turf/simulated/wall/r_wall, -/area/security/vacantoffice) -"nDO" = ( -/obj/machinery/light, -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"nEc" = ( -/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/effect/floor_decal/plaque{ - desc = "Harley O'Ryan Memorial Hall
O'Ryan is memorialized here as the first victim of the Odin Killer. She was always in a good mood. She was brought down before her time.
August 2439 - May 2460" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"nEu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/quartermaster/loading) -"nEA" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/machinery/alarm/east, -/obj/item/gun/energy/mousegun/xenofauna, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"nEI" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"nES" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"nEW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/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/tiled, -/area/hallway/secondary/entry/aft) -"nFg" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "science_shuttle_out"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/shuttle/research) -"nFu" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"nFx" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"nFC" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "seccheckpoint3"; - name = "Checkpoint Lockdown"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"nFS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "science_bridge_in"; - name = "Shuttle Docking Port"; - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/bridge/levela/research_dock) -"nGc" = ( -/turf/unsimulated/floor/asteroid/ash, -/area/solar/fore) -"nGt" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "0,6"; - name = "survey shuttle" - }, -/area/shuttle/research) -"nGX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo) -"nIy" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/hydroponics/garden) -"nJm" = ( -/obj/machinery/alarm/south, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"nKc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"nKU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"nLK" = ( -/obj/structure/closet, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/turret_protected/tcomsat) -"nNO" = ( -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"nOp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"nOr" = ( -/obj/machinery/door/airlock/glass{ - name = "Conference Room Antechamber"; - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/sconference_room) -"nOv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"nOB" = ( -/obj/machinery/airlock_sensor{ - frequency = 1381; - id_tag = "server_access_sensor"; - pixel_x = 12; - pixel_y = 25 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1381; - id_tag = "server_access_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{ - frequency = 1381; - id_tag = "server_access_airlock"; - name = "Server Access Airlock"; - pixel_y = 25; - tag_airpump = "server_access_pump"; - tag_chamber_sensor = "server_access_sensor"; - tag_exterior_door = "server_access_outer"; - tag_exterior_sensor = "server_access_ex_sensor"; - tag_interior_door = "server_access_inner"; - tag_interior_sensor = "server_access_in_sensor"; - tag_secure = 1 - }, -/turf/simulated/floor/plating, -/area/tcommsat/computer) -"nON" = ( -/obj/effect/floor_decal/corner/dark_blue, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"nQq" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southright, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"nQK" = ( -/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/effect/floor_decal/corner/dark_blue/diagonal{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"nQN" = ( -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/grass, -/area/hallway/secondary/entry/fore) -"nRp" = ( -/obj/machinery/shield_gen, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/storage/shields) -"nRV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/storage/shields) -"nSl" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ - frequency = 1380; - id_tag = "escape_pod_2_berth"; - pixel_x = -25; - pixel_y = 30; - tag_door = "escape_pod_2_berth_hatch" - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"nSp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"nSL" = ( -/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/secondary/entry/locker) -"nTn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"nUI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Washroom"; - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"nVK" = ( -/obj/structure/shuttle_part/research{ - density = 0; - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "8,15"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"nWv" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "7,1"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"nWL" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"nXS" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/mime, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/bedrooms) -"nYD" = ( -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"nZj" = ( -/turf/simulated/wall, -/area/hallway/secondary/entry/emergency) -"nZr" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/storage/primary) -"nZK" = ( -/obj/machinery/door/airlock/glass{ - name = "Primary Tool Storage"; - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"obk" = ( -/obj/effect/floor_decal/corner/lime/full, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/closet/emcloset, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface Emergency Services Dock - Port"; - dir = 4; - network = list("Civilian Surface","Emergency Dock") - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"obo" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-20" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"obr" = ( -/obj/structure/bed/stool/padded/red, -/obj/effect/floor_decal/corner/white/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"obF" = ( -/obj/structure/cable, -/obj/machinery/alarm/south, -/obj/machinery/power/apc/east, -/obj/machinery/camera/network/telecom{ - c_tag = "Telecomms - Aft Solar Maintenance"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/portsolar) -"obG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"obJ" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/east, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"ocG" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Arrivals Terminal Incoming"; - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"ocM" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "green_dock_fore_exterior"; - locked = 1; - name = "Emergency Services Dock"; - req_access = list(13); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"ocV" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1700; - master_tag = "c_maint_surface"; - name = "interior access button"; - pixel_x = -27; - pixel_y = -26; - req_one_access = list(13) - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/store) -"ocX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/central) -"ocZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"odh" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"oeo" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/solarmaint) -"ofd" = ( -/turf/simulated/wall/shuttle/unique/escape_pod{ - icon_state = "0,1" - }, -/area/shuttle/escape_pod/pod1) -"ofR" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "4,13"; - name = "survey shuttle" - }, -/area/shuttle/research) -"ogm" = ( -/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 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"ogW" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/turret_protected/tcomsat) -"ohn" = ( -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"ohz" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "4,5"; - name = "survey shuttle" - }, -/area/shuttle/research) -"ohP" = ( -/obj/machinery/camera/network/telecom{ - c_tag = "Telecomms - Lobby Aft"; - dir = 1 - }, -/obj/structure/closet/crate/solar, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"oiK" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "9,8"; - name = "survey shuttle" - }, -/area/shuttle/research) -"oje" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/starboardsolar) -"ojo" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/hydroponics/garden) -"ojP" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"ojT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 10 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"okF" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"okL" = ( -/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/plating, -/area/maintenance/bridge_elevator/surface) -"okQ" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/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/tiled, -/area/storage/shields) -"oma" = ( -/turf/simulated/open, -/area/turbolift/cargo_deliverys) -"omz" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"ont" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"onD" = ( -/obj/structure/table/standard, -/obj/item/stock_parts/subspace/transmitter, -/obj/item/stock_parts/subspace/transmitter, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"onM" = ( -/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{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"ooj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"oos" = ( -/turf/simulated/wall, -/area/store) -"ooG" = ( -/obj/machinery/light/small/emergency, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomfoyer) -"ooR" = ( -/obj/effect/shuttle_landmark/arrival/dock, -/turf/unsimulated/floor/asteroid/ash, -/area/mine/explored) -"ooZ" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_pod_3_hatch"; - locked = 1; - name = "Escape Pod Hatch"; - req_access = list(13); - dir = 1 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod3) -"opG" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/storage/tools) -"opK" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/button/remote/blast_door{ - id = "seccheckpointoffice"; - name = "Checkpoint Lockdown"; - pixel_x = 5; - pixel_y = 32 - }, -/obj/machinery/light_switch{ - pixel_x = -8; - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"oqi" = ( -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Locker Room"; - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"oqn" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "8,2"; - name = "survey shuttle" - }, -/area/shuttle/research) -"oqJ" = ( -/turf/simulated/wall/shuttle/unique/escape_pod{ - icon_state = "0,0" - }, -/area/shuttle/escape_pod/pod3) -"oqU" = ( -/obj/machinery/button/switch/windowtint{ - id = "sconferenceprivacy"; - pixel_y = 26; - req_access = list(66) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/sconference_room) -"oqV" = ( -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/airless{ - icon_state = "solarpanel" - }, -/area/solar/port) -"osT" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"osW" = ( -/turf/simulated/floor/wood, -/area/hydroponics/garden) -"otl" = ( -/turf/simulated/wall/shuttle/unique/escape_pod{ - icon_state = "0,2" - }, -/area/shuttle/escape_pod/pod2) -"otG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"otT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = 8; - pixel_y = -4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/store) -"oug" = ( -/obj/structure/closet, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"oup" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"ouv" = ( -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"owp" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"owW" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/grass, -/area/hydroponics/garden) -"oyz" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "3,4"; - name = "survey shuttle" - }, -/area/shuttle/research) -"oyC" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/solarmaint) -"oBh" = ( -/obj/machinery/door/airlock{ - name = "Unit 3"; - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"oBi" = ( -/turf/simulated/wall, -/area/security/vacantoffice) -"oBr" = ( -/obj/structure/closet/secure_closet/hangar_tech, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/alarm/east, -/obj/machinery/camera/network/supply{ - c_tag = "Cargo - Equipment Storage"; - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"oBC" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"oCK" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "seccheckpoint1"; - name = "Checkpoint Lockdown"; - opacity = 0 - }, -/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/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"oCQ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"oDI" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"oDP" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/bridge/levela/research_dock) -"oDZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/tools) -"oEw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"oEG" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1337; - master_tag = "green_dock_west"; - name = "interior access button"; - pixel_x = -27; - pixel_y = -25; - req_access = list(13) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"oEQ" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass, -/area/hallway/secondary/entry/fore) -"oEV" = ( -/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/bridge_elevator/surface) -"oFj" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"oFC" = ( -/obj/structure/table/wood, -/obj/random/single{ - icon = 'icons/obj/items.dmi'; - icon_state = "lighter-g"; - name = "randomly spawned lighter"; - spawn_nothing_percentage = 50; - spawn_object = /obj/item/flame/lighter - }, -/turf/simulated/floor/carpet, -/area/hallway/secondary/entry/departure_lounge) -"oFP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 8; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "bridge_surface_checkpoint"; - name = "Checkpoint Shutters" - }, -/turf/simulated/floor/plating, -/area/security/bridge_surface_checkpoint) -"oGr" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"oGv" = ( -/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 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"oHb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA" - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"oId" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - name = "EXTERNAL AIRLOCK"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/maintenance/starboardsolar) -"oIA" = ( -/obj/machinery/embedded_controller/radio/docking_port_multi{ - child_names_txt = "Airlock One;Airlock Two"; - child_tags_txt = "arrivals_west;arrivals_east"; - frequency = 1380; - id_tag = "arrival_dock"; - pixel_y = 25 - }, -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"oJm" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"oJW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/store) -"oLx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"oLN" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/airless, -/area/solar/port) -"oLW" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk, -/turf/simulated/open/airless, -/area/turret_protected/tcomsat) -"oMu" = ( -/obj/structure/table/standard, -/obj/effect/decal/cleanable/dirt, -/obj/random/loot, -/turf/simulated/floor/tiled, -/area/store) -"oNp" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10; - tag = "icon-warning_dust (SOUTHWEST)" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"oNJ" = ( -/turf/simulated/floor/plating, -/area/turret_protected/tcomsat) -"oOn" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"oOx" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"oOP" = ( -/obj/structure/weightlifter, -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"oPa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/turret_protected/tcomsat) -"oPv" = ( -/obj/effect/floor_decal/corner/white/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/structure/table/reinforced, -/obj/item/storage/box/drinkingglasses, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"oQc" = ( -/obj/structure/bed/stool/chair/padded/black{ - dir = 8 - }, -/obj/machinery/alarm/south{ - req_one_access = list(24,11,55) - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"oQA" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"oQJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/status_display, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"oQX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/sign/securearea, -/turf/simulated/floor/plating, -/area/storage/shields) -"oRn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Surface Research Dock"; - dir = 8 - }, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"oRz" = ( -/obj/effect/floor_decal/corner/dark_blue/full, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"oSL" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/wood, -/area/security/bridge_surface_checkpoint) -"oSR" = ( -/turf/simulated/floor/airless, -/area/solar/port) -"oTr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/storage/shields) -"oUh" = ( -/obj/machinery/door/airlock/glass{ - name = "Yellow Dock"; - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"oUS" = ( -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"oVd" = ( -/obj/machinery/door/airlock/glass{ - name = "Yellow Dock"; - dir = 4 - }, -/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/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"oVw" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"oVY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"oWw" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass, -/area/bridge/levela) -"oXk" = ( -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"oXN" = ( -/turf/simulated/wall/shuttle/unique/escape_pod{ - icon_state = "2,1" - }, -/area/shuttle/escape_pod/pod2) -"oYx" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"oYJ" = ( -/obj/structure/cable/yellow, -/turf/simulated/floor/airless, -/area/solar/starboard) -"oYT" = ( -/obj/machinery/computer/telecomms/monitor{ - network = "tcommsat" - }, -/obj/item/device/radio/intercom/east{ - name = "General Listening Channel" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"oZt" = ( -/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/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"oZC" = ( -/obj/machinery/vending/cola, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"pav" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"paA" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/light/small/emergency, -/obj/random/junk, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"paK" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/turret_protected/tcomsat) -"paO" = ( -/obj/machinery/meter{ - name = "Air supply" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"paZ" = ( -/obj/item/reagent_containers/food/snacks/meat/syntiflesh{ - name = "Cuban Pete-Meat" - }, -/turf/simulated/floor/plating, -/area/tcommsat/computer) -"pbx" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-28" - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"pbO" = ( -/obj/structure/bed/stool/chair/padded/beige, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/hallway/secondary/entry/departure_lounge) -"pcf" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "centcom_shuttle_dock_airlock"; - name = "interior access button"; - pixel_x = -25; - pixel_y = -25; - req_access = list(13) - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"pcu" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"pcC" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ - frequency = 1380; - id_tag = "escape_pod_2"; - pixel_x = -25; - tag_door = "escape_pod_2_hatch" - }, -/obj/effect/shuttle_landmark/escape_pod/start/pod2, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod2) -"pcH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"pcJ" = ( -/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/crew_quarters/fitness) -"pea" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"pfE" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - 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, -/area/tcommsat/computer) -"pgc" = ( -/obj/structure/table/standard, -/obj/item/coin/silver{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/coin/silver, -/obj/item/device/eftpos{ - eftpos_name = "Quartermaster EFTPOS scanner" - }, -/obj/item/device/gps/mining, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"pgs" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"pgD" = ( -/obj/effect/shuttle_landmark/merc_elite/yellow, -/turf/unsimulated/floor/asteroid/ash, -/area/mine/explored) -"pgW" = ( -/turf/simulated/floor/beach/water/pool{ - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"phf" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"phP" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/open/airless, -/area/turret_protected/tcomsat) -"pij" = ( -/obj/machinery/door/airlock{ - id_tag = "surf_unit_1"; - name = "Unit 2"; - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"pjD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2, -/obj/machinery/button/remote/blast_door{ - id = "commissary_entry"; - name = "Entrance Shutters"; - pixel_x = 26; - pixel_y = 5 - }, -/obj/machinery/button/remote/blast_door{ - id = "commissary_counter"; - name = "Counter Shutters"; - pixel_x = 26; - pixel_y = -7 - }, -/turf/simulated/floor/lino, -/area/store) -"pjI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/plating, -/area/maintenance/starboardsolar) -"pjR" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"pkd" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/solarmaint) -"pkw" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"plj" = ( -/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/camera/network/civilian_surface{ - c_tag = "Surface - Corridor Camera 10"; - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"pmu" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"pmw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/hatch{ - name = "Telecoms Satellite"; - req_access = list(61); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"pmZ" = ( -/obj/effect/floor_decal/corner/white/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"pnd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"pne" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"pnm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"pnn" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"poZ" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"pqk" = ( -/obj/structure/closet/cabinet, -/obj/effect/decal/cleanable/dirt, -/obj/random/random_flag, -/obj/random/random_flag, -/obj/random/random_flag, -/obj/random/random_flag, -/obj/random/random_flag, -/obj/random/random_flag, -/turf/simulated/floor/wood, -/area/store) -"pqL" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/airless, -/area/turret_protected/tcomsat) -"prd" = ( -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Conference Room" - }, -/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/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/wood, -/area/sconference_room) -"prz" = ( -/obj/machinery/telecomms/server/presets/medical, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"psa" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/bed/stool/chair/padded/teal{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"psA" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/turret_protected/tcomsat) -"psF" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"psJ" = ( -/turf/simulated/wall, -/area/hallway/secondary/entry/locker) -"psV" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"ptI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"puz" = ( -/obj/effect/shuttle_landmark/supply/dock, -/turf/simulated/floor/airless/ceiling, -/area/mine/explored) -"pvp" = ( -/obj/structure/bed/stool/chair, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"pvr" = ( -/obj/structure/table/standard, -/obj/item/folder/yellow, -/obj/item/folder/red, -/obj/item/folder/blue, -/obj/machinery/firealarm/north, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/sconference_room) -"pvN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/solarmaint) -"pvR" = ( -/obj/machinery/camera/network/supply{ - c_tag = "Cargo - Loading Bay 1"; - dir = 8 - }, -/obj/machinery/firealarm/east, -/obj/effect/floor_decal/corner/brown, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"pxL" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"pxM" = ( -/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/plasticflaps/airtight, -/obj/machinery/door/airlock/glass{ - name = "Pool"; - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"pxQ" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/southleft, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/store) -"pyz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"pyF" = ( -/turf/simulated/open, -/area/turbolift/command_station) -"pyR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/binary/pump/on{ - dir = 1; - target_pressure = 200 - }, -/turf/simulated/floor/plating, -/area/maintenance/foresolar) -"pzp" = ( -/obj/machinery/hologram/holopad, -/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/carpet, -/area/security/vacantoffice) -"pzH" = ( -/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/secondary/entry/aft) -"pzL" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"pzO" = ( -/obj/effect/floor_decal/corner/dark_blue{ - 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{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"pAH" = ( -/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) -"pAL" = ( -/obj/machinery/light, -/obj/structure/extinguisher_cabinet/south, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"pBu" = ( -/turf/simulated/wall, -/area/sconference_room) -"pBF" = ( -/obj/structure/cryofeed, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/sleep/cryo) -"pBG" = ( -/obj/effect/shuttle_landmark/research/yellow, -/turf/unsimulated/chasm_mask, -/area/mine/explored) -"pBM" = ( -/obj/machinery/cryopod, -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo) -"pBR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 8; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"pCx" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/shieldgen, -/turf/simulated/floor/plating, -/area/storage/tools) -"pDh" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"pDk" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/beach/water/pool{ - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"pDq" = ( -/turf/simulated/wall/shuttle/unique/escape_pod{ - icon_state = "2,1" - }, -/area/shuttle/escape_pod/pod1) -"pDs" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"pDu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "green_dock_aft_interior"; - locked = 1; - name = "Emergency Services Dock"; - req_access = list(13); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"pDN" = ( -/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/effect/floor_decal/corner/white{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"pDO" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"pDV" = ( -/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 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"pEm" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/southleft, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/store) -"pEr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/carpet, -/area/sconference_room) -"pEM" = ( -/obj/machinery/power/tracker, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/solar/fore) -"pFr" = ( -/obj/item/inflatable_duck, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"pFW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 2; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "bridge_surface_checkpoint"; - name = "Checkpoint Shutters" - }, -/turf/simulated/floor/plating, -/area/security/bridge_surface_checkpoint) -"pGM" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"pHg" = ( -/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/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"pIc" = ( -/obj/machinery/computer/shuttle_control/multi/research, -/turf/simulated/floor/shuttle/black, -/area/shuttle/research) -"pIj" = ( -/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, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/landmark/start{ - name = "Cargo Technician" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"pIu" = ( -/obj/machinery/alarm/west, -/obj/machinery/camera/network/telecom{ - c_tag = "Telecoms - Aft Solar Maintenance"; - dir = 4 - }, -/obj/item/stack/cable_coil/yellow{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/cable_coil/yellow, -/turf/simulated/floor/plating, -/area/maintenance/starboardsolar) -"pJj" = ( -/obj/item/storage/secure/safe{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/store) -"pJm" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1337; - id_tag = "green_dock_fore_pump" - }, -/obj/machinery/airlock_sensor{ - frequency = 1337; - id_tag = "green_dock_fore_sensor"; - pixel_x = -28 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"pJG" = ( -/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 - }, -/turf/simulated/floor/bluegrid/server, -/area/tcommsat/chamber) -"pKM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/foresolar) -"pKY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Showers"; - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"pLb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"pLi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "seccheckpointoffice"; - name = "Checkpoint Lockdown"; - opacity = 0 - }, -/obj/structure/table/reinforced, -/obj/item/pen, -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Arrivals Processing Desk" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"pLs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"pLN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"pMe" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/ramp{ - dir = 1 - }, -/area/hallway/secondary/entry/stairs) -"pMi" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters/open{ - id = "bridge_surface_checkpoint"; - name = "Checkpoint Shutters" - }, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/wood, -/area/security/bridge_surface_checkpoint) -"pMF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "distress_shuttle_dock_inner"; - locked = 1; - name = "Docking Port Airlock"; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"pMI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"pNf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"pNi" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/maintenance/solarmaint) -"pNt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/door/window/brigdoor/northleft{ - name = "Security Lobby" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"pNz" = ( -/obj/structure/cryofeed{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/sleep/cryo) -"pNA" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/solarmaint) -"pNH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"pOj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"pOV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"pPO" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/store) -"pQW" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hydroponics/garden) -"pRb" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_pod_2_berth_hatch"; - locked = 1; - name = "Escape Pod"; - req_access = list(13); - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/bridge/levela) -"pRp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/store) -"pSh" = ( -/obj/structure/bed/stool/chair/office/bridge/pilot, -/turf/simulated/floor/shuttle/black, -/area/shuttle/research) -"pSG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/appliance/cooker/grill, -/turf/simulated/floor/lino, -/area/tcommsat/lounge) -"pSJ" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"pTn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/quartermaster/loading) -"pTq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/central) -"pUo" = ( -/obj/item/reagent_containers/food/snacks/meat/syntiflesh{ - name = "Cuban Pete-Meat" - }, -/obj/item/spacecash/c1, -/turf/simulated/floor/plating, -/area/tcommsat/computer) -"pUq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/sconference_room) -"pUv" = ( -/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/maintenance/bridge_elevator/surface) -"pUA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Commissary Maintenance"; - req_access = list(12); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/store) -"pVe" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"pVf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"pVh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"pVi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "green_dock_fore_interior"; - locked = 1; - name = "Emergency Services Dock"; - req_access = list(13); - dir = 1 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1337; - master_tag = "green_dock_fore_airlock"; - name = "interior access button"; - pixel_x = 26; - pixel_y = 7; - req_access = list(13) - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"pVr" = ( -/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) -"pXe" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/window/reinforced{ - name = "adjusted reinforced window" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"pXI" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "11,1"; - name = "survey shuttle" - }, -/area/shuttle/research) -"pXM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"pYN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/machinery/camera/network/telecom{ - c_tag = "Telecomms - Power Room Port" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"pZc" = ( -/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/machinery/atmospherics/pipe/manifold4w/visible, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"pZN" = ( -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "arrivals_east_sensor"; - pixel_x = 30 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"pZP" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"qbP" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"qcm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - id = "office_shutter"; - name = "Office Shutters" - }, -/turf/simulated/floor/plating, -/area/security/vacantoffice) -"qcX" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "10,7"; - name = "survey shuttle" - }, -/area/shuttle/research) -"qdd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"qdj" = ( -/obj/effect/shuttle_landmark/merc/surface, -/turf/unsimulated/chasm_mask, -/area/mine/explored) -"qdM" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "solar_tool_outer"; - locked = 1; - name = "Engineering External Access"; - req_access = null; - req_one_access = list(10,11,13); - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/foresolar) -"qdW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"qgk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"qgn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"qhi" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "1,1"; - name = "survey shuttle" - }, -/area/shuttle/research) -"qhQ" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "solar_tool_airlock"; - name = "exterior access button"; - pixel_x = -25; - pixel_y = -25; - req_access = null; - req_one_access = list(10,11,13) - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/solar/fore) -"qhV" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/starboardsolar) -"qic" = ( -/obj/machinery/alarm/east, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"qjG" = ( -/obj/item/device/radio/intercom/west, -/obj/structure/table/reinforced, -/obj/item/stack/material/plasteel{ - amount = 50 - }, -/obj/random/tech_supply, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"qkj" = ( -/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/secondary/entry/central) -"qkC" = ( -/obj/structure/ladder{ - pixel_y = 16 - }, -/turf/simulated/open, -/area/maintenance/elevator) -"qmj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"qml" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1379; - id_tag = "solar_tool_pump" - }, -/obj/machinery/airlock_sensor{ - id_tag = "solar_tool_sensor"; - pixel_x = 25; - pixel_y = 12 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "solar_tool_airlock"; - pixel_x = 25; - req_access = list(13); - tag_airpump = "solar_tool_pump"; - tag_chamber_sensor = "solar_tool_sensor"; - tag_exterior_door = "solar_tool_outer"; - tag_interior_door = "solar_tool_inner" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/warning_stripes, -/turf/simulated/floor/plating, -/area/maintenance/foresolar) -"qmt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 8; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "bridge_surface_checkpoint"; - name = "Checkpoint Shutters" - }, -/turf/simulated/floor/plating, -/area/security/bridge_surface_checkpoint) -"qnc" = ( -/turf/simulated/wall/shuttle/unique/escape_pod{ - icon_state = "0,1" - }, -/area/shuttle/escape_pod/pod2) -"qnh" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "QMTint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "QMTint" - }, -/obj/structure/window/reinforced/polarized{ - id = "QMTint" - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/quartermaster/loading) -"qnj" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "green_dock_aft_exterior"; - locked = 1; - name = "Emergency Services Dock"; - req_access = list(13); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"qnl" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - id = "sconferenceprivacy" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "sconferenceprivacy" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "sconferenceprivacy" - }, -/turf/simulated/floor/plating, -/area/sconference_room) -"qnH" = ( -/turf/simulated/wall, -/area/hydroponics/garden) -"qnZ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"qoy" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"qqJ" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/bed/stool/chair/sofa/left/brown, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"qqM" = ( -/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 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"qrd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"qrD" = ( -/obj/structure/table/rack, -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/haircomb{ - pixel_y = 8 - }, -/obj/item/haircomb, -/turf/simulated/floor/plating, -/area/store) -"qsZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"qtL" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Telecoms Storage"; - req_access = list(61); - 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, -/area/turret_protected/tcomsat) -"qvg" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"qvh" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/quartermaster/loading) -"qvG" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"qvZ" = ( -/obj/structure/table/standard, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"qwe" = ( -/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/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"qwm" = ( -/obj/item/clipboard, -/obj/item/stamp{ - name = "Quartermaster's stamp" - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"qwB" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/grass, -/area/hallway/secondary/entry/fore) -"qxm" = ( -/obj/structure/table/standard, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/device/radio/intercom/east, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"qxT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/bridge/levela) -"qyh" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ - frequency = 1380; - id_tag = "escape_dock_center_airlock"; - master_tag = "escape_dock"; - pixel_y = 30; - req_one_access = list(13); - tag_airpump = "escape_dock_center_pump"; - tag_chamber_sensor = "escape_dock_center_sensor"; - tag_exterior_door = "escape_dock_center_outer"; - tag_interior_door = "escape_dock_center_inner" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"qyk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/tcommsat/chamber) -"qys" = ( -/turf/simulated/wall/r_wall, -/area/tcommsat/chamber) -"qyQ" = ( -/obj/structure/bed/stool/chair/padded/beige, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Waiting Room"; - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/hallway/secondary/entry/departure_lounge) -"qzS" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"qAC" = ( -/obj/structure/lattice, -/obj/structure/cable/green{ - d1 = 8; - icon_state = "11-8" - }, -/turf/simulated/open, -/area/maintenance/substation/civilian_east) -"qCa" = ( -/obj/structure/closet/walllocker/firecloset{ - pixel_x = -32 - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"qCY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"qDg" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"qDT" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/structure/sign/drop{ - pixel_x = 32 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"qDX" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "9,5"; - name = "survey shuttle" - }, -/area/shuttle/research) -"qEB" = ( -/obj/effect/floor_decal/corner/yellow/full, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"qEC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"qFy" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/machinery/firealarm/west, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"qFz" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"qFW" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/door/window/eastright{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"qGz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"qHu" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"qJm" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"qJt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"qJW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/turf/simulated/floor/bluegrid/server, -/area/tcommsat/chamber) -"qJZ" = ( -/obj/effect/floor_decal/corner/white/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"qKe" = ( -/obj/effect/shuttle_landmark/legion/merchant, -/turf/unsimulated/floor/asteroid/ash, -/area/mine/explored) -"qLs" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"qMl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/device/radio/intercom/east, -/obj/effect/floor_decal/corner/red, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"qMP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/tcommsat/lounge) -"qND" = ( -/obj/structure/table/wood, -/obj/item/pen{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/simulated/floor/carpet, -/area/sconference_room) -"qOB" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"qPz" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/remote/blast_door{ - id = "seccheckpoint1"; - name = "Portside Arrivals Processing"; - pixel_x = -5; - pixel_y = -2 - }, -/obj/machinery/button/remote/blast_door{ - id = "seccheckpoint2"; - name = "Portside Departures Processing"; - pixel_x = 5; - pixel_y = -2 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/device/binoculars, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"qQO" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"qRu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"qRA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm/east, -/turf/simulated/floor/plating, -/area/maintenance/store) -"qRF" = ( -/obj/structure/cable/blue{ - 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, -/area/turret_protected/tcomsat) -"qSs" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "8,0"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"qSE" = ( -/obj/machinery/airlock_sensor/airlock_interior{ - frequency = 1381; - id_tag = "server_access_in_sensor"; - master_tag = "server_access_airlock"; - name = "interior sensor"; - pixel_x = 8; - pixel_y = 25 - }, -/turf/simulated/floor/bluegrid/server, -/area/tcommsat/chamber) -"qTD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/store) -"qUk" = ( -/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/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/store) -"qUJ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Arrivals Terminal Outgoing"; - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"qUV" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"qUZ" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/alarm/west, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/tiled, -/area/storage/primary) -"qVt" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple/diagonal{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"qVV" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/airless, -/area/solar/port) -"qWO" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - 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/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"qXM" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "brig_solar_inner"; - locked = 1; - name = "Engineering External Access"; - req_access = null; - req_one_access = list(10,11,13); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/portsolar) -"qXX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = 8 - }, -/turf/simulated/floor/carpet, -/area/store) -"qYm" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"qYD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/obj/structure/closet/crate/trashcart, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/store) -"qYE" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/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 = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"qZX" = ( -/obj/machinery/power/terminal, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/foresolar) -"qZY" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 8 - }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = 36 - }, -/obj/structure/sign/directions/all{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"ras" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/random/pottedplant, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"rby" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/westright, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"rbB" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "3,11"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"rce" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/machinery/alarm/south, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"rch" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"rcl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"rcD" = ( -/obj/effect/shuttle_landmark/distress/green, -/turf/unsimulated/floor/asteroid/ash, -/area/mine/explored) -"rcF" = ( -/obj/machinery/camera/network/telecom{ - c_tag = "Telecomms - Starboard Wing Aft"; - dir = 8 - }, -/turf/simulated/open/airless, -/area/turret_protected/tcomsat) -"rcN" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hydroponics/garden) -"res" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"ret" = ( -/turf/simulated/floor/lino, -/area/store) -"rfa" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"rfr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/bridge/levela) -"rfK" = ( -/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 - }, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/corner/dark_blue/diagonal{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"rgk" = ( -/obj/machinery/door/airlock/external{ - frequency = 1399; - icon_state = "door_locked"; - id_tag = "green_dock_north_outer"; - locked = 1; - name = "Emergency Services Dock"; - req_access = list(13); - dir = 1 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1399; - master_tag = "green_dock_north"; - name = "exterior access button"; - pixel_x = -27; - pixel_y = 7; - req_access = list(13) - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"rgv" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1337; - id_tag = "green_dock_aft_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ - frequency = 1337; - id_tag = "green_dock_aft_airlock"; - master_tag = "legion_shuttle_dock"; - pixel_x = 28; - tag_airpump = "green_dock_aft_pump"; - tag_chamber_sensor = "green_dock_aft_sensor"; - tag_exterior_door = "green_dock_aft_exterior"; - tag_interior_door = "green_dock_aft_interior" - }, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Emergency Services Dock - Aft"; - dir = 8; - network = list("Civilian Surface","Emergency Dock") - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"rhy" = ( -/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/glass{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"rhI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"rhN" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/solar_control{ - id = "auxsolarnorth"; - name = "Fore Solar Control" - }, -/turf/simulated/floor/plating, -/area/maintenance/foresolar) -"rhT" = ( -/obj/structure/bed/stool/chair, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"ria" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "0,4"; - name = "survey shuttle" - }, -/area/shuttle/research) -"riQ" = ( -/obj/structure/sign/double/map/right{ - pixel_y = 30 - }, -/obj/structure/sign/double/map/left{ - pixel_x = -32; - pixel_y = 30 - }, -/turf/simulated/floor/wood, -/area/security/bridge_surface_checkpoint) -"rjc" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/blue{ - d1 = 16; - d2 = 0; - icon_state = "12-0" - }, -/obj/structure/lattice/catwalk, -/turf/simulated/open/airless, -/area/turret_protected/tcomsat) -"rjd" = ( -/obj/structure/filingcabinet, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"rjP" = ( -/obj/machinery/computer/arcade, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"rkq" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Warehouse Maintenance"; - req_access = list(31); - dir = 1 - }, -/obj/machinery/door/firedoor, -/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/plating, -/area/quartermaster/loading) -"rks" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/telecom{ - c_tag = "Telecomms - Lounge"; - dir = 8 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/east, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"rkF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"rkM" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "1,8"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"rld" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/embedded_controller/radio/docking_port_multi{ - child_names_txt = "Airlock Fore;Airlock Aft"; - child_tags_txt = "green_dock_fore_airlock;green_dock_aft_airlock"; - frequency = 1337; - id_tag = "legion_shuttle_dock"; - name = "Emergency Dock Controller"; - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"rlA" = ( -/obj/structure/table/steel, -/obj/item/storage/box/fancy/crayons/chalkbox, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Auxillary Tool Storage"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/tools) -"rmA" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "1,7"; - name = "survey shuttle" - }, -/area/shuttle/research) -"rnl" = ( -/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/dark, -/area/crew_quarters/fitness/changing) -"rnJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hydroponics/garden) -"roz" = ( -/obj/machinery/light{ - name = "adjusted light fixture"; - pixel_x = -16; - icon_state = "tube_empty" - }, -/obj/structure/table/standard, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -6; - pixel_y = 12 - }, -/obj/item/storage/box/gloves{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/item/reagent_containers/glass/bottle/inaprovaline{ - pixel_x = 4; - pixel_y = 11 - }, -/obj/item/reagent_containers/syringe{ - pixel_x = 2; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"rpG" = ( -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomfoyer) -"rqf" = ( -/obj/machinery/smartfridge/drying_rack, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Public Garden" - }, -/turf/simulated/floor/grass, -/area/hydroponics/garden) -"rqJ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/hydroponics/garden) -"rqW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - name = "Civilian (Surface Level) Substation"; - req_one_access = list(11,24); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian_east) -"rrz" = ( -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"rsD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/maintenance/solarmaint) -"rtl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/tools) -"rtQ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"rtX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"rut" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/camera/network/telecom{ - c_tag = "Telecomms - Port Wing Fore" - }, -/turf/simulated/open/airless, -/area/turret_protected/tcomsat) -"ruO" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ - frequency = 1380; - id_tag = "arrivals_west"; - master_tag = "arrival_dock"; - pixel_x = -30; - req_one_access = list(13); - tag_airpump = "arrivals_west_pump"; - tag_chamber_sensor = "arrivals_west_sensor"; - tag_exterior_door = "arrivals_west_outer"; - tag_interior_door = "arrivals_west_inner" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1380; - id_tag = "arrivals_west_pump" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"ruP" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"rvd" = ( -/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/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"rvB" = ( -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface Emergency Dock - Entrance"; - network = list("Civilian Surface","Emergency Dock") - }, -/obj/structure/bed/stool/chair, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/newscaster/north, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"rvJ" = ( -/obj/structure/bed/stool/chair/sofa/brown, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"rwl" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"rwx" = ( -/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/external{ - frequency = 1700; - icon_state = "door_locked"; - id_tag = "c_maint_surface_outer"; - locked = 1; - name = "External Airlock Exterior"; - req_access = list(13); - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/store) -"rwJ" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"rxg" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "ert_shuttle_dock_airlock"; - name = "interior access button"; - pixel_x = 2; - pixel_y = 25; - req_access = list(13) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"rxh" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass, -/area/bridge/levela) -"rxm" = ( -/obj/machinery/atm{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"rxK" = ( -/obj/machinery/door/airlock/glass_mining{ - id_tag = "cargodoor"; - name = "Cargo Bay"; - req_access = null; - req_one_access = list(31,48); - dir = 4 - }, -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"ryF" = ( -/obj/machinery/hologram/holopad, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"rzg" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/lino, -/area/hallway/secondary/entry/departure_lounge) -"rzm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Fitness Center"; - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/fitness) -"rzo" = ( -/turf/simulated/wall/shuttle/unique/escape_pod{ - icon_state = "2,2" - }, -/area/shuttle/escape_pod/pod1) -"rzw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"rBU" = ( -/obj/structure/filingcabinet, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"rCg" = ( -/obj/structure/toilet{ - dir = 4; - pixel_y = 5 - }, -/obj/machinery/button/remote/airlock{ - id = "surf_unit_1"; - name = "Door Bolt Control"; - pixel_x = 10; - pixel_y = -24; - req_access = null; - specialfunctions = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"rCo" = ( -/obj/vehicle/train/cargo/trolley, -/obj/machinery/requests_console/north{ - department = "Cargo Bay"; - departmentType = 2 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"rCp" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/airless, -/area/solar/port) -"rCG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet, -/area/crew_quarters/sleep/bedrooms) -"rDw" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/solar/fore) -"rDM" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "specops_dock_airlock"; - pixel_y = 30; - req_one_access = list(13); - tag_airpump = "specops_dock_airlock_airpump"; - tag_chamber_sensor = "specops_dock_airlock_sensor"; - tag_exterior_door = "specops_dock_airlock_outer"; - tag_interior_door = "specops_dock_airlock_inner" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "specops_dock_airlock_sensor"; - pixel_y = -25 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "specops_dock_airlock_airpump" - }, -/obj/machinery/light/small, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Fleet Security Dock"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"rEy" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/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/airless, -/area/solar/port) -"rEJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"rFo" = ( -/obj/structure/bed/stool/chair/padded/beige{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/carpet, -/area/hallway/secondary/entry/departure_lounge) -"rGp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"rHb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "office_shutter"; - name = "Office Shutters" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/security/vacantoffice) -"rHD" = ( -/obj/structure/sign/directions/all{ - dir = 8; - pixel_y = 36 - }, -/obj/structure/sign/directions/evac{ - pixel_y = 26 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"rIe" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/grass, -/area/hydroponics/garden) -"rIn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"rIK" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"rIO" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "6,1"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"rIU" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hydroponics/garden) -"rJg" = ( -/obj/structure/window/shuttle/unique/research{ - icon_state = "6,16" - }, -/turf/simulated/floor/plating, -/area/shuttle/research) -"rJt" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southleft, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/hallway/secondary/entry/dock) -"rJN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/effect/floor_decal/industrial/warning/cee, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"rKf" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"rKq" = ( -/obj/machinery/computer/telecomms/server{ - network = "tcommsat" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"rKL" = ( -/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/tiled, -/area/hallway/secondary/entry/central) -"rKY" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "centcom_shuttle_dock_inner"; - locked = 1; - name = "Docking Port Airlock"; - req_access = list(13); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/plating, -/area/bridge/levela) -"rLe" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"rLC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"rMt" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "2,1"; - name = "survey shuttle" - }, -/area/shuttle/research) -"rME" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled, -/area/storage/primary) -"rNy" = ( -/obj/machinery/camera/network/telecom{ - c_tag = "Telecomms - Power Room Starboard" - }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"rNJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"rNO" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/pen{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/simulated/floor/carpet, -/area/sconference_room) -"rOy" = ( -/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, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"rOY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/status_display/arrivals_display{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"rQL" = ( -/obj/structure/closet, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/device/quikpay, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"rRi" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/storage/tools) -"rRj" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/material/minihoe, -/obj/item/material/minihoe, -/obj/item/material/minihoe, -/obj/item/material/hatchet, -/obj/item/material/hatchet, -/obj/item/material/hatchet, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/obj/random/seed, -/obj/random/seed, -/obj/random/seed, -/obj/item/wirecutters/clippers, -/obj/item/wirecutters/clippers, -/obj/item/wirecutters/clippers, -/turf/simulated/floor/grass, -/area/hydroponics/garden) -"rRm" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "5,0"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"rRR" = ( -/obj/machinery/alarm/west, -/obj/structure/closet, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"rRV" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"rRW" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo) -"rSo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/store) -"rTT" = ( -/obj/structure/bed/stool/chair/sofa/right/brown, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"rTY" = ( -/obj/effect/floor_decal/corner/white/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/washing_machine, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"rUQ" = ( -/obj/structure/reagent_dispensers/extinguisher, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"rVc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface Emergency Services Dock - Starboard"; - dir = 4; - network = list("Civilian Surface","Emergency Dock"); - pixel_y = 8 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"rVF" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/turret_protected/tcomsat) -"rVP" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"rWD" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/effect/decal{ - anchored = 1; - desc = "Slippery when wet."; - icon = 'icons/obj/structures.dmi'; - icon_state = "ladderdown"; - name = "Pool ladder"; - pixel_y = 14 - }, -/turf/simulated/floor/beach/water/pool{ - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"rWH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"rWT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"rXh" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1700; - id_tag = "tcoms_airlock_pump" - }, -/obj/machinery/light/small/emergency, -/obj/machinery/airlock_sensor{ - frequency = 1700; - id_tag = "tcoms_airlock_sensor"; - pixel_y = -25 - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"rXp" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/structure/cable/green, -/obj/machinery/power/apc/south, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"rYN" = ( -/turf/simulated/mineral/surface, -/area/mine/unexplored) -"rZH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/hydroponics/garden) -"rZN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - 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/bridge/levela) -"saz" = ( -/turf/simulated/wall/shuttle/unique/escape_pod{ - icon_state = "2,0" - }, -/area/shuttle/escape_pod/pod2) -"sbS" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"scq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomfoyer) -"scy" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"scF" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/item/device/radio/intercom/east, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/closet/emcloset, -/obj/item/storage/toolbox/emergency, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo) -"seu" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/security/bridge_surface_checkpoint) -"sfb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"sgc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/storage/shields) -"sgi" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"sgO" = ( -/obj/item/stack/cable_coil/yellow{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/cable_coil/yellow, -/obj/machinery/alarm/west, -/turf/simulated/floor/plating, -/area/maintenance/foresolar) -"shb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/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, -/area/hallway/secondary/entry/fore) -"shs" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"shF" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"shI" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "9,13"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"shV" = ( -/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/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled, -/area/maintenance/store) -"shY" = ( -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"sil" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/hydroponics/garden) -"siP" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "surface_starboard"; - name = "exterior access button"; - pixel_x = -27; - pixel_y = 7; - req_access = list(13) - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"sjb" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"sjB" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - name = "Distro to Canisters"; - target_pressure = 150 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"skC" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/airless, -/area/solar/port) -"skS" = ( -/obj/machinery/vending/coffee, -/obj/machinery/alarm/north, -/turf/simulated/floor/lino, -/area/hallway/secondary/entry/departure_lounge) -"sli" = ( -/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/ramp{ - dir = 8 - }, -/area/quartermaster/loading) -"slj" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/airless, -/area/solar/fore) -"slz" = ( -/obj/machinery/hologram/holopad, -/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, -/area/storage/shields) -"slB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"slQ" = ( -/obj/structure/table/standard, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/capacitor, -/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, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"smI" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/item/device/radio/intercom/east, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Pod 1"; - dir = 4 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod1) -"smJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint"; - req_access = list(63); - dir = 4 - }, -/turf/simulated/floor/wood, -/area/security/bridge_surface_checkpoint) -"smP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"smT" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-28" - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"smV" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Red Dock Security"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"soz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/storage/shields) -"spn" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"spP" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/security/vacantoffice) -"spZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"sqm" = ( -/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/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"sqE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/central) -"sqN" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "3,8"; - name = "survey shuttle" - }, -/area/shuttle/research) -"ssB" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-30" - }, -/obj/machinery/firealarm/north, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Pool Fore"; - pixel_x = -2 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"ssC" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"ssZ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/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/fore) -"stE" = ( -/obj/machinery/newscaster/south, -/obj/random/pottedplant, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"sux" = ( -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"suG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"suI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"suV" = ( -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"swl" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/remote/blast_door{ - id = "seccheckpoint3"; - name = "Starboardside Arrivals Processing"; - pixel_x = -5; - pixel_y = -2 - }, -/obj/machinery/button/remote/blast_door{ - id = "seccheckpoint4"; - name = "Starboardside Departures Processing"; - pixel_x = 5; - pixel_y = -2 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"swy" = ( -/obj/machinery/alarm/north, -/obj/random/pottedplant, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"sxR" = ( -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Fitness Room"; - pixel_x = 18 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"syc" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled, -/area/storage/primary) -"syt" = ( -/obj/random/pottedplant, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"syK" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"szG" = ( -/obj/structure/cable/yellow, -/turf/simulated/floor/airless, -/area/solar/port) -"sBk" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"sBl" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"sCd" = ( -/obj/effect/floor_decal/corner/yellow/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"sCu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"sCG" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/eastleft, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"sCO" = ( -/obj/structure/table/standard, -/obj/item/device/camera, -/obj/item/device/camera_film, -/turf/simulated/floor/tiled, -/area/storage/primary) -"sCT" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/power/terminal, -/obj/structure/cable, -/turf/simulated/floor/tiled, -/area/storage/shields) -"sDJ" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"sFB" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/structure/window/reinforced, -/obj/machinery/door/window/westleft{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"sFK" = ( -/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{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"sFL" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/turf/unsimulated/chasm_mask, -/area/mine/explored) -"sFZ" = ( -/obj/structure/bed/stool/chair, -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"sGh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"sII" = ( -/obj/machinery/power/sensor{ - long_range = 1; - name = "Powernet Sensor - Civilian (Surface Level) Subgrid"; - name_tag = "Civilian (Surface Level) Subgrid" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian_east) -"sJy" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hydroponics/garden) -"sKe" = ( -/obj/machinery/camera/network/supply{ - c_tag = "Cargo - Loading Bay 2"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"sKL" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_dock_north_outer"; - locked = 1; - name = "Escape Airlock"; - req_access = list(13); - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "escape_dock_north_airlock"; - name = "exterior access button"; - pixel_x = 4; - pixel_y = -26; - req_one_access = list(13) - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"sLx" = ( -/obj/machinery/requests_console/north{ - department = "Surface Conference Room"; - departmentType = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/sconference_room) -"sMr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"sMU" = ( -/obj/machinery/cryopod, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo) -"sOb" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/storage/tools) -"sOn" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1700; - id_tag = "c_maint_surface_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1700; - id_tag = "c_maint_surface"; - pixel_y = 29; - tag_airpump = "c_maint_surface_pump"; - tag_chamber_sensor = "c_maint_surface_sensor"; - tag_exterior_door = "c_maint_surface_outer"; - tag_interior_door = "c_maint_surface_inner" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/maintenance/store) -"sOQ" = ( -/obj/structure/shuttle_part/escape_pod{ - icon_state = "0,3" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/escape_pod/pod3) -"sPt" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"sQt" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow, -/obj/item/pen{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/firealarm/west, -/obj/machinery/button/remote/airlock{ - id = "sconferencebolts"; - name = "Privacy Bolts"; - pixel_x = 5; - pixel_y = 32; - req_access = list(19); - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/sconference_room) -"sQv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian_east) -"sRc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/store) -"sRe" = ( -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"sRi" = ( -/obj/machinery/firealarm/north, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"sRO" = ( -/obj/machinery/power/solar_control{ - id = "auxsolarnorth"; - name = "Fore Solar Control" - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/plating, -/area/maintenance/portsolar) -"sRQ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/storage/primary) -"sSz" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/door/window/eastright{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"sSG" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "2,9"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"sTu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/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/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/junction/yjunction, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"sTw" = ( -/obj/machinery/telecomms/receiver/preset_right, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/bluegrid/server, -/area/tcommsat/chamber) -"sTR" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/grass, -/area/hydroponics/garden) -"sUS" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"sVC" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"sVD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"sWb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"sWG" = ( -/obj/effect/floor_decal/industrial/warning{ - 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/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"sWM" = ( -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "escape_dock_center_sensor"; - master_tag = "escape_dock_center_airlock"; - pixel_y = -25 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"sXW" = ( -/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/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"sYu" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/turf/simulated/floor/beach/water/pool{ - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"sYE" = ( -/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/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"sYK" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"sYU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"sZr" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/turf/simulated/floor/lino, -/area/tcommsat/lounge) -"sZs" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"sZQ" = ( -/obj/effect/shuttle_landmark/skipjack/surface, -/turf/unsimulated/floor/asteroid/ash, -/area/mine/explored) -"sZU" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "escape_dock_center_airlock"; - name = "interior access button"; - pixel_x = 30; - pixel_y = -26; - req_one_access = list(13) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"tae" = ( -/turf/simulated/floor/plating, -/area/maintenance/store) -"tan" = ( -/obj/effect/landmark/start{ - name = "Cargo Technician" - }, -/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/effect/floor_decal/corner/brown, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"taE" = ( -/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/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/corner/dark_blue/diagonal{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"taF" = ( -/obj/effect/large_stock_marker, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"tbq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"tbs" = ( -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"tbI" = ( -/obj/structure/reagent_dispensers/extinguisher, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"tcj" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/firealarm/east, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"tcF" = ( -/turf/simulated/floor/plating, -/area/maintenance/elevator) -"ted" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/structure/window/reinforced{ - name = "adjusted reinforced window" - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"teO" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/shaker/spacespice{ - pixel_y = 6 - }, -/obj/item/reagent_containers/food/condiment/shaker/peppermill{ - pixel_x = 2 - }, -/obj/item/reagent_containers/food/condiment/shaker/salt{ - pixel_x = -4 - }, -/turf/simulated/floor/lino, -/area/tcommsat/lounge) -"teP" = ( -/obj/structure/table/wood, -/turf/simulated/floor/carpet, -/area/hallway/secondary/entry/departure_lounge) -"tfj" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "0,7"; - name = "survey shuttle" - }, -/area/shuttle/research) -"tgQ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"tgT" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/beach/water/pool{ - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"tje" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/store) -"tjC" = ( -/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" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"tjU" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_pod_1_hatch"; - locked = 1; - name = "Escape Pod Hatch"; - req_access = list(13); - dir = 1 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod1) -"tkd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"tkY" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"tkZ" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"tld" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/structure/bed/stool/chair, -/obj/effect/floor_decal/corner/grey{ - dir = 4 - }, -/obj/structure/sign/directions/all{ - dir = 1; - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"tlf" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"tlA" = ( -/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/secondary/entry/central) -"tlT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"tmq" = ( -/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/secondary/entry/central) -"tnC" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/obj/random/coin, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"tnG" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/west, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"tnR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"tod" = ( -/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/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"tor" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"tos" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/turret_protected/tcomsat) -"tov" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"toB" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"toD" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"tpM" = ( -/obj/structure/closet/crate/trashcart, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"tpN" = ( -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint"; - req_access = list(63); - dir = 1 - }, -/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, -/area/security/checkpoint2) -"tpO" = ( -/obj/effect/floor_decal/corner/dark_blue/full, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"tqw" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"tqx" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/bed/stool/chair, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"tqO" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "7,5"; - name = "survey shuttle" - }, -/area/shuttle/research) -"tqU" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "seccheckpoint4"; - name = "Checkpoint Lockdown"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"trv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"try" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "2,10"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"trz" = ( -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"trG" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "9,3"; - name = "survey shuttle" - }, -/area/shuttle/research) -"trW" = ( -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Corridor Camera 9"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"tsu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness/changing) -"tsv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/padded, -/obj/item/bedsheet/brown, -/turf/simulated/floor/carpet, -/area/store) -"tsY" = ( -/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{ - dir = 5 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/sleep/bedrooms) -"ttw" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/newscaster/east, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"ttY" = ( -/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/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/solar/fore) -"tue" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = 8 - }, -/obj/machinery/requests_console/east{ - announcementConsole = 1; - department = "Expeditionary Preparation Dock"; - departmentType = 5; - name = "Expedition Dock RC" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"tul" = ( -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"tvY" = ( -/turf/simulated/floor/lino, -/area/hallway/secondary/entry/departure_lounge) -"twe" = ( -/turf/simulated/wall, -/area/hallway/secondary/entry/fore) -"twn" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"txf" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 1 - }, -/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/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"txG" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/turf/simulated/open/airless, -/area/mine/explored) -"txK" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/structure/closet/walllocker/emerglocker/west{ - pixel_x = -29 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"txS" = ( -/obj/effect/floor_decal/corner/white{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"txW" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1700; - id_tag = "c_maint_surface_pump" - }, -/obj/machinery/airlock_sensor{ - frequency = 1700; - id_tag = "c_maint_surface_sensor"; - pixel_y = -25 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/tiled, -/area/maintenance/store) -"tyf" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_dock_north_inner"; - locked = 1; - name = "Escape Airlock"; - req_access = list(13); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"tyn" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"tyT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/bed/stool/chair, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Corridor Camera 12" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"tzo" = ( -/obj/machinery/power/apc/west, -/obj/structure/cable/green, -/obj/effect/floor_decal/corner_wide/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"tAm" = ( -/obj/machinery/vending/cola, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"tAr" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "science_shuttle_out"; - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "science_shuttle"; - name = "exterior access button"; - pixel_x = 5; - pixel_y = -20 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/shuttle/research) -"tAF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"tAY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"tBg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/bridge/levela) -"tBh" = ( -/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/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"tBi" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"tBF" = ( -/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/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access = list(19); - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"tCe" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/bridge/levela) -"tCt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"tCJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/cable/blue{ - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/tcommsat/entrance) -"tDe" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "surface_starboard_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "surface_starboard"; - pixel_y = 29; - tag_airpump = "surface_starboard_pump"; - tag_chamber_sensor = "surface_starboard_sensor"; - tag_exterior_door = "surface_starboard_outer"; - tag_interior_door = "surface_starboard_inner" - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"tDE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"tEz" = ( -/obj/machinery/telecomms/processor/preset_one, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"tEK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "science_bridge"; - pixel_y = 24; - tag_airpump = "science_bridge_pump"; - tag_chamber_sensor = "science_bridge_sensor"; - tag_exterior_door = "science_bridge_out"; - tag_interior_door = "science_bridge_in" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/bridge/levela/research_dock) -"tFq" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"tFN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Elevator Maintenance"; - req_access = list(12); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/elevator) -"tFT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"tHD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/store) -"tIx" = ( -/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/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"tIN" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "solar_aft_airlock"; - name = "interior access button"; - pixel_x = -25; - pixel_y = -25; - req_access = null; - req_one_access = list(10,11,13) - }, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/starboardsolar) -"tJq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"tJt" = ( -/obj/machinery/door/airlock/external{ - frequency = 1337; - icon_state = "door_locked"; - id_tag = "merchant_shuttle_dock_inner"; - locked = 1; - req_access = list(13); - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1337; - master_tag = "merchant_shuttle_dock"; - name = "interior access button"; - pixel_y = 32; - req_access = list(13) - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"tJB" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"tJN" = ( -/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/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"tJP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "seccheckpointoffice"; - name = "Checkpoint Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/checkpoint2) -"tKa" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/obj/machinery/alarm/south, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"tKg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"tKE" = ( -/obj/effect/decal/cleanable/dirt, -/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/universal, -/turf/simulated/floor/plating, -/area/maintenance/foresolar) -"tLI" = ( -/obj/structure/grille, -/turf/simulated/floor/airless, -/area/solar/port) -"tLN" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"tLV" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/network/telecom{ - c_tag = "Telecomms - Central Compartment Fore" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/bluegrid/server, -/area/tcommsat/chamber) -"tMF" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "12,5"; - name = "survey shuttle" - }, -/area/shuttle/research) -"tMI" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/south, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/security/bridge_surface_checkpoint) -"tMN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/chair/padded/beige{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/store) -"tMR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/tcommsat/lounge) -"tMV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"tOG" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 8 - }, -/area/quartermaster/loading) -"tPs" = ( -/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/hallway/secondary/entry/central) -"tPG" = ( -/turf/simulated/mineral, -/area/mine/unexplored) -"tQL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"tRg" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1399; - id_tag = "green_dock_north_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1399; - id_tag = "green_dock_north"; - pixel_x = 25; - pixel_y = 3; - req_access = list(13); - tag_airpump = "green_dock_north_pump"; - tag_chamber_sensor = "green_dock_north_sensor"; - tag_exterior_door = "green_dock_north_outer"; - tag_interior_door = "green_dock_north_inner" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"tRT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/item/device/radio/intercom/north, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"tSg" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/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) -"tSj" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "ert_shuttle_dock_airlock"; - name = "exterior access button"; - pixel_y = -26; - req_one_access = list(13) - }, -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "specops_dock_airlock_outer"; - locked = 1; - name = "Port Docking Hatch"; - req_access = list(13); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"tSy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/store) -"tSZ" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/quartermaster/loading) -"tTQ" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"tUm" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/ntnet_relay, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"tUq" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"tUX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"tVo" = ( -/obj/structure/closet/toolcloset, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/tiled, -/area/storage/tools) -"tVu" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/mime, -/obj/item/device/radio/intercom/west, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/bedrooms) -"tYg" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "science_shuttle_pump" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/shuttle/research) -"tYq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/store) -"tYs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/store) -"tZA" = ( -/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, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"tZL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/west, -/turf/simulated/floor/plating, -/area/store) -"uaq" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/bed/stool/chair, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"uas" = ( -/obj/machinery/light{ - name = "adjusted light fixture"; - pixel_x = 16; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"uaM" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/mine/explored) -"uaW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"ubn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"ubO" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/lime/full, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"ucs" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/embedded_controller/radio/docking_port_multi{ - child_names_txt = "Airlock North; Airlock Main"; - child_tags_txt = "escape_dock_north_airlock;escape_dock_center_airlock"; - frequency = 1380; - id_tag = "escape_dock"; - pixel_x = 28; - req_one_access = list(13) - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"ucA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/plating, -/area/turret_protected/tcomsat) -"udK" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/item/towel, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"udM" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"uea" = ( -/obj/machinery/newscaster/west, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"ueo" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/storage/shields) -"ueM" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"ufS" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/crew_quarters/fitness) -"ugg" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"ugp" = ( -/obj/machinery/light_switch{ - pixel_x = 24; - pixel_y = -8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"ugt" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "7,2"; - name = "survey shuttle" - }, -/area/shuttle/research) -"ugU" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/brflowers{ - pixel_x = 16; - pixel_y = 12 - }, -/turf/simulated/floor/grass, -/area/hallway/secondary/entry/fore) -"uhm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"uhZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"uif" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1337; - id_tag = "command_surface_pump" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"uiy" = ( -/obj/machinery/lapvend, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/storage/primary) -"uiD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"uiJ" = ( -/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/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"ujf" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/bluegrid/server, -/area/tcommsat/chamber) -"ujs" = ( -/obj/structure/cable{ - 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 - }, -/turf/simulated/floor/plating, -/area/maintenance/store) -"ujY" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"uka" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/white/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/structure/bed/stool/padded/red, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "poolcafe"; - name = "Pool Cafe" - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"ulb" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/grass, -/area/hydroponics/garden) -"ulq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "seccheckpointoffice"; - name = "Checkpoint Lockdown"; - opacity = 0 - }, -/obj/structure/table/reinforced, -/obj/item/pen, -/obj/machinery/door/window/brigdoor/eastleft{ - dir = 8; - name = "Arrivals Processing Desk" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"ulL" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"ums" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/security/bridge_surface_checkpoint) -"umF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - id = "office_shutter"; - name = "Office Shutters" - }, -/turf/simulated/floor/plating, -/area/security/vacantoffice) -"une" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Arrivals Terminal Checkpoint"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"uox" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/lino, -/area/hallway/secondary/entry/departure_lounge) -"uoC" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"upp" = ( -/obj/machinery/light/small, -/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ - frequency = 1380; - id_tag = "escape_dock_north_airlock"; - master_tag = "escape_dock"; - pixel_y = 30; - req_one_access = list(13); - tag_airpump = "escape_dock_north_pump"; - tag_chamber_sensor = "escape_dock_north_sensor"; - tag_exterior_door = "escape_dock_north_outer"; - tag_interior_door = "escape_dock_north_inner" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "escape_dock_north_pump" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"upr" = ( -/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/plating, -/area/maintenance/store) -"uqw" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/open/airless, -/area/turret_protected/tcomsat) -"uqD" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/full, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"uqM" = ( -/turf/simulated/floor/carpet, -/area/sconference_room) -"urY" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1337; - id_tag = "green_dock_fore_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ - frequency = 1337; - id_tag = "green_dock_fore_airlock"; - master_tag = "legion_shuttle_dock"; - pixel_x = 28; - tag_airpump = "green_dock_fore_pump"; - tag_chamber_sensor = "green_dock_fore_sensor"; - tag_exterior_door = "green_dock_fore_exterior"; - tag_interior_door = "green_dock_fore_interior" - }, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Emergency Services Dock - Fore"; - dir = 8; - network = list("Civilian Surface","Emergency Dock") - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"usa" = ( -/obj/machinery/vending/cola, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"uso" = ( -/obj/machinery/telecomms/server/presets/service, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"utS" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "4,2"; - name = "survey shuttle" - }, -/area/shuttle/research) -"uuh" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"uuD" = ( -/obj/structure/cable/blue{ - 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/tcommsat/computer) -"uvJ" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/southright, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/hallway/secondary/entry/dock) -"uvR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 6 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"uwb" = ( -/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/plating, -/area/maintenance/arrivals) -"uwg" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"uwE" = ( -/obj/machinery/vending/snack, -/turf/simulated/floor/lino, -/area/hallway/secondary/entry/departure_lounge) -"uwX" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"uxf" = ( -/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/sign/drop{ - pixel_x = 32 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"uxn" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "yellow_shuttle_dock_airlock_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "yellow_shuttle_dock_airlock"; - pixel_y = 30; - req_one_access = list(13); - tag_airpump = "yellow_shuttle_dock_airlock_pump"; - tag_chamber_sensor = "yellow_shuttle_dock_sensor"; - tag_exterior_door = "yellow_shuttle_dock_outer"; - tag_interior_door = "yellow_shuttle_dock_inner" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"uxK" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/open/airless, -/area/turret_protected/tcomsat) -"uzN" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/engineering, -/obj/item/clothing/head/helmet/space/void/engineering, -/obj/item/tank/oxygen, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"uzY" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"uAr" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"uAC" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/shield_capacitor/multiz{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/storage/shields) -"uAT" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1337; - id_tag = "nuke_shuttle_dock_airlock"; - pixel_y = 30; - req_one_access = list(13); - tag_airpump = "nuke_shuttle_dock_pump"; - tag_chamber_sensor = "nuke_shuttle_dock_sensor"; - tag_exterior_door = "nuke_shuttle_dock_outer"; - tag_interior_door = "nuke_shuttle_dock_inner" - }, -/obj/machinery/airlock_sensor{ - frequency = 1337; - id_tag = "nuke_shuttle_dock_sensor"; - master_tag = "nuke_shuttle_dock_airlock"; - pixel_y = -25 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1337; - id_tag = "nuke_shuttle_dock_pump" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"uBk" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"uBn" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "poolcafe"; - name = "Pool Cafe" - }, -/obj/effect/floor_decal/corner/white/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/structure/bed/stool/padded/red, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"uBu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/foresolar) -"uBx" = ( -/obj/structure/bed/stool/padded/red, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"uBM" = ( -/obj/machinery/power/apc/west, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/camera/network/telecom{ - c_tag = "Telecomms - Fore Solar Maintenance"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/foresolar) -"uDd" = ( -/turf/simulated/floor/grass, -/area/hydroponics/garden) -"uDh" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/firealarm/east, -/obj/item/device/camera, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"uDz" = ( -/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/access_button{ - command = "cycle_exterior"; - frequency = 1700; - master_tag = "c_maint_surface"; - name = "exterior access button"; - pixel_x = 26; - pixel_y = 26; - req_one_access = list(13) - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"uDN" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/stairs) -"uFu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"uFH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomfoyer) -"uHL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/bridge/levela/research_dock) -"uHO" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/fitness/pool) -"uHS" = ( -/obj/machinery/computer/security/telescreen{ - name = "Telecomms Cameras"; - network = list("Tcomsat"); - pixel_y = 30 - }, -/turf/simulated/floor/lino, -/area/tcommsat/lounge) -"uIe" = ( -/turf/simulated/wall, -/area/solar/port) -"uJl" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"uJw" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Surface - Shield Substation"; - charge = 10000000; - cur_coils = 5; - input_attempt = 1; - input_level = 500000; - output_attempt = 1; - output_level = 500000 - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/storage/shields) -"uJK" = ( -/turf/simulated/wall, -/area/maintenance/store) -"uLe" = ( -/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/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"uLI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/sconference_room) -"uMf" = ( -/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/firedoor, -/obj/machinery/door/airlock/command{ - name = "Escape pods and Shuttle Docks"; - req_one_access = list(19,38,63,72); - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"uMZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo) -"uNj" = ( -/obj/structure/window/shuttle/unique/research{ - icon_state = "5,14" - }, -/turf/simulated/floor/plating, -/area/shuttle/research) -"uNK" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/fitness/pool) -"uOz" = ( -/obj/machinery/power/apc/west, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/starboardsolar) -"uOG" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"uPF" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"uPR" = ( -/obj/item/storage/toolbox/mechanical, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"uQj" = ( -/obj/structure/closet/malf/suits, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"uQn" = ( -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"uQu" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"uQL" = ( -/obj/machinery/door/airlock/external{ - frequency = 1700; - icon_state = "door_locked"; - id_tag = "tcoms_airlock_outer"; - locked = 1; - name = "Telecoms Surface Access"; - req_access = list(13); - dir = 4 - }, -/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" - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"uRn" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"uRO" = ( -/obj/machinery/power/tracker, -/obj/structure/cable/yellow, -/turf/simulated/floor/airless, -/area/solar/starboard) -"uSr" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"uTi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"uTm" = ( -/obj/structure/disposalpipe/segment, -/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/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"uTp" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "commissary_counter"; - name = "Shutter" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/lino, -/area/store) -"uTx" = ( -/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" - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"uUH" = ( -/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" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"uUW" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/structure/closet/athletic_mixed, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness/changing) -"uVt" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-18" - }, -/turf/simulated/floor/wood, -/area/sconference_room) -"uWw" = ( -/turf/simulated/floor/tiled, -/area/storage/primary) -"uWz" = ( -/obj/structure/sign/directions/evac{ - dir = 8; - pixel_y = 28 - }, -/obj/structure/sign/directions/all{ - dir = 8; - pixel_y = 36 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"uWD" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"uWF" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "6,0"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"uWR" = ( -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"uXp" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"uXs" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/simulated/floor/lino, -/area/tcommsat/lounge) -"uXB" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "3,5"; - name = "survey shuttle" - }, -/area/shuttle/research) -"uYg" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"uYW" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/modular_computer/console/preset/engineering, -/turf/simulated/floor/plating, -/area/storage/shields) -"uZD" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/store) -"vay" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/sign/securearea, -/turf/simulated/floor/plating, -/area/storage/shields) -"vaJ" = ( -/obj/structure/bed/stool/chair/padded/beige{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/hallway/secondary/entry/departure_lounge) -"vbI" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"vdL" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_pod_3_berth_hatch"; - locked = 1; - name = "Escape Pod"; - req_access = list(13); - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/bridge/levela) -"ven" = ( -/turf/simulated/wall, -/area/hallway/secondary/exit) -"vfo" = ( -/obj/structure/filingcabinet, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"vfs" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/clothing/glasses/threedglasses, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"vgG" = ( -/obj/machinery/light/small/emergency, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"vgJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"vhb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "office_shutter"; - name = "Office Shutters" - }, -/turf/simulated/floor/plating, -/area/security/vacantoffice) -"vhv" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "solar_aft_inner"; - locked = 1; - name = "Engineering External Access"; - req_access = null; - req_one_access = list(10,11,13); - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/starboardsolar) -"vhD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"vhQ" = ( -/obj/effect/floor_decal/corner/lime/full, -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"vjl" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/central) -"vjt" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Blue Dock Starboard"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"vkd" = ( -/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{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"vkh" = ( -/obj/random/pottedplant, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"vkX" = ( -/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/maintenance{ - req_access = list(12); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"vmC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/quartermaster/loading) -"vmT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Fitness Center"; - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/fitness) -"vmY" = ( -/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/light_switch{ - pixel_x = 26 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness/changing) -"vne" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/bridge/levela) -"vnh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"vnE" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"vnK" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1337; - id_tag = "command_surface_airlock"; - pixel_y = 30; - req_one_access = list(13); - tag_airpump = "command_surface_pump"; - tag_chamber_sensor = "command_surface_sensor"; - tag_exterior_door = "command_surface_outer"; - tag_interior_door = "command_surface_inner" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"vog" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/simulated/floor/wood, -/area/sconference_room) -"voy" = ( -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"voV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/simulated/floor/wood, -/area/hydroponics/garden) -"vpy" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/tiled, -/area/storage/primary) -"vpH" = ( -/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 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness/changing) -"vqe" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"vqw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"vqE" = ( -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "arrivals_west_sensor"; - pixel_x = -30 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"vqK" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"vqP" = ( -/obj/structure/table/standard, -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/network/telecom{ - c_tag = "Telecomms - Computer Room" - }, -/obj/item/pen/blue{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/paper_bin, -/obj/item/book/manual/wiki/ntsl2, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"vrf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/bridge/levela) -"vsk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/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{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"vsz" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/towel, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"vsN" = ( -/turf/simulated/floor/wood, -/area/sconference_room) -"vsQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"vtc" = ( -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/turret_protected/tcomsat) -"vtt" = ( -/turf/simulated/wall, -/area/hallway/secondary/entry/departure_lounge) -"vtL" = ( -/obj/structure/sign/drop{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/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/bridge_elevator/surface) -"vuI" = ( -/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/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/storage/primary) -"vuT" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/random/loot, -/obj/structure/table/standard, -/turf/simulated/floor/plating, -/area/store) -"vvb" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"vvh" = ( -/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/fore) -"vvj" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/crayons, -/obj/item/storage/box/fancy/crayons, -/obj/item/storage/box/fancy/crayons/chalkbox, -/turf/simulated/floor/tiled, -/area/storage/primary) -"vvr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Pool Cafe"; - req_one_access = list(25,28,35); - dir = 1 - }, -/obj/effect/floor_decal/corner/white/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/structure/plasticflaps/airtight, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"vwf" = ( -/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 = 10 - }, -/turf/simulated/floor/carpet, -/area/security/vacantoffice) -"vwu" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "6,5"; - name = "survey shuttle" - }, -/area/shuttle/research) -"vxa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1337; - master_tag = "nuke_shuttle_dock_airlock"; - name = "interior access button"; - pixel_x = -28; - pixel_y = 26; - req_one_access = list(13) - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"vxG" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness/changing) -"vyU" = ( -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"vzK" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/open/airless, -/area/turret_protected/tcomsat) -"vAe" = ( -/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/flora/pottedplant{ - icon_state = "plant-29" - }, -/turf/simulated/floor/wood, -/area/security/bridge_surface_checkpoint) -"vAo" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"vAp" = ( -/obj/structure/bed/stool/chair/padded/black{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"vAs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"vBt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"vBA" = ( -/obj/effect/floor_decal/corner/purple, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"vBV" = ( -/obj/machinery/telecomms/server/presets/science, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"vCD" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/airless, -/area/solar/fore) -"vCL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/portsolar) -"vEz" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/random/pottedplant, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"vEB" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"vFZ" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"vGa" = ( -/obj/machinery/atmospherics/tvalve/bypass{ - icon_state = "map_tvalve0"; - name = "Distro to Docks Bypass"; - state = 0 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"vGf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness/changing) -"vHg" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"vHn" = ( -/obj/machinery/computer/telecomms/traffic, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"vHp" = ( -/obj/effect/landmark/map_data{ - height = 5 - }, -/turf/unsimulated/chasm_mask, -/area/mine/explored) -"vHI" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"vIo" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Solar - Aft TComms"; - cur_coils = 2 - }, -/turf/simulated/floor/plating, -/area/maintenance/starboardsolar) -"vIp" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/beach/water/pool{ - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"vIG" = ( -/obj/item/reagent_containers/toothpaste, -/obj/item/reagent_containers/toothpaste, -/obj/item/reagent_containers/toothbrush/red{ - name = "disposable toothbrush"; - pixel_y = 8 - }, -/obj/item/reagent_containers/toothbrush/red{ - name = "disposable toothbrush"; - pixel_y = 8 - }, -/obj/item/reagent_containers/toothbrush{ - name = "disposable toothbrush"; - pixel_y = 8 - }, -/obj/item/reagent_containers/toothbrush{ - name = "disposable toothbrush"; - pixel_y = 8 - }, -/obj/structure/table/rack, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"vJA" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "solar_aft_airlock"; - name = "exterior access button"; - pixel_x = -25; - pixel_y = 25; - req_access = null; - req_one_access = list(10,11,13) - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"vJN" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"vKe" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/portsolar) -"vKp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"vKI" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"vLT" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(19); - 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/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"vLU" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "1,9"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"vMV" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/requests_console/west{ - department = "Primary Tool Storage"; - departmentType = 2 - }, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/tiled, -/area/storage/primary) -"vOy" = ( -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"vOB" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"vPO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/silver{ - name = "Bathroom"; - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/tcommsat/lounge) -"vQw" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/explored) -"vQy" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/bed/stool/chair, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"vQF" = ( -/turf/simulated/wall/shuttle/unique/escape_pod{ - icon_state = "0,0" - }, -/area/shuttle/escape_pod/pod1) -"vQV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"vQZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/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/carpet, -/area/security/vacantoffice) -"vRj" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"vSk" = ( -/obj/effect/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/store) -"vTm" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "12,6"; - name = "survey shuttle" - }, -/area/shuttle/research) -"vTp" = ( -/turf/simulated/wall, -/area/hallway/secondary/entry/central) -"vTz" = ( -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Surface Corridor 2" - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"vTG" = ( -/obj/machinery/computer/cryopod{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo) -"vTM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"vTS" = ( -/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/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/store) -"vVi" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"vXT" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/solar/fore) -"vYm" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/store) -"vZr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/sconference_room) -"vZs" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue/full, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"vZO" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/shuttle/research) -"wai" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"waY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"wbq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"wbM" = ( -/turf/simulated/wall, -/area/crew_quarters/fitness) -"wcq" = ( -/obj/structure/closet/lasertag/blue, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness/changing) -"wcR" = ( -/obj/machinery/door/airlock/research{ - name = "Storage 2"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"wcZ" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "9,7"; - name = "survey shuttle" - }, -/area/shuttle/research) -"wdo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/south, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"wdQ" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"wdY" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/fitness/pool) -"weg" = ( -/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/plating, -/area/maintenance/cargo/surface) -"weo" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"wey" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"weV" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/electricshock, -/turf/simulated/wall/r_wall, -/area/tcommsat/entrance) -"wfi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"wfv" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"wfB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"wfG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"wfJ" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"wfO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/solarmaint) -"wgu" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "11,9"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"wgC" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/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/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/sign/ex, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"whb" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - name = "adjusted light fixture"; - pixel_y = -15; - icon_state = "tube_empty" - }, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass, -/area/bridge/levela) -"whm" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1700; - master_tag = "tcoms_airlock"; - name = "interior access button"; - pixel_x = 26; - pixel_y = 26; - req_one_access = list(13) - }, -/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/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"whI" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/hydroponics/garden) -"wiv" = ( -/obj/machinery/firealarm/north, -/turf/simulated/floor/bluegrid/server, -/area/tcommsat/chamber) -"wkD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/cargo/surface) -"wkL" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/status_display, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"wlt" = ( -/obj/machinery/telecomms/bus/preset_one, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"wlv" = ( -/obj/effect/floor_decal/corner/white/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/item/razor, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"wlU" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor/northleft{ - name = "security checkpoint"; - req_access = list(63) - }, -/obj/machinery/door/blast/shutters/open{ - id = "bridge_surface_checkpoint"; - name = "Checkpoint Shutters" - }, -/turf/simulated/floor/wood, -/area/security/bridge_surface_checkpoint) -"wma" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"wmF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"wmQ" = ( -/obj/machinery/photocopier, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/firealarm/south, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Surface Checkpoint"; - dir = 1 - }, -/turf/simulated/floor/wood, -/area/security/bridge_surface_checkpoint) -"wpM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/sconference_room) -"wpW" = ( -/turf/unsimulated/chasm_mask, -/area/mine/unexplored) -"wqg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "seccheckpointoffice"; - name = "Checkpoint Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/checkpoint2) -"wqs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/chair/office/dark, -/turf/simulated/floor/lino, -/area/store) -"wqL" = ( -/obj/machinery/atmospherics/tvalve/bypass{ - icon_state = "map_tvalve0"; - name = "Distro to Docks Bypass"; - state = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/solarmaint) -"wrE" = ( -/obj/structure/table/wood, -/turf/simulated/floor/wood, -/area/sconference_room) -"wrQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/solarmaint) -"wrY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"wss" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/sconference_room) -"wtd" = ( -/obj/machinery/power/apc/east, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"wtO" = ( -/turf/simulated/wall/shuttle/unique/escape_pod{ - icon_state = "0,1" - }, -/area/shuttle/escape_pod/pod3) -"wug" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"wuu" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "seccheckpoint2"; - name = "Checkpoint Lockdown"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"wuA" = ( -/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/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/emergency) -"wuL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"wvr" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "6,2"; - name = "survey shuttle" - }, -/area/shuttle/research) -"wvs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"wvy" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"wvX" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"wwq" = ( -/obj/effect/floor_decal/corner/white/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/structure/closet/secure_closet/freezer{ - icon_state = "freezer"; - name = "cafe fridge" - }, -/obj/machinery/button/remote/blast_door{ - id = "poolcafe"; - name = "Cafe Shutters"; - pixel_x = 6; - pixel_y = -26; - req_access = null - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"wwx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"wxJ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"wzB" = ( -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"wAi" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/medical{ - name = "Infirmary"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"wAk" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"wAN" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/airless, -/area/turret_protected/tcomsat) -"wBw" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"wBz" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"wBR" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"wCw" = ( -/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/ramp/bottom{ - dir = 4 - }, -/area/hallway/secondary/entry/aft) -"wCE" = ( -/turf/simulated/floor/lino, -/area/tcommsat/lounge) -"wDG" = ( -/obj/effect/floor_decal/corner/red, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"wEk" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/item/device/radio/intercom/east, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Pod 2"; - dir = 4 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod2) -"wEl" = ( -/obj/structure/bed/stool/chair/padded/black{ - dir = 1; - icon_state = "chair_padding_over" - }, -/obj/machinery/newscaster/south, -/turf/simulated/floor/wood, -/area/sconference_room) -"wEM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"wEX" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"wFA" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"wFF" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Civilian Surface Substation Bypass" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian_east) -"wFN" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "escape_dock_center_pump" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"wGu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/machinery/alarm/south, -/turf/simulated/floor/lino, -/area/store) -"wGw" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"wGS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "seccheckpointoffice"; - name = "Checkpoint Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/checkpoint2) -"wGT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/walllocker/medical{ - pixel_x = -32 - }, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"wHd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"wHH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/structure/closet/secure_closet/hangar_tech, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"wHS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/random/junk, -/obj/item/reagent_containers/food/snacks/cb01, -/obj/item/reagent_containers/food/snacks/cb02, -/obj/item/reagent_containers/food/snacks/cb07, -/obj/item/reagent_containers/food/snacks/cb04, -/obj/item/reagent_containers/food/snacks/candy, -/obj/item/trash/candy, -/obj/item/trash/candy, -/obj/item/storage/box/candy{ - name = "dusty candy box" - }, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/plating, -/area/store) -"wIg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"wIq" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/departure_lounge) -"wIs" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass, -/area/hallway/secondary/entry/fore) -"wJr" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"wKb" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/hydroponics/garden) -"wKq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/hallway/secondary/entry/departure_lounge) -"wKu" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 4; - name = "Distro to Canisters"; - target_pressure = 150 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/bridge/levela/research_dock) -"wKH" = ( -/obj/machinery/power/solar{ - id = "auxsolarnorth"; - name = "Fore Solar Array" - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/airless{ - icon_state = "solarpanel" - }, -/area/solar/fore) -"wKK" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/solarmaint) -"wKP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/starboardsolar) -"wLG" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"wLX" = ( -/obj/machinery/power/apc/north, -/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/maintenance/substation/civilian_east) -"wMf" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"wMM" = ( -/obj/machinery/button/remote/blast_door{ - id = "office_shutter"; - name = "Office Shutters"; - pixel_x = -8; - pixel_y = 22 - }, -/obj/machinery/light_switch{ - pixel_x = -8; - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"wMS" = ( -/obj/structure/disposalpipe/segment, -/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/plating, -/area/maintenance/cargo/surface) -"wNi" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1399; - master_tag = "admin_shuttle_dock_airlock"; - name = "interior access button"; - pixel_x = -27; - pixel_y = 22; - req_one_access = list(13) - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"wNw" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "solar_tool_inner"; - locked = 1; - name = "Engineering External Access"; - req_access = null; - req_one_access = list(10,11,13); - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/plating, -/area/maintenance/foresolar) -"wOu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"wOP" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/store) -"wOW" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"wPn" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "brig_solar_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "brig_solar_airlock"; - pixel_y = -25; - req_access = list(13); - tag_airpump = "brig_solar_pump"; - tag_chamber_sensor = "brig_solar_sensor"; - tag_exterior_door = "brig_solar_outer"; - tag_interior_door = "brig_solar_inner" - }, -/obj/machinery/airlock_sensor{ - id_tag = "brig_solar_sensor"; - pixel_x = 12; - pixel_y = -25 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/warning_stripes, -/turf/simulated/floor/plating, -/area/maintenance/portsolar) -"wPr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"wPZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting Equipment"; - req_access = list(12); - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"wQD" = ( -/turf/unsimulated/floor/asteroid/ash, -/area/solar/port) -"wQN" = ( -/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/secondary/entry/fore) -"wQX" = ( -/obj/structure/bed/stool/chair/shuttle, -/obj/effect/floor_decal/corner/purple/diagonal, -/turf/simulated/floor/tiled/dark, -/area/shuttle/research) -"wRb" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"wRA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"wRC" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - fluorescent = null; - frequency = 1380; - id_tag = "science_bridge_pump" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/flag/scc{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/bridge/levela/research_dock) -"wSl" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"wSp" = ( -/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/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"wSu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/storage/primary) -"wSX" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/west, -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/item/gun/energy/mousegun/xenofauna, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"wTn" = ( -/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, -/area/security/vacantoffice) -"wTF" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"wUn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - name = "EXTERNAL AIRLOCK" - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"wVO" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-09" - }, -/obj/item/device/radio/intercom/west{ - pixel_y = -4 - }, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = 11 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"wWa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/store) -"wWl" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"wWu" = ( -/obj/structure/table/rack, -/obj/item/beach_ball/holoball, -/obj/item/beach_ball{ - pixel_y = 12 - }, -/obj/item/bikehorn/rubberducky, -/obj/item/clothing/gloves/boxing/green, -/obj/item/clothing/gloves/boxing, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness/changing) -"wWZ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-27" - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/simulated/floor/wood, -/area/sconference_room) -"wXr" = ( -/obj/machinery/power/portgen/basic, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"wYB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 6 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/tcommsat/chamber) -"wYE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/alarm/east, -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/machinery/light_construct{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/store) -"wZN" = ( -/obj/item/device/radio/intercom/east, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"xad" = ( -/turf/simulated/floor/airless, -/area/solar/starboard) -"xbe" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark{ - name = "heated dark floor"; - temperature = 303.15 - }, -/area/crew_quarters/fitness/pool) -"xcn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"xcJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"xcS" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"xdw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/cyan, -/obj/machinery/power/sensor{ - long_range = 1; - name = "Powernet Sensor - Surface Shields Subgrid"; - name_tag = "Surface Shields Subgrid" - }, -/obj/machinery/light, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/turf/simulated/floor/tiled, -/area/storage/shields) -"xdG" = ( -/obj/structure/table/standard, -/obj/item/device/hand_labeler, -/obj/machinery/light, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Primary Tool Storage Aft"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"xgm" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "QMLoad2"; - pixel_y = -5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"xgO" = ( -/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" - }, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 8 - }, -/area/quartermaster/loading) -"xid" = ( -/obj/machinery/telecomms/processor/preset_three, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"xih" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"xiX" = ( -/turf/simulated/wall/shuttle/unique/escape_pod{ - icon_state = "2,2" - }, -/area/shuttle/escape_pod/pod3) -"xjq" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled{ - roof_type = null - }, -/area/security/checkpoint2) -"xjV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/random/tech_supply, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"xjW" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/remote/blast_door{ - id = "bridge_surface_corridor"; - name = "Corridor Shutters"; - pixel_x = -4; - pixel_y = 14 - }, -/obj/machinery/button/remote/blast_door{ - id = "bridge_surface_checkpoint"; - name = "Checkpoint Lockdown"; - pixel_x = 6; - pixel_y = 14 - }, -/obj/item/folder/white, -/turf/simulated/floor/wood, -/area/security/bridge_surface_checkpoint) -"xkb" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12); - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/storage/tools) -"xkM" = ( -/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/bridge/levela) -"xln" = ( -/obj/machinery/telecomms/bus/preset_four, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"xlE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/store) -"xlI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"xmg" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/supply{ - c_tag = "Cargo - Quartermaster's Office"; - dir = 8 - }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"xmw" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/structure/bed/stool/chair, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"xmT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"xnw" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"xnB" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/mime, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/bedrooms) -"xnS" = ( -/turf/simulated/wall, -/area/maintenance/substation/civilian_east) -"xoS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/eastright{ - name = "Secure Holding"; - req_access = list(2) - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"xpj" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"xpl" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"xpF" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/grass, -/area/hydroponics/garden) -"xpR" = ( -/obj/machinery/telecomms/processor/preset_two, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"xql" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/turret_protected/tcomsat) -"xqK" = ( -/obj/structure/table/standard, -/obj/item/stock_parts/subspace/ansible, -/obj/item/stock_parts/subspace/ansible, -/obj/item/stock_parts/subspace/ansible, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomsat) -"xqL" = ( -/obj/machinery/alarm/south{ - req_one_access = list(24,11,55) - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"xrt" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"xsu" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"xsB" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/lounge) -"xsZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/bridge/levela) -"xtk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Corridor Camera 5" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/central) -"xuD" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/bluegrid/server, -/area/tcommsat/chamber) -"xvJ" = ( -/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/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"xwv" = ( -/obj/structure/bed/stool/chair, -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"xwS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_y = 4 - }, -/obj/structure/sign/directions/science{ - dir = 4; - pixel_y = -4 - }, -/obj/structure/sign/directions/security{ - dir = 4; - pixel_y = -12 - }, -/obj/structure/sign/directions/com{ - dir = 4; - pixel_y = 12 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/central) -"xwX" = ( -/obj/machinery/porta_turret{ - dir = 6 - }, -/obj/effect/decal/warning_stripes, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/tcommsat/entrance) -"xwZ" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"xxB" = ( -/obj/structure/shuttle_part/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "11,8"; - name = "survey shuttle" - }, -/turf/unsimulated/floor/asteroid/ash, -/area/shuttle/research) -"xxN" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 1; - name = "Distro to Canisters"; - target_pressure = 150 - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"xxT" = ( -/obj/random/junk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/store) -"xzT" = ( -/obj/machinery/door/airlock{ - id_tag = "surf_unit_2"; - name = "Unit 1"; - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"xAu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"xAE" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"xBg" = ( -/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, -/area/hallway/secondary/entry/central) -"xBr" = ( -/turf/simulated/floor/bluegrid/server, -/area/tcommsat/chamber) -"xBt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) -"xCc" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"xCl" = ( -/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/machinery/door/airlock/glass{ - name = "Changing Room"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness/changing) -"xCq" = ( -/obj/item/device/radio/intercom/east, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"xCC" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/quartermaster/loading) -"xCX" = ( -/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{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"xDk" = ( -/obj/structure/cable{ - 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/plating, -/area/maintenance/store) -"xDz" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"xDH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/store) -"xDX" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "3,2"; - name = "survey shuttle" - }, -/area/shuttle/research) -"xEF" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "brig_solar_outer"; - locked = 1; - name = "Engineering External Access"; - req_access = null; - req_one_access = list(10,11,13); - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/portsolar) -"xEP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"xEU" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"xEY" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"xFr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/store) -"xFQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"xGk" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/random/tech_supply, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"xGE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"xGF" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/effect/shuttle_landmark/research/start, -/turf/simulated/floor/plating, -/area/shuttle/research) -"xGT" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"xHd" = ( -/obj/structure/window/basic{ - dir = 4 - }, -/obj/item/folder/blue{ - pixel_x = 5 - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/turf/simulated/floor/carpet, -/area/security/vacantoffice) -"xHo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"xHv" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/open/airless, -/area/turret_protected/tcomsat) -"xHx" = ( -/obj/structure/table/rack, -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/random/tech_supply, -/turf/simulated/floor/plating, -/area/store) -"xHT" = ( -/obj/machinery/door/airlock/glass{ - name = "Garden"; - dir = 4 - }, -/obj/machinery/door/firedoor, -/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/wood, -/area/hydroponics/garden) -"xIh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/store) -"xIM" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"xIR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness/changing) -"xJd" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "sconferenceprivacy" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "sconferenceprivacy" - }, -/obj/structure/window/reinforced/polarized{ - id = "sconferenceprivacy" - }, -/turf/simulated/floor/plating, -/area/sconference_room) -"xKr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"xKu" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 1 - }, -/area/hallway/secondary/entry/stairs) -"xOf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"xOl" = ( -/obj/structure/undies_wardrobe, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness/changing) -"xQu" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "science_bridge_out"; - name = "Shuttle Docking Port"; - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "science_bridge"; - name = "exterior access button"; - pixel_x = -8; - pixel_y = 24 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 2; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge/levela/research_dock) -"xQK" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/mime, -/obj/machinery/firealarm/west, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/bedrooms) -"xSw" = ( -/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 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge_elevator/surface) -"xTf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"xTt" = ( -/obj/structure/ladder{ - pixel_y = 16 - }, -/turf/simulated/open/airless, -/area/maintenance/telecoms_ladder) -"xUi" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "cargo_bay"; - name = "cargo bay hatch controller"; - pixel_x = -30; - req_one_access = list(13,31); - tag_door = "cargo_bay_door" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"xVe" = ( -/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, -/area/hallway/secondary/entry/aft) -"xVO" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomfoyer) -"xWe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"xWf" = ( -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Surface Lobby"; - dir = 8 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"xWz" = ( -/obj/machinery/telecomms/server/presets/command, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"xWV" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 1; - name = "Distro to Canister"; - target_pressure = 200 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"xXK" = ( -/turf/simulated/wall/shuttle/unique/research{ - desc = "The largest commercially available sublight engine, with a shuttle built around it and painted in NanoTrasen research division colors. Looks sleek, and fast."; - icon_state = "8,11"; - name = "survey shuttle" - }, -/area/shuttle/research) -"xYp" = ( -/obj/structure/table/reinforced, -/obj/item/stack/material/phoron{ - amount = 10 - }, -/obj/random/powercell, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"xZf" = ( -/obj/structure/ladder{ - pixel_y = 16 - }, -/turf/simulated/open, -/area/maintenance/bridge_elevator/surface) -"yaa" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"yap" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/bed/stool/chair, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"yaq" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/tiled, -/area/storage/primary) -"yar" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/turf/simulated/floor/carpet, -/area/security/vacantoffice) -"yav" = ( -/obj/structure/closet/cabinet, -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/padded/red, -/obj/structure/bed/stool/padded/red, -/obj/structure/bed/stool/padded/red, -/obj/structure/bed/stool/padded/red, -/obj/structure/bed/stool/padded/red, -/obj/structure/bed/stool/padded/red, -/obj/structure/bed/stool/padded/red, -/turf/simulated/floor/wood, -/area/store) -"yaH" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/security/vacantoffice) -"yaQ" = ( -/obj/machinery/telecomms/bus/preset_two, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"yba" = ( -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Conference Antechamber" - }, -/obj/machinery/vending/coffee, -/turf/simulated/floor/wood, -/area/sconference_room) -"ybn" = ( -/obj/structure/window/shuttle/unique/escape_pod{ - icon_state = "1,3" - }, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/pod2) -"ybr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"ybs" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"ybZ" = ( -/obj/structure/disposalpipe/segment, -/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/plating, -/area/maintenance/cargo/surface) -"yca" = ( -/obj/machinery/power/tracker, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/airless, -/area/solar/port) -"ydc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/tcommsat/lounge) -"ydi" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/levela/research_dock) -"ydt" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"ydU" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - 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/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/bridge/levela) -"yeq" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/chips, -/turf/simulated/floor/carpet, -/area/hallway/secondary/entry/departure_lounge) -"yeL" = ( -/obj/item/device/radio/intercom/west, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"yfC" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/shields) -"ygi" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo) -"ygP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/sconference_room) -"yhl" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'LETHAL TURRETS'. Enter at your own risk!"; - name = "LETHAL TURRETS"; - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/turret_protected/tcomfoyer) -"yhW" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hydroponics/garden) -"yiE" = ( -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/reedbush{ - pixel_x = 8; - pixel_y = -5 - }, -/turf/simulated/floor/grass, -/area/hallway/secondary/entry/fore) -"yiM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/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/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"yiQ" = ( -/obj/machinery/atmospherics/binary/pump/on{ - name = "Distro to Canisters"; - target_pressure = 150 - }, -/turf/simulated/floor/plating, -/area/maintenance/telecoms_ladder) -"yjd" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/device/hand_labeler, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/locker) -"ykk" = ( -/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, -/area/hallway/secondary/entry/central) -"ylh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom/south, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/emergency) -"ylk" = ( -/obj/machinery/newscaster, -/turf/simulated/wall, -/area/bridge/levela) -"ylG" = ( -/turf/simulated/open, -/area/turbolift/main_arrivals) - -(1,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -vHp -"} -(2,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(3,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(4,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -cnu -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -uIe -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -cnu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(5,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -tLI -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -tLI -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(6,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -tLI -wQD -bKv -bKv -bKv -bKv -bKv -bKv -bKv -bKv -bKv -bKv -wQD -yca -wQD -bKv -bKv -bKv -bKv -bKv -bKv -bKv -bKv -bKv -bKv -wQD -tLI -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(7,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -cnu -tLI -tLI -tLI -tLI -uIe -wQD -mgy -kYs -kYs -kYs -kYs -kYs -kYs -kYs -kYs -kYs -jFQ -cMI -jFQ -pVr -pVr -pVr -pVr -pVr -pVr -pVr -pVr -pVr -skC -wQD -uIe -tLI -tLI -tLI -tLI -cnu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(8,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -tLI -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -oLN -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -tLI -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(9,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -tLI -wQD -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -wQD -oSR -wQD -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -wQD -tLI -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(10,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -tLI -wQD -lUN -rEy -rEy -rEy -rEy -rEy -rEy -rEy -rEy -rEy -rEy -rEy -rEy -rEy -rEy -szG -oSR -faB -pAH -pAH -pAH -pAH -pAH -pAH -pAH -pAH -pAH -pAH -pAH -pAH -pAH -pAH -rCp -wQD -tLI -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(11,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -tLI -wQD -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -wQD -oSR -wQD -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -wQD -tLI -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(12,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -tLI -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -oSR -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -tLI -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(13,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -tLI -wQD -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -wQD -oSR -wQD -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -wQD -tLI -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(14,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -tLI -wQD -lUN -rEy -rEy -rEy -rEy -rEy -rEy -rEy -rEy -rEy -rEy -rEy -rEy -rEy -rEy -szG -oSR -faB -pAH -pAH -pAH -pAH -pAH -pAH -pAH -pAH -pAH -pAH -pAH -pAH -pAH -pAH -rCp -wQD -tLI -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(15,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -tLI -wQD -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -wQD -oSR -wQD -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -wQD -tLI -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(16,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -tLI -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -oSR -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -tLI -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(17,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -tLI -wQD -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -wQD -oSR -wQD -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -fos -wQD -tLI -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(18,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -tLI -wQD -lUN -rEy -rEy -rEy -rEy -rEy -rEy -rEy -rEy -rEy -rEy -rEy -rEy -rEy -rEy -szG -oSR -faB -pAH -pAH -pAH -pAH -pAH -pAH -pAH -pAH -pAH -pAH -pAH -pAH -pAH -pAH -rCp -wQD -tLI -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(19,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -tLI -wQD -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -wQD -qVV -wQD -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -oqV -wQD -tLI -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(20,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -tLI -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -ePg -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -wQD -tLI -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(21,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -cnu -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -hIc -xEF -hIc -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -tLI -cnu -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(22,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -nyp -wPn -nyp -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(23,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -vCL -mdu -qXM -vKe -auA -rYN -rYN -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(24,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -eDV -eCQ -kDq -sRO -eDV -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(25,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -eDV -bTR -gVk -fJc -eDV -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(26,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -eDV -jdx -bNW -obF -eDV -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(27,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -eDV -eDV -hap -eDV -eDV -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(28,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -imY -kyf -kyf -kyf -kyf -kyf -kyf -kyf -kyf -kyf -kyf -kyf -kyf -kyf -imY -rYN -rYN -rYN -rYN -rYN -oyC -pkd -aaz -aaz -aaz -aaz -aaz -aaz -aaz -aaz -aaz -aaz -aaz -aaz -aaz -aaz -aaz -pvN -fsl -aaz -aaz -aaz -aaz -aaz -aaz -aaz -aaz -aaz -aaz -aaz -aaz -aaz -aaz -aaz -acE -oyC -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -ddx -hhB -hhB -hhB -hhB -hhB -hhB -hhB -hhB -hhB -hhB -hhB -hhB -hhB -ddx -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(29,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -nGc -nGc -nGc -nGc -nGc -nGc -nGc -nGc -nGc -nGc -nGc -nGc -kyf -rYN -rYN -rYN -rYN -rYN -oyC -ljM -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -oyC -ljM -oyC -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -hhB -jDz -jDz -jDz -jDz -jDz -jDz -jDz -jDz -jDz -jDz -jDz -jDz -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(30,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -vXT -wKH -nGc -ghv -vXT -wKH -nGc -ghv -ssZ -wKH -nGc -kyf -rYN -rYN -rYN -rYN -rYN -oyC -ljM -oyC -fdu -fdu -fdu -fdu -fdu -bzW -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -bzW -fdu -fdu -fdu -fdu -fdu -fdu -oyC -ljM -oyC -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -hhB -jDz -cFY -tSg -msi -jDz -cFY -qnZ -msi -jDz -cFY -tSg -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(31,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -ssZ -wKH -nGc -ghv -ssZ -wKH -nGc -ghv -ssZ -wKH -nGc -kyf -rYN -rYN -rYN -rYN -rYN -oyC -ljM -oyC -fdu -fdu -fdu -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -fdu -fdu -fdu -fdu -oyC -ljM -oyC -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -hhB -jDz -cFY -tBh -msi -jDz -cFY -tBh -msi -jDz -cFY -tBh -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(32,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -ssZ -wKH -nGc -ghv -ssZ -wKH -nGc -ghv -ssZ -wKH -nGc -kyf -rYN -rYN -rYN -rYN -rYN -oyC -ljM -oyC -fdu -fdu -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -fdu -fdu -fdu -oyC -ljM -oyC -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -hhB -jDz -cFY -tBh -msi -jDz -cFY -tBh -msi -jDz -cFY -tBh -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(33,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -imY -kyf -kyf -hkp -nGc -ghv -ssZ -wKH -nGc -ghv -ssZ -wKH -nGc -ghv -ssZ -wKH -nGc -kyf -fdu -rYN -rYN -rYN -rYN -oyC -ljM -oyC -fdu -bzW -bzW -bzW -gry -gry -gry -gry -gry -kjJ -gry -gry -gry -gry -gry -gry -gry -gry -gry -kjJ -gry -gry -mSd -gry -gry -bzW -bzW -bzW -fdu -fdu -oyC -ljM -oyC -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -hhB -jDz -cFY -tBh -msi -jDz -cFY -tBh -msi -jDz -cFY -tBh -msi -jDz -ezo -hhB -hhB -ddx -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(34,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -nGc -nGc -nGc -ghv -ssZ -wKH -nGc -ghv -ssZ -wKH -nGc -ghv -ssZ -wKH -nGc -kyf -fdu -rYN -rYN -rYN -rYN -oyC -ljM -oyC -fdu -bzW -bzW -gry -gry -gry -gry -gry -gry -cXk -gry -gry -gry -gry -gry -gry -gry -gry -gry -cXk -gry -gry -gry -gry -gry -gry -bzW -bzW -fdu -fdu -oyC -ljM -oyC -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -hhB -jDz -cFY -tBh -msi -jDz -cFY -tBh -msi -jDz -cFY -tBh -msi -jDz -jDz -jDz -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(35,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -iDb -nGc -ghv -ssZ -wKH -nGc -ghv -ssZ -wKH -nGc -ghv -ssZ -wKH -nGc -kyf -fdu -rYN -rYN -rYN -rYN -oyC -ljM -oyC -fdu -bzW -bzW -gry -gry -gry -gry -gry -gry -gry -gry -gry -gry -gry -gry -gry -gry -gry -gry -gry -gry -gry -gry -gry -gry -gry -bzW -bzW -fdu -fdu -oyC -ljM -oyC -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -hhB -jDz -cFY -tSg -msi -jDz -cFY -tSg -msi -jDz -cFY -tSg -msi -jDz -fvJ -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(36,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -lWb -nGc -ghv -ssZ -wKH -nGc -ghv -ssZ -wKH -nGc -ghv -ssZ -wKH -nGc -kyf -fdu -rYN -rYN -rYN -rYN -oyC -ljM -oyC -fdu -bzW -bzW -rut -mAG -mAG -gry -mAG -mAG -mAG -mAG -mAG -mAG -mAG -mAG -mAG -mAG -mAG -mAG -mAG -mAG -mAG -gry -gry -gry -gry -bzW -bzW -fdu -fdu -oyC -ljM -oyC -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -hhB -jDz -cFY -tBh -msi -jDz -cFY -tBh -msi -jDz -cFY -tBh -msi -jDz -dsN -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(37,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -lWb -nGc -ghv -ssZ -wKH -nGc -ghv -ssZ -wKH -nGc -ghv -ssZ -wKH -nGc -kyf -fdu -rYN -rYN -rYN -rYN -oyC -ljM -oyC -fdu -bzW -bzW -vtc -ucA -cLg -eFm -slB -hcq -hcq -joJ -ahz -iqd -gba -fyt -ijg -hcq -hcq -hcq -hcq -hcq -lVb -ieq -gry -gry -gry -bzW -bzW -fdu -fdu -oyC -ljM -oyC -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -hhB -jDz -cFY -tBh -msi -jDz -cFY -tBh -msi -jDz -cFY -tBh -msi -jDz -dsN -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(38,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -lWb -nGc -ghv -ttY -wKH -nGc -ghv -ssZ -wKH -nGc -ghv -ssZ -wKH -nGc -kyf -fdu -fdu -rYN -rYN -rYN -oyC -ljM -oyC -fdu -bzW -bzW -paK -ogW -psA -lhn -vgJ -phP -vzK -lsJ -rVF -efT -crc -hwH -ifi -vzK -vzK -vzK -vzK -cjG -vgJ -ieq -gry -gry -gry -oyC -oyC -oyC -oyC -oyC -ljM -oyC -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -hhB -jDz -cFY -tBh -msi -jDz -cFY -tBh -msi -jDz -cFY -tBh -msi -jDz -dsN -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(39,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -lWb -nGc -ghv -ttY -wKH -nGc -ghv -ssZ -wKH -nGc -ghv -ssZ -wKH -nGc -kyf -fdu -fdu -rYN -rYN -rYN -oyC -ljM -oyC -fdu -bzW -bzW -oNJ -oNJ -fCm -oPa -kNz -uxK -qys -qys -qys -qys -qys -qys -qys -qys -qys -qys -qys -kWB -vgJ -ieq -gry -gry -gry -oyC -pNA -fVd -pNA -oyC -ljM -oyC -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -hhB -jDz -cFY -tBh -msi -jDz -cFY -tBh -msi -jDz -cFY -tBh -msi -jDz -dsN -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(40,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -lWb -nGc -ghv -ttY -wKH -nGc -ghv -ssZ -wKH -nGc -ghv -ssZ -wKH -nGc -kyf -fdu -fdu -fdu -rYN -rYN -oyC -ljM -oyC -fdu -bzW -bzW -oNJ -oNJ -ctn -uqw -uTi -ieq -qys -xBr -xBr -xBr -xBr -xuD -xBr -xBr -xBr -xBr -qys -hlb -vgJ -ieq -gry -gry -oyC -oyC -jvS -pNi -oeo -oyC -ljM -oyC -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -hhB -jDz -cFY -tSg -msi -jDz -cFY -tSg -msi -jDz -cFY -tSg -msi -jDz -dsN -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(41,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -lWb -nGc -ghv -ttY -wKH -nGc -ghv -ssZ -wKH -nGc -ghv -ssZ -wKH -nGc -kyf -fdu -fdu -fdu -rYN -rYN -oyC -ljM -oyC -fdu -bzW -bzW -jne -bXz -nLK -eFm -ocZ -oLW -qys -xBr -mRI -lAJ -mRI -xpR -wlt -mRI -vBV -xBr -qys -hlb -vgJ -ieq -exe -tCJ -exe -exe -ejE -wqL -nvS -oyC -ljM -oyC -oyC -oyC -oyC -oyC -rYN -rYN -fdu -fdu -fdu -hhB -jDz -cFY -tBh -msi -jDz -cFY -tBh -msi -jDz -cFY -tBh -msi -jDz -dsN -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(42,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -lWb -nGc -ghv -ttY -wKH -nGc -ghv -ssZ -wKH -nGc -ghv -ssZ -wKH -nGc -kyf -fdu -fdu -fdu -rYN -rYN -oyC -ljM -oyC -fdu -bzW -bzW -bzW -vzK -vzK -hlb -qRF -rjc -qys -wiv -mRI -uso -mRI -yaQ -tEz -mRI -prz -xBr -qys -lqJ -ksy -lqJ -exe -boW -jYx -exe -rsD -dVF -rsD -oyC -wfO -aaz -aaz -aaz -acE -oyC -rYN -rYN -fdu -fdu -fdu -hhB -jDz -cFY -tBh -msi -jDz -cFY -tBh -msi -jDz -cFY -tBh -msi -jDz -dsN -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(43,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -lWb -nGc -ghv -ssZ -wKH -nGc -ghv -ssZ -wKH -nGc -ghv -ssZ -wKH -nGc -kyf -fdu -fdu -rYN -rYN -rYN -oyC -ljM -oyC -fdu -bzW -bzW -hmU -hmU -hmU -hAA -iju -hmU -qys -cmK -mRI -gQU -mRI -mRI -blE -mRI -uvR -eHm -qys -mIL -fEH -iqg -exe -aMI -agI -gpQ -wrQ -exe -cfC -exe -iSs -exe -exe -exe -ljM -oyC -rYN -rYN -rYN -fdu -fdu -hhB -jDz -cFY -tBh -msi -jDz -cFY -tBh -msi -jDz -cFY -tBh -msi -jDz -dsN -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(44,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -lWb -nGc -ghv -ssZ -wKH -nGc -ghv -ssZ -wKH -nGc -ghv -ssZ -wKH -nGc -kyf -fdu -gxB -ews -ews -ews -ews -ljM -oyC -fdu -bzW -bzW -hmU -jVQ -yeL -wfG -jvb -cst -wYB -ljh -cVQ -cVQ -cVQ -qJW -cVQ -cVQ -gjG -xBr -qys -xwX -fEH -ooG -exe -weV -pYN -exe -exe -exe -nwv -mHv -fEp -fDh -iyL -exe -ljM -qhV -qhV -qhV -qhV -wKP -fdu -hhB -jDz -cFY -tBh -msi -jDz -cFY -tBh -msi -jDz -cFY -tBh -msi -jDz -dsN -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(45,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -nGc -fSa -nGc -nGc -vCD -nGc -nGc -nGc -vCD -nGc -nGc -nGc -vCD -nGc -nGc -pKM -uBu -fKU -rhN -sgO -uBM -ews -ljM -oyC -fdu -bzW -bzW -hmU -vfo -qgn -cUW -uuD -myD -lFe -djQ -mRI -mRI -mRI -xBr -mRI -mRI -mRI -xBr -qys -xVO -fEH -czc -exe -dvx -fEp -cHR -fDh -oXk -nwv -kax -fEp -fDh -ohP -exe -ljM -qhV -uOz -pIu -cSB -lVx -aiP -dMZ -jDz -jDz -iWV -jDz -jDz -jDz -iWV -jDz -jDz -jDz -iWV -jDz -jDz -pmu -jDz -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(46,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -hkp -nGc -pEM -coI -hUK -hxx -hxx -hxx -hxx -hxx -hxx -hxx -hxx -hxx -hxx -nnZ -qhQ -qdM -qml -wNw -iZV -pyR -tKE -bIX -gEA -fwV -fwV -fwV -hmU -hmU -vqP -edT -lmQ -pfE -tUm -jyz -tLV -cQF -ujf -naZ -eRe -naZ -sTw -cQF -hlo -cvm -aka -bqV -uFH -czK -qJt -ont -pmw -rEJ -rEJ -vsk -hAY -aWR -tKg -uQj -exe -mRg -jeJ -pjI -ekf -tIN -vhv -ayr -ikn -vJA -oYJ -xad -xad -xad -xad -xad -xad -xad -xad -xad -xad -lIA -myQ -uRO -jDz -ezo -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(47,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -nGc -fSa -nGc -nGc -slj -nGc -nGc -nGc -slj -nGc -nGc -nGc -slj -nGc -nGc -pKM -uBu -fnK -eRv -qZX -fJj -ews -hZk -fwV -wHd -sGh -eek -nsi -wIg -gbZ -wIg -pea -vOy -qyk -xBr -mRI -mRI -mRI -xBr -mRI -mRI -mRI -xBr -qys -rpG -fEH -scq -exe -jFJ -dGe -cHR -eoO -fDh -sgi -ebE -fpL -gwT -uQj -exe -wKK -qhV -vIo -lFp -oId -ehp -aiP -dMZ -jDz -jDz -bRZ -jDz -jDz -jDz -bRZ -jDz -jDz -jDz -bRZ -jDz -jDz -pmu -jDz -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(48,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -vvh -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -kyf -fdu -bbx -ews -ews -ews -ews -oyC -fwV -kdE -ibX -hmU -hmU -vHn -qGz -xEU -wtd -jDK -crg -qJW -cVQ -cVQ -cVQ -qJW -cVQ -cVQ -iBI -xBr -qys -lGh -fEH -ooG -exe -fYb -rNy -exe -exe -exe -cEC -hOp -fDh -tul -azf -exe -oyC -qhV -qhV -qhV -qhV -oje -fdu -hhB -jDz -cFY -eHJ -msi -jDz -cFY -eHJ -msi -jDz -cFY -eHJ -msi -jDz -bBg -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(49,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -vvh -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -kyf -fwV -fwV -fwV -fwV -fwV -fwV -fwV -fwV -btS -fwV -hmU -hmU -hoo -oYT -rKq -hmU -lBd -hmU -qSE -mRI -mRI -mRI -mRI -blE -mRI -ojT -pJG -qys -hhW -fEH -yhl -exe -fDh -kGv -exe -exe -exe -exe -dTY -exe -exe -exe -exe -rYN -rYN -rYN -rYN -rYN -fdu -fdu -hhB -jDz -cFY -eHJ -msi -jDz -cFY -eHJ -msi -jDz -cFY -eHJ -msi -jDz -bBg -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(50,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -vvh -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -kyf -fwV -jeb -gfY -bPW -moB -odh -iQw -fSf -pcH -kii -bzW -hmU -hmU -hmU -hmU -hmU -nOB -hmU -lnD -mRI -eRk -mRI -xln -xid -mRI -xWz -xBr -qys -lqJ -jPN -lqJ -exe -mev -iyX -exe -exe -fdu -lQV -luF -lQV -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -hhB -jDz -cFY -eHJ -msi -jDz -cFY -eHJ -msi -jDz -cFY -eHJ -msi -jDz -bBg -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(51,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -vvh -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -kyf -fwV -cBe -bPl -bPW -flV -hsj -bIY -bIY -kFc -qOB -bzW -bJN -paZ -paZ -pUo -hmU -emO -fhX -mRI -mRI -bFC -mRI -cLA -gfH -mRI -jVA -xBr -qys -hlb -vgJ -ieq -exe -iOy -exe -exe -exe -fdu -lQV -luF -lQV -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -hhB -jDz -cFY -eHJ -msi -jDz -cFY -eHJ -msi -jDz -cFY -eHJ -msi -jDz -bBg -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(52,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -vvh -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -kyf -fwV -bPW -vPO -bPW -pNH -hsj -iUs -jqn -jMy -qOB -bzW -hmU -hmU -hmU -hmU -hmU -hmU -hmU -fnS -xBr -xBr -xBr -cGU -xBr -xBr -xBr -xBr -qys -hlb -vgJ -ieq -gry -gry -bzW -bzW -bzW -lQV -lQV -mtz -lQV -lQV -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -hhB -jDz -cFY -wFA -msi -jDz -cFY -wFA -msi -jDz -cFY -wFA -msi -jDz -bBg -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(53,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -vvh -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -kyf -fwV -drA -uaW -jHH -qdW -hsj -bIY -bIY -kFc -qOB -bzW -hYO -qjG -xGk -xjV -eui -hmU -qys -qys -qys -qys -qys -qys -qys -qys -qys -qys -qys -kWB -vgJ -ieq -gry -gry -gry -bzW -bzW -mzS -uQn -maw -auS -lQV -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -hhB -jDz -cFY -eHJ -msi -jDz -cFY -eHJ -msi -jDz -cFY -eHJ -msi -jDz -bBg -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(54,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -vvh -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -kyf -fwV -rTT -ptI -bAx -aXp -rks -rNJ -rNJ -hhD -ept -bzW -pkw -vOy -vOy -xlI -ism -hmU -mAG -mAG -mAG -fyY -aDS -mGU -pqL -bGP -wAN -mAG -mAG -gZR -vgJ -ieq -gry -gry -gry -bzW -bzW -ugg -oDI -uTx -xqL -lQV -lQV -lQV -lQV -rYN -rYN -rYN -rYN -rYN -fdu -hhB -jDz -cFY -eHJ -msi -jDz -cFY -eHJ -msi -jDz -cFY -eHJ -msi -jDz -bBg -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(55,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -vvh -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -kyf -fwV -rvJ -jUc -mtI -wwx -bPW -gcH -mxS -gcH -sZr -bzW -xYp -vOy -vOy -jqc -wEM -aSY -hcq -hcq -hcq -bvj -mZb -xcJ -wmF -sWb -kvc -hcq -hcq -hcq -wfi -ieq -gry -gry -gry -bzW -bzW -iCN -cXQ -llq -trv -yiQ -hOO -wvy -lQV -rYN -rYN -rYN -rYN -rYN -fdu -hhB -jDz -cFY -eHJ -msi -jDz -cFY -eHJ -msi -jDz -cFY -eHJ -msi -jDz -bBg -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(56,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -vvh -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -kyf -fwV -fxD -hsj -rLe -xsB -bPW -uHS -wCE -wCE -dNz -bzW -uzN -vOy -vOy -kYo -uwX -hmU -vzK -vzK -vzK -vzK -aVe -vgJ -xHv -vzK -vzK -vzK -vzK -vzK -vzK -gry -gry -gry -gry -bzW -bzW -xTt -cDq -uTx -uQn -uQn -wBz -tkZ -lQV -rYN -rYN -rYN -rYN -rYN -rYN -hhB -jDz -cFY -eHJ -msi -jDz -cFY -eHJ -msi -jDz -cFY -eHJ -msi -jDz -bBg -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(57,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -aSm -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -kyf -fwV -qqJ -hyu -qDg -fYH -elP -hXU -hXU -hXU -btv -bzW -vOy -vOy -vOy -kYo -fCu -hmU -gry -gry -tos -xql -kyQ -qtL -gHl -xql -jQE -gry -gry -gry -gry -gry -gry -gry -gry -bzW -bzW -aRc -mrv -whm -cmT -tcj -luv -wvy -lQV -rYN -rYN -rYN -rYN -rYN -rYN -hhB -jDz -cFY -wFA -msi -jDz -cFY -wFA -msi -jDz -cFY -wFA -msi -jDz -lxI -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(58,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -nGc -nGc -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -kyf -fwV -syt -rjP -usa -bxv -bPW -uXs -teO -feS -pSG -bzW -wXr -wXr -kym -pGM -hHk -hmU -cXk -gry -iBy -slQ -qvZ -vgJ -jQf -onD -iBy -gry -cXk -gry -gry -gry -gry -gry -gry -bzW -bzW -lQV -eUp -gzk -eUp -lQV -lQV -lQV -lQV -rYN -rYN -rYN -rYN -rYN -rYN -hhB -jDz -cFY -eHJ -msi -jDz -cFY -eHJ -msi -jDz -cFY -eHJ -msi -jDz -jDz -jDz -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(59,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -imY -kyf -kyf -hkp -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -kyf -fwV -bZu -ydc -ydc -qMP -fwV -fwV -fwV -fwV -tMR -bzW -hmU -hmU -hmU -hmU -hmU -hmU -gry -gry -dvB -gAY -pNf -lUn -uPR -koK -dvB -gry -kjJ -gry -rcF -gry -gry -gry -bzW -bzW -bzW -lQV -jaR -pZc -dMX -lQV -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -hhB -jDz -cFY -eHJ -msi -jDz -cFY -eHJ -msi -jDz -cFY -eHJ -msi -jDz -ezo -hhB -hhB -ddx -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(60,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -kyf -aqv -aqv -aqv -aqv -aqv -rYN -rYN -rYN -rYN -tMR -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -ncF -mUP -qxm -xqK -elc -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -rYN -lQV -iJA -wSp -rXh -lQV -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -hhB -jDz -cFY -eHJ -msi -jDz -cFY -eHJ -msi -jDz -cFY -eHJ -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(61,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -nGc -ghv -ifb -wKH -kKF -hyy -aqv -aqv -aqv -aqv -aqv -aqv -rYN -rYN -gDk -mvA -tnC -tPG -rYN -rYN -rYN -rYN -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -rYN -rYN -lQV -eUp -uQL -eUp -lQV -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -hhB -jDz -cFY -eHJ -msi -jDz -cFY -eHJ -msi -jDz -cFY -eHJ -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(62,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -ghv -ifb -wKH -nGc -ghv -rDw -wKH -nGc -ghv -ifb -wKH -fdu -fdu -kKF -aqv -aqv -aqv -aqv -aqv -aqv -cSV -ggM -voy -paA -cSV -rYN -rYN -rYN -rYN -rYN -rYN -rYN -bzW -bzW -bzW -bzW -bzW -bzW -bzW -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -kmf -bil -lON -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -hhB -jDz -cFY -wFA -msi -jDz -cFY -gwe -msi -jDz -cFY -wFA -msi -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(63,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kyf -nGc -nGc -nGc -nGc -nGc -nGc -nGc -nGc -nGc -kKF -kKF -fdu -iGP -fdu -kKF -aqv -aqv -aqv -aqv -aqv -aqv -rYN -dgn -kQo -jHf -tPG -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -ivX -qWO -dsb -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -hhB -jDz -jDz -jDz -jDz -jDz -jDz -jDz -jDz -jDz -jDz -jDz -jDz -jDz -hhB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(64,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -imY -kyf -kyf -kyf -kyf -kyf -kyf -kyf -kyf -kyf -kzZ -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -aqv -aqv -rYN -rYN -cSV -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -kKF -kKF -sqm -kKF -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -ddx -hhB -hhB -hhB -hhB -hhB -hhB -hhB -hhB -hhB -hhB -hhB -hhB -hhB -ddx -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(65,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -wpW -wpW -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -kKF -kKF -sqm -kKF -kKF -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(66,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -kKF -kKF -sqm -kKF -kKF -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(67,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -kKF -kKF -kKF -sqm -kKF -kKF -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(68,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -kKF -kKF -lBF -sqm -kKF -kKF -kKF -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(69,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -fdu -kKF -nmN -fdu -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -rYN -rYN -rYN -fdu -fdu -fdu -kKF -kKF -kKF -sqm -kKF -kKF -kKF -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(70,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -sqm -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(71,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -nyd -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -sqm -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(72,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rcD -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -kKF -kKF -kKF -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -sqm -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(73,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kmf -dsS -oNp -kKF -kKF -kKF -lBF -kKF -kKF -kKF -kKF -kKF -kKF -lBF -kKF -kKF -kKF -kmf -lrx -oNp -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(74,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -fdu -fdu -cSw -dwq -atV -ciW -ciW -ciW -ciW -ciW -ciW -ciW -ciW -ciW -ciW -ciW -ciW -ciW -ciW -gQW -iCn -lKS -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(75,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -agN -brS -lqI -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -fdu -ivX -qWO -dsb -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -ivX -gCo -dsb -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(76,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -mjE -nht -mjE -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -fdu -kKF -sqm -kKF -fdu -kKF -fdu -fdu -fdu -fdu -fdu -kKF -kKF -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(77,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -nZj -wdQ -aCo -pxL -nZj -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -kKF -sqm -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(78,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -mkG -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -nZj -vJN -oEG -obk -nZj -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -nZj -nZj -nZj -nZj -rYN -rYN -rYN -lBF -sqm -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(79,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -pBG -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -spn -goo -gRB -kpb -gvI -lLj -jcK -eXn -shF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -scy -eXn -cOq -pne -ubO -nZj -rYN -rYN -rYN -kKF -sqm -kKF -ewm -gCo -gCo -gCo -gCo -gCo -gCo -gCo -gCo -gCo -gCo -gCo -gCo -uOG -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(80,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -fdu -fdu -fdu -rgk -iRJ -cck -xIM -hzr -pcu -jFS -pJm -hRc -fdu -fdu -fdu -kze -fdu -fdu -fdu -gYY -hSl -pDu -bZv -rce -nZj -rYN -rYN -rYN -kKF -sqm -kKF -lKS -boG -boG -boG -boG -boG -boG -boG -boG -boG -boG -boG -trz -cSw -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(81,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -ioN -tRg -cck -grD -hzr -pcu -pVi -urY -ocM -fdu -fdu -fdu -fdu -fdu -fdu -fdu -qnj -rgv -bIt -bZv -dqI -nZj -rYN -rYN -rYN -kKF -sqm -kKF -lKS -boG -boG -boG -boG -boG -boG -boG -boG -boG -boG -boG -boG -cSw -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(82,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -pgD -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -psV -goo -gRB -kpb -gvI -lLj -tTQ -eXn -shF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -scy -eXn -cOq -kpb -wdo -nZj -rYN -rYN -rYN -kKF -sqm -kKF -lKS -boG -boG -boG -boG -boG -boG -boG -boG -boG -boG -boG -boG -cSw -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(83,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -nZj -xCc -pnm -aKw -nZj -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -nZj -bmM -xAu -nZj -rYN -rYN -rYN -kKF -sqm -kKF -lKS -boG -boG -boG -boG -boG -puz -boG -boG -boG -boG -boG -boG -cSw -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(84,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -sFL -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -sFL -fdu -fdu -fdu -fdu -fdu -fdu -cJc -xmw -gvI -aqq -cJc -fdu -fdu -fdu -fdu -fdu -sFL -fdu -fdu -fdu -fdu -fdu -cJc -bmC -ylh -nZj -rYN -rYN -rYN -kKF -sqm -kKF -lKS -boG -boG -boG -boG -boG -boG -boG -boG -boG -boG -boG -boG -cSw -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(85,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -cVs -xmw -gvI -aqq -cVs -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -cVs -dVx -tFT -nZj -rYN -rYN -rYN -lBF -sqm -kKF -lKS -boG -boG -boG -boG -boG -boG -boG -boG -boG -boG -boG -boG -vQw -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(86,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -tUX -bdF -mUa -fdu -fdu -fdu -qsZ -eex -amp -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -suI -xmw -tJN -aqq -suI -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -suI -bmC -tFT -uJK -uJK -uJK -uJK -kKF -sqm -kKF -lKS -boG -boG -boG -boG -boG -boG -boG -boG -boG -boG -boG -trz -cSw -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -fdu -fdu -fdu -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(87,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -hWY -hEL -hWY -fdu -fdu -fdu -hWY -tkY -dBC -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -efG -nZj -mGS -ebW -hPP -nZj -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -nZj -rld -wma -mNB -dXj -grA -xDH -kKF -sqm -kKF -qoy -dsS -dsS -lwU -dsZ -ead -lwU -ead -kEl -lwU -dsS -dsS -dsS -cCC -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(88,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -hWY -uxn -wug -rch -rch -rch -rWH -uAT -hWY -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -efG -efG -efG -efG -nZj -rvB -gvW -aqq -tLN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -cJc -ybr -gpM -uJK -fbo -awE -uJK -kmf -uDz -oNp -kKF -kKF -kKF -tSZ -heA -lAP -tSZ -lAP -nui -tSZ -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(89,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -mvk -mvk -fWk -mUu -mzH -syK -syK -syK -sfb -dZm -mzH -mvk -mvk -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -efG -efG -efG -efG -efG -efG -efG -nZj -dUX -gvW -aqq -oGr -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -cVs -dPA -csT -uJK -juT -iQS -uJK -aBT -rwx -aBT -nfa -xCC -fXA -qvh -dsZ -ead -hlx -ead -kEl -hlx -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(90,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -mUa -gGo -jQW -fqE -rRV -nOv -nOv -nOv -rRV -vxa -jQW -qEB -mUa -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -efG -efG -efG -efG -wRb -wRb -wRb -wRb -nZj -gny -wuA -dft -uAr -eXn -shF -nZj -scy -eXn -eXn -eXn -shF -nZj -scy -eXn -tQL -dPA -tCt -uJK -pEm -gXL -uJK -bbs -irk -txW -nfa -lss -sKe -xgm -lvm -fxL -xUi -xDz -aIh -nfa -nfa -nfa -nfa -nfa -nfa -nfa -nfa -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(91,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -dBC -vvb -ssC -bIh -bWo -twn -twn -twn -awu -bMW -twn -mfc -hWY -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -sFL -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -efG -efG -efG -efG -efG -wRb -oug -bmH -rRR -nZj -swy -kOK -eCq -rGp -ayL -vTM -ayL -ayL -ayL -lyf -ayL -ayL -rVc -nES -ayL -ezj -ubn -gaj -uJK -pxQ -kVL -uJK -sOn -shV -lya -nfa -aUK -suV -dmz -ahR -suV -suV -kGW -aIh -nfa -oma -oma -oma -oma -oma -oma -nfa -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -sZQ -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(92,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -ixU -fdu -fdu -fdu -fdu -dBC -pZP -wfJ -ben -bWo -wfJ -wfJ -wfJ -pzL -gBK -wfJ -uqD -hWY -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -wRb -wRb -wRb -wRb -wRb -wRb -qbP -hav -hav -vFZ -eqp -lIB -eRu -hUM -gBD -cSd -uiD -bBl -bBl -aob -bBl -bBl -uiD -pXM -bBl -iem -bBl -vsQ -uJK -jlO -fbF -uJK -aBT -aOn -aBT -nfa -fbL -suV -dlA -suV -suV -suV -suV -eOV -nfa -oma -oma -oma -oma -oma -oma -nfa -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(93,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -sFL -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -dBC -iFv -sux -tlT -vqw -tAF -mjO -lwH -pVf -pLs -sux -fGp -hWY -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -wRb -rUQ -qCa -ant -wPZ -ant -ant -wRb -wRb -nZj -nZj -nZj -epL -tod -oJm -nZj -oos -oos -oos -oos -oos -oos -oos -oos -oos -oos -izN -jgK -uJK -fOB -xIh -dXj -cEB -ocV -gQt -rkq -sWG -hvc -mVU -aDJ -hpO -qdd -suV -acH -nfa -oma -oma -oma -oma -oma -oma -nfa -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(94,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -dBC -sBl -pSJ -gBK -bWo -twn -gUk -twn -sux -ben -twn -mfc -hWY -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -wRb -kEY -ant -iuE -wRb -wRb -wRb -wRb -nWL -xrt -xrt -nZj -fWr -rhy -fWr -nZj -wHS -mox -aEx -tZL -ePX -tSy -nvR -tSy -lQQ -oos -uJK -fLo -uJK -iEz -tae -tae -tae -upr -wOP -nfa -rtQ -cap -cap -cap -pDV -eKC -suV -acH -nfa -oma -oma -oma -oma -oma -oma -nfa -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(95,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -gwb -hOF -mtj -fdu -fdu -fdu -alx -pZP -wfJ -gqC -bWo -wfJ -qzS -wfJ -sux -vqe -wfJ -uqD -hWY -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -wRb -grz -ant -iuE -wRb -fSV -kNa -gwm -jhh -jhh -jhh -nZj -aOO -iwV -oqi -nZj -iur -iXR -oMu -emo -lio -rSo -qrD -tSy -xHx -oos -eHi -upr -ixI -tHD -tae -tae -tae -upr -lgD -nfa -fal -suV -taF -suV -fHH -eKC -kGW -aIh -nfa -oma -oma -oma -oma -oma -oma -nfa -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -kKF -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(96,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -ezb -sVC -ezb -fdu -fdu -fdu -mvk -tRT -pOj -pOj -gNU -mtq -sXW -fbv -kZA -gZQ -vOB -sCd -pav -fdu -fdu -fdu -fdu -fdu -twe -kyW -aKa -oFj -vTp -edI -muj -muj -muj -muj -muj -iEC -fqp -fqp -fqp -fqp -fqp -fqp -fqp -fqp -fqp -mam -fqp -fqp -ceb -qJZ -qJZ -jhh -jhh -jhh -avm -mOv -eoL -mOv -oos -epp -tSy -jnY -tYs -tje -iud -gyc -tje -xlE -pUA -xFr -mII -lBr -tYq -kwT -qRA -qTD -wWa -lgD -nfa -rCo -suV -bGZ -suV -fHH -eKC -suV -aIh -nfa -oma -oma -oma -oma -oma -oma -nfa -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -kKF -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(97,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -ezb -gYP -xpl -fdu -fdu -fdu -mvk -sSz -apT -qFW -mvk -fJL -oVd -oUh -mvk -mvk -mvk -mvk -mvk -twe -twe -apo -rzw -cpj -twe -jOY -jOY -jOY -vTp -rzg -wKq -uox -fPB -oFC -yeq -rFo -fqp -gYt -ncU -fGn -yaq -blj -vMV -qUZ -vuI -uWw -ihG -fqp -rTY -pmZ -wlv -jhh -gTo -gTo -gTo -jhh -hVP -xcn -oos -tSy -cbK -aeD -tSy -tSy -tSy -tSy -tSy -sRc -oos -uZD -vTS -uJK -uJK -uJK -uJK -uJK -uJK -uJK -nfa -fal -mpP -taF -suV -fHH -eKC -suV -ybs -nfa -nfa -nfa -nfa -nfa -nfa -nfa -nfa -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -kKF -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(98,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -dxw -rOY -luZ -pMF -dvz -mqa -dxw -dxw -twe -pMI -qmj -twe -twe -qZY -uiJ -tor -bpq -lTi -ocG -cHM -bGO -wuu -wLG -tor -tor -vhQ -twe -toB -uQu -cdV -vTp -skS -tvY -nqS -pbO -teP -cVr -vaJ -fqp -uiy -aqE -sPt -sPt -sPt -sPt -sPt -sPt -xGE -xAE -fqp -iUY -ueM -eDv -igP -qHu -kxt -kgX -gRl -fDy -tMV -jIW -qYD -kBH -oJW -xxT -nqR -uTp -uTp -uTp -hxu -oos -oos -ujs -uJK -rYN -rYN -rYN -rYN -rYN -rYN -nfa -gKx -suV -taF -suV -fHH -eKC -suV -dmz -kbZ -suV -aJO -kbM -kbM -hFz -suV -nfa -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -kKF -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(99,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -dxw -oIA -cNK -bXH -aZf -kRG -rJt -csw -eWl -yiE -nQN -eWl -mcK -vHg -tIx -cTI -pDN -oCK -cZM -cZM -cZM -mwb -ihW -cZM -iIm -rKf -twe -twe -vHI -mhy -vTp -ndX -tvY -fhP -tvY -tvY -tvY -kJC -fqp -bvZ -aqE -sPt -sPt -ryF -sPt -sPt -sPt -iOo -xdG -fqp -dqT -xKr -jkx -asB -yjd -vfs -qHu -jhh -hTh -jhh -oos -cMh -rSo -tSy -jhV -hQA -wqs -ret -amt -iXf -wGu -oos -bgg -uJK -rYN -rYN -rYN -rYN -rYN -rYN -nfa -suV -suV -suV -suV -mtn -fou -nDt -nKc -xEP -wvs -oVY -oVY -oVY -qdd -nDO -nfa -rYN -rYN -rYN -rYN -rYN -fdu -fdu -kKF -kKF -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(100,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -dmE -fdz -tJq -lid -aUV -nDe -gMU -rWT -wJr -uvJ -mlq -hjV -nQN -ugU -hjV -wLG -lWT -kqa -dNX -cYm -lTi -udM -ktg -nqQ -wuu -toD -oUS -iVd -weo -adX -dMY -vGa -tKa -vTp -uwE -kNP -kDk -fPB -cVr -gOY -vaJ -fqp -idj -aqE -sPt -sPt -sPt -ijh -mIf -mIf -dEp -vvj -fqp -eCP -jhh -jhh -sCu -gTo -gTo -gTo -xKr -fQU -jhh -oos -vuT -wYE -cdS -gkR -cHG -pjD -pJj -iXf -egY -kcJ -oos -bgg -uJK -rYN -rYN -fdu -ljj -ljj -rYN -nfa -bxf -fny -fny -jRy -uhZ -kIG -lLU -suV -pvR -hQa -kIG -omz -suV -eKC -ijz -nfa -efG -rYN -rYN -rYN -rYN -fdu -fdu -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(101,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -ecs -vqE -ruO -cRo -wOu -gdf -nFx -pyz -hJf -jyZ -vZs -res -cTx -oEQ -res -vHg -oUS -kqa -aXy -wqg -anj -dou -wGS -ulq -anj -gXx -iIt -iVd -wbq -rKf -lLc -nYD -hfH -vTp -eIV -mTM -lCX -qyQ -mcj -teP -rFo -fqp -syc -sZs -rME -nZr -vpy -bMt -uWw -uWw -gZA -sCO -fqp -lcs -jhh -vAo -ujY -tyn -tyn -mBU -nSL -hms -ekV -iKp -iKp -iKp -iKp -iKp -iKp -iKp -oos -cYU -oos -oos -oos -bgg -iGs -fdu -fdu -ljj -txG -ljj -rYN -nfa -vmC -nEu -nEu -ibG -xgO -tOG -vmC -aBF -nfa -tOG -tOG -nfa -kty -hLG -kty -nfa -efG -efG -efG -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(102,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -oBC -fdz -vKI -mBD -jTN -nNO -nNO -lDn -nNO -nNO -bGv -twe -pMI -qmj -twe -vHg -oUS -kqa -cCJ -tJP -kKw -une -dOX -mNG -wSX -lLe -uRn -kqa -oUS -hYh -twe -ruP -lfE -vTp -wIq -wIq -ezR -vtt -ijm -muj -mkT -fqp -mxQ -nZK -sRQ -cqL -cqL -cqL -cqL -wSu -aMX -mxQ -fqp -nCy -gNz -gNz -gNz -gNz -fCD -psJ -sDJ -aHO -sDJ -iKp -xQK -tVu -giB -xnB -eDh -iKp -pqk -leY -bMa -eDp -oos -bgg -vYm -fdu -fdu -ljj -ljj -ljj -rYN -nfa -hux -eJO -kbM -jBU -jwu -kbM -kuZ -kbM -kbM -kbM -jIV -nfa -tbI -hpL -kty -efG -efG -efG -fdu -fdu -fdu -kKF -kKF -kKF -kKF -efG -efG -kKF -kKF -kKF -kKF -kKF -fdu -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(103,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -bWf -uYg -tov -aSb -pvp -lCI -aSb -pvp -cfY -wMf -wMf -oRz -jYz -vHg -oUS -kqa -aXy -anj -opK -lxZ -qPz -lxZ -ctR -tJP -iIt -wQN -oUS -rKf -hZo -kvz -wPr -gGy -cnc -kvz -loo -uea -kvz -xpj -kvz -ieu -kvz -hBB -kvz -kvz -kvz -kvz -kvz -kvz -oLx -kvz -phf -kvz -xpj -kvz -kvz -eyg -kvz -kvz -kvz -hOJ -gMs -lkU -tsY -bie -mOj -rCG -kJX -iKp -yav -vSk -tMN -dCL -enE -gME -pPO -fdu -fdu -fdu -fdu -fdu -rYN -nfa -gnQ -fBZ -suV -giF -pIj -bXw -bfR -tan -nxu -nxu -cCm -nfa -fRP -hpL -wkD -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -efG -efG -efG -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(104,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -ooR -fdu -fdu -fdu -fdu -fdu -bWf -uYg -tov -aSb -pvp -sYK -pXe -rhT -uFu -fho -fho -dEA -nBO -ooj -cZM -uUH -aXy -bzh -lAh -gdo -vQV -pLb -bCx -tpN -eIe -bHO -ydt -frK -edA -qkj -dxt -lUe -tlA -lUe -knV -bYU -cHp -xBg -bYU -hUU -nEc -qqM -bYU -plj -bYU -bYU -bYU -rOy -rKL -kaf -iLX -bYU -oZt -bYU -bYU -jVy -bYU -bYU -bYU -hez -kfL -iKp -gko -nXS -dFh -gec -llv -iKp -lvK -otT -qXX -tsv -oos -bgg -uJK -rYN -rYN -fdu -fdu -fdu -rYN -nfa -uJl -kIG -kIG -nBe -wHH -oBr -iwL -byl -pTn -eRn -sli -nfa -gNG -hpL -lHG -kKF -kKF -kKF -kKF -kKF -uaM -kKF -kKF -kKF -efG -efG -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(105,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -bWf -uYg -tov -aSb -pvp -lDn -aSb -pvp -iVX -ugp -iBN -tUq -jYz -vHg -oUS -kqa -aCD -anj -xjq -lxZ -swl -lKO -lSq -gXx -iIt -oUS -vAs -oVw -hZo -kvz -kvz -wZN -kvz -kvz -aVE -kvz -jFp -xpj -kvz -wPr -kvz -okF -lXZ -xwS -ago -vEB -kvz -lht -kvz -qLs -kvz -kvz -xpj -wZN -kvz -fCy -kvz -kvz -kvz -aVE -mkk -kaz -kaz -kaz -kaz -kaz -kaz -kaz -mqp -mqp -mqp -mqp -mqp -qUk -uJK -uJK -aca -eSK -eXj -bNJ -aca -aca -kqg -iKC -mnZ -rxK -cUd -nfa -nCx -qnh -cPq -jlQ -jHF -cPq -cPq -agU -lHG -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(106,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -cNV -fdz -fBv -lid -xGT -xWV -iiR -mAA -nNO -nNO -mHp -twe -pMI -qmj -twe -hkf -oUS -kqa -nxU -gXx -uDh -wOW -gDN -eco -nEA -lLe -uRn -oUS -vAs -cDR -twe -vjl -ocX -oBi -ikW -bHJ -bUX -rHb -vhb -oBi -dzz -jts -kvz -kvz -aGC -vEz -psa -kvz -kvz -jFp -enk -qnH -iTu -rIU -cpi -qnH -sJy -xHT -mIG -bDC -kvz -aVE -aFJ -kaz -uAC -nlX -fBc -gvh -uYW -kaz -pCx -pCx -nCv -rtl -xkb -nDy -pRp -xDk -aca -uDN -aaq -iEe -iEe -aca -cMM -oZC -ndc -wCw -tpM -knf -rBU -akQ -hcS -ibM -iHT -rQL -cPq -hpL -lHG -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(107,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -nmF -pZN -blm -mFN -nKU -nDe -mfW -rhI -xHo -abC -sUS -eWl -wIs -wIs -eWl -vHg -oUS -kqa -aXy -hxR -anj -dou -wGS -pLi -anj -tJP -iIt -oUS -vAs -rKf -eWl -fdu -fdu -umF -yar -yar -lJg -yar -yar -oBi -qDT -kvz -tlf -kvz -oup -kDn -akj -kvz -tlf -kvz -ras -qnH -aJP -nIy -nIy -mqz -nIy -kCP -xpF -rnJ -kvz -aVE -kvz -kaz -ehr -amP -soz -sCT -uJw -kaz -jtc -rRi -mrq -rlA -mqp -mqp -mqp -bgg -aca -sRi -qEC -iEe -iEe -aca -miA -jFD -aEb -idk -qgk -dkX -mNu -gAy -mhz -uWD -otG -eGQ -cPq -rLC -lHG -fdu -fdu -fdu -fdu -fdu -fdu -aNK -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(108,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -iiJ -fdz -kMX -mBD -ggj -aSb -iER -nNO -aSb -yap -sUS -hjV -cwx -wIs -hjV -wEX -pDh -shb -wbq -tpO -nFC -ktg -ktg -nqQ -tqU -wAk -oUS -oUS -koq -qJm -res -fdu -fdu -qcm -yar -acs -vQZ -ezp -fBi -nDz -lEd -lEd -lEd -lEd -lEd -lEd -lEd -lEd -lEd -lEd -lEd -hyn -lvi -emj -whI -emj -sTR -ojo -xpF -yhW -kvz -gwX -rxm -kaz -juH -okQ -slz -dhe -xdw -kaz -fPh -nxM -jGl -dPn -tVo -gNt -mqp -bgg -aca -pjR -qEC -aca -aca -aca -tld -jFD -pzH -jFD -jFD -bDH -pDO -tbs -qwm -kPX -otG -pgc -cPq -hpL -pOV -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(109,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -dxw -lVF -ted -gPQ -vjt -ted -vQy -tUq -res -qwB -eLG -res -mcK -vHg -kqa -oUS -aRU -nFC -oUS -oUS -oUS -tqU -txS -oUS -oUS -iXQ -twe -twe -fdu -fdu -qcm -dUN -dUN -pzp -dUN -aJy -nDz -ylG -ylG -ylG -ylG -ylG -lEd -icV -icV -icV -icV -icV -hyn -iGH -owW -owW -owW -rIe -sil -xpF -rcN -kvz -aVE -ctm -kaz -nRp -amP -fsS -ueo -gVS -kaz -opG -opG -kkU -heu -oDZ -ffJ -mqp -bgg -aca -dyX -mRl -xKu -pMe -edo -aAZ -gog -bHF -jFD -vkh -ery -rfa -xCq -xmg -qic -tFq -hFl -cPq -hpL -kty -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(110,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -dxw -rOY -suG -suG -suG -mqa -dxw -dxw -twe -pMI -qmj -twe -twe -beV -gLG -osT -ktd -nFC -qUJ -cYW -mOc -tqU -wEX -osT -osT -kVN -twe -rYN -fdu -fdu -qcm -yar -yaH -vwf -spP -ndC -nDz -ylG -ylG -ylG -ylG -ylG -lEd -icV -icV -icV -icV -icV -hyn -rqf -uDd -jxp -rRj -gzB -wKb -hQl -qnH -xtk -kMV -hnc -kaz -nqU -ckZ -sgc -yfC -gVS -kaz -opG -opG -jrA -sOb -hex -izd -mqp -bgg -aca -rHD -uDN -jDo -fqT -uDN -kYk -wey -aJq -eUi -wvX -cPq -cPq -cPq -cPq -cPq -cPq -cPq -cPq -pgs -kty -kty -kty -kty -kty -kty -kty -kty -kty -efG -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(111,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -foh -wBR -vRj -cbq -owp -bVW -ven -hNj -aCz -hNj -ven -ven -ven -ven -ven -twe -twe -apo -rzw -cpj -twe -rYN -fdu -fdu -jEn -lgR -xHd -imn -lgR -lgR -nDz -ylG -ylG -ylG -ylG -ylG -lEd -icV -icV -icV -icV -icV -hyn -ckL -owW -owW -owW -rIe -osW -xpF -pQW -kvz -aVE -pAL -kaz -oTr -vay -eFR -oQX -nRV -kaz -mqp -mqp -mqp -mqp -eEv -mqp -mqp -nDk -aca -eSK -bNJ -aca -aca -aca -nwJ -wGw -qFz -wGw -eAa -kty -bWg -weg -ybZ -dtn -wMS -hLZ -aFj -uLe -agR -jfK -noP -hmg -noP -kFM -shY -bgB -kty -efG -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(112,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -mKU -uXp -mna -gyn -cHA -lPW -bak -rJN -wGT -ncw -poZ -mJs -enK -eHq -hgU -dwt -shs -xnw -foh -fdu -fdu -fdu -rYN -rYN -rYN -fdu -oBi -wMM -gzy -fTQ -gzy -gzy -nDz -ylG -ylG -ylG -ylG -ylG -lEd -icV -icV -icV -icV -icV -hyn -bav -ulb -mNv -ulb -men -osW -xpF -yhW -kvz -aVE -kvz -wGw -aaa -wGw -kSh -fQm -waY -jnA -eTV -bTY -waY -waY -egE -waY -mXQ -muV -wGw -jFD -jFD -trW -kfo -tnG -jFD -jFD -sTu -xVe -xVe -txf -qYE -xnS -rqW -xnS -aaS -xnS -kty -kty -kty -sBk -dMM -dMM -dMM -vnE -shY -avV -kty -efG -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(113,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -pLN -sFZ -psF -psF -kdq -nCK -vqK -lBg -lBg -ohn -kzu -ohn -fKm -lBg -dgL -kYp -kdq -kLV -pLN -fdu -fdu -fdu -fdu -rYN -rYN -rYN -oBi -pVh -fUT -wTn -gzy -vyU -nDz -ylG -ylG -ylG -ylG -ylG -lEd -icV -icV -icV -icV -icV -hyn -bNO -cNy -voV -hGZ -dLW -osW -xpF -rnJ -uWz -hpI -bYU -frq -lFL -frq -ffB -jRQ -biF -jRQ -xvJ -vhD -dip -kMv -ogm -jRQ -jRQ -hYY -pHg -nmu -nEW -dNq -jRQ -nbA -jRQ -bPb -yiM -ceU -hBJ -kty -kty -xnS -wLX -eQr -sQv -xnS -rYN -rYN -kty -kYN -noP -paO -noP -fiD -kty -kty -kty -efG -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(114,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -pLN -iqa -ohn -ohn -iBi -mpL -eYu -eYu -eYu -ohn -ohn -ohn -bvR -eYu -eYu -tqx -xoS -tJB -pLN -fdu -fdu -fdu -fdu -rYN -rYN -rYN -oBi -eCj -aOw -anD -hYT -rjd -nDz -lEd -lEd -lEd -lEd -lEd -lEd -lEd -lEd -lEd -lEd -lEd -hyn -iTu -rZH -cpi -qnH -rqJ -klH -iTu -bcb -dUm -aVE -kvz -wGw -aaa -wGw -brt -jFD -cmb -nzb -arF -jFD -hFO -jFD -jFD -jFD -nzb -jFD -lGI -jFD -gaR -tkd -xWe -hIs -gGx -jMx -jFD -jFD -vAp -fEq -rYN -xnS -sII -mbD -wFF -xnS -rYN -rYN -kty -kty -kty -kty -kty -rvd -kty -rYN -efG -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(115,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -pLN -uaq -ohn -lrW -jIw -cUE -rcl -rcl -rcl -rcl -bHg -nTn -adC -rIn -rIn -pNt -xOf -aeI -pLN -fdu -fdu -fdu -fdu -rYN -rYN -rYN -oBi -oBi -oBi -oBi -oBi -oBi -oBi -rYN -rYN -rYN -rYN -iGq -qkC -tcF -mxa -lEd -hfx -ieu -nFu -kvz -lht -kvz -xpj -kvz -kvz -kvz -kvz -kvz -lgt -bly -meV -meV -meV -meV -meV -meV -meV -vkX -pBu -pBu -wpM -nOr -wpM -pBu -pBu -pBu -spZ -xsu -xsu -iRd -fEq -kbQ -anp -pVe -jFD -oQA -fEq -rYN -xnS -qAC -xnS -xnS -xnS -rYN -rYN -rYN -rYN -rYN -rYN -kty -jHc -kty -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(116,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -pLN -iqa -ohn -ohn -mQv -wWl -lBg -lBg -lBg -ohn -rkF -mQv -lBg -lBg -lBg -fmr -ohn -lLT -pLN -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -wRb -wRb -wRb -iGq -iGq -tFN -iGq -lEd -tyT -jPl -jPl -jPl -iYM -jPl -wRA -jPl -jPl -jPl -qQO -tmq -ykk -kvz -meV -bIw -meV -rCg -meV -fDC -meV -kEF -pBu -grJ -vsN -vsN -vog -ekE -wWZ -pBu -fdu -fdu -fdu -fdu -sVD -bwu -lsn -lFN -jFD -oQc -fEq -rYN -xnS -xnS -xnS -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -kty -jHc -kty -rYN -wpW -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(117,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -sFL -fdu -fdu -jWe -iqa -ohn -ohn -mQv -nEI -eYu -eYu -eYu -ohn -rkF -mQv -eYu -eYu -eYu -eZI -ohn -lLT -pLN -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -wRb -rIK -ilT -xxN -mCF -crH -crH -sqE -kbV -wZN -klU -kvz -ttw -kvz -xpj -kvz -kvz -kvz -lgt -kvz -kvz -wfv -meV -xzT -meV -pij -meV -oBh -meV -kEF -pBu -pvr -kUt -jFj -uqM -uqM -vsN -pUq -fdu -fdu -fdu -fdu -cwt -aTQ -sMr -qrd -xFQ -sFB -fEq -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -kty -jHc -kty -rYN -wpW -wpW -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(118,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -ven -xwv -mff -jaz -cHB -aeb -tBi -tBi -tBi -gDF -iKu -erb -tBi -tBi -smV -oCQ -tBi -nrZ -jWe -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -wRb -rIK -gFw -ant -ant -awS -hbQ -hbQ -hbQ -hbQ -hbQ -hbQ -hbQ -hbQ -hbQ -pTq -gqB -xpj -kbX -xpj -pTq -gqB -meV -lOa -eTa -kjO -vnh -alj -meV -kEF -pBu -gdI -ygP -pEr -uqM -uqM -vsN -dvt -fdu -fdu -fdu -fdu -fEq -vKp -cbJ -tJt -emB -asm -fEq -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -kty -jHc -kty -rYN -wpW -wpW -wpW -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(119,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -ven -aHV -tyf -jva -cmp -rrz -aCk -vbI -ucs -qvg -vBt -sZU -pnn -vbI -oQJ -uXp -fiS -ven -ven -fdu -fdu -fdu -fdu -fdu -rYN -rYN -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -wRb -wRb -hvj -wRb -uWR -uWR -hbQ -pNz -lQs -jBl -hbQ -pNz -lQs -jBl -hbQ -lYv -nFu -kvz -jGB -lLr -aJk -bNq -meV -nmb -mld -xBt -ivJ -cDs -aeC -kSi -pBu -yba -cfS -cSr -hgg -wrE -wEl -pBu -fdu -fdu -fdu -fdu -fdu -fdu -fco -eXJ -fco -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -kty -jHc -kty -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(120,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -pLN -upp -rwl -bPU -bPU -bPU -wkL -vVi -mUR -jFM -mUR -pDs -bPU -mna -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -fdu -fdu -fdu -efG -efG -wRb -tDe -wRb -wRb -wRb -hbQ -iCB -ygi -ygi -drN -ygi -ygi -ygi -hbQ -ipR -kvz -kvz -tPs -kvz -kvz -kvz -nUI -ifs -jyG -rVP -vIG -tAY -meV -kEF -pBu -pBu -pBu -fTi -pBu -pBu -pBu -pBu -fdu -fdu -fdu -fdu -fdu -fdu -fco -kLh -fco -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -kty -jHc -kty -kty -kty -kty -kty -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(121,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -pLN -hRV -pLN -fdu -fdu -fdu -fdu -pLN -qyh -wFN -sWM -pLN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -wRb -jXR -wRb -fdu -rYN -hbQ -iri -uMZ -bNZ -nGX -jaY -mUb -hek -kvb -gMs -kfj -gMs -fTM -nOp -bLU -stE -meV -meV -meV -meV -meV -ldg -meV -kEF -pBu -sQt -jkk -cSr -uVt -mPQ -icA -pBu -fdu -fdu -fdu -fdu -fdu -fdu -lPq -jrk -lPq -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -kty -jHc -kty -bUz -gAs -jmH -kty -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(122,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -ncu -sKL -wrY -fdu -fdu -fdu -fdu -byy -lMN -lMN -lKN -byy -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -sFL -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -wRb -aUE -wRb -fdu -rYN -hbQ -vTG -cgw -cgw -rRW -jFv -cgw -cgw -rRW -kvz -lht -kvz -gaD -kvz -kvz -okF -meV -udK -bjT -gSI -sCG -fIU -meV -kEF -eAZ -ezu -bMS -uLI -vsN -vsN -ioe -pBu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -kty -aHM -uTm -hLZ -kee -vgG -kty -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(123,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -ivX -gCo -siP -fdu -rYN -hbQ -pBM -sMU -sMU -scF -sMU -sMU -sMU -hbQ -tAm -lht -kvz -kvz -kvz -kvz -kvz -pKY -kjO -eVz -wfB -bDT -eRo -meV -kEF -pBu -hgG -koW -iqt -iqt -uqM -vsN -qnl -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -kty -shY -kty -lGc -shY -shY -kty -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(124,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -fdu -rYN -hbQ -bvh -pBF -bek -hbQ -bvh -pBF -bek -hbQ -sRe -qMl -wDG -mVY -wDG -obJ -keO -meV -vsz -rby -kjO -mFq -vsz -meV -vkd -mbr -eWw -kpy -qND -cuk -esJ -vsN -kHN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -kty -kty -kty -kty -kty -kty -kty -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(125,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -azv -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -fdu -fdu -kKF -kKF -kKF -kKF -kKF -rYN -rYN -hbQ -hbQ -hbQ -hbQ -hbQ -hbQ -hbQ -hbQ -hbQ -wbM -wbM -rzm -cWF -vmT -clO -clO -clO -clO -clO -htH -clO -clO -clO -kEF -pBu -prd -kpy -bOv -fei -esJ -vsN -kHN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -eDT -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(126,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -wbM -oOP -qFy -kwQ -cWF -sxR -aSV -nJm -clO -wWu -wcq -jiW -clO -bhr -uUW -xOl -clO -kEF -pBu -fpd -kpy -rNO -fei -esJ -vsN -kHN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -sFL -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(127,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -fdu -fdu -fdu -kKF -kKF -kKF -kKF -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -wbM -fcI -ehP -mpu -diC -sYE -koe -fun -xCl -vpH -vmY -vGf -nlB -fuh -adL -rnl -hKE -uwb -pBu -oqU -kpy -wss -ktj -esJ -vsN -kHN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(128,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -wbM -igg -xmT -kgW -wuL -qwe -ouv -mVp -clO -clO -clO -clO -clO -mbm -tsu -vxG -clO -ant -pBu -sLx -vZr -enx -eZy -uqM -vsN -hwS -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(129,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -rYN -wbM -elY -uoC -ouv -eKv -pcJ -ouv -ouv -vvr -beb -oPv -cJh -gSR -iJp -xIR -nhk -clO -ant -pBu -cmr -vsN -vsN -vsN -vsN -gqn -pBu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(130,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -wbM -jIt -lqn -flc -cWF -bRW -ktS -czx -gSR -cRI -obr -wwq -gSR -mbm -mQW -nhk -clO -wRb -pBu -pBu -hQn -kMD -kMD -xJd -pBu -pBu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(131,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -rYN -wbM -dDb -jhw -ufS -wbM -pxM -cWF -lKW -gSR -uBn -uka -hrw -gSR -clO -clO -clO -clO -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -qKe -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(132,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -gSR -pbx -bMk -wzB -jei -chK -uhm -ojP -tzo -wzB -wzB -mLu -gSR -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(133,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -aPB -uBx -nON -dYh -dYh -oOn -dYh -dYh -dYh -dYh -nAA -uBx -aPB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(134,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -uHO -lyR -mYu -sYu -vIp -vIp -vIp -vIp -vIp -tgT -pzO -lyR -uHO -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(135,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -uNK -uBx -mYu -pDk -pgW -pgW -pgW -pgW -pgW -gMR -pzO -uBx -uNK -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -bfe -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(136,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -gSR -ssB -mYu -rWD -pgW -pgW -pgW -pgW -pgW -gMR -loE -jBF -gSR -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(137,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -wdY -uBx -mYu -pDk -pgW -pgW -pgW -pgW -pgW -gMR -dOd -uBx -wdY -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(138,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -uHO -lyR -mYu -eaJ -jvp -jvp -jvp -jvp -jvp -mVh -dOd -lyR -uHO -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -sFL -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(139,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -fdu -sFL -fdu -fdu -fdu -fdu -fdu -ggb -uBx -xbe -wxJ -uuh -mrP -knH -knH -tgQ -uuh -fwd -uBx -ggb -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(140,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -rYN -gSR -hIb -pFr -mda -wzB -bHZ -lCa -gtC -ulL -wzB -kpr -smT -gSR -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(141,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -fdu -fdu -fdu -fdu -fdu -rYN -rYN -gSR -gSR -hzL -kRp -kRp -dZx -gSR -hzL -kRp -kRp -dZx -gSR -gSR -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(142,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(143,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(144,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -fdu -fdu -fdu -fdu -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(145,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(146,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(147,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(148,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(149,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(150,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(151,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(152,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(153,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(154,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -fdu -fdu -sFL -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(155,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(156,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(157,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(158,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(159,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(160,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(161,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(162,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -azA -tfj -nGt -ria -ria -aui -iLs -kJi -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -kKF -jcX -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(163,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -vLU -rkM -rmA -hwJ -hgy -txK -uwg -kAl -qhi -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(164,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -try -sSG -dbc -hRm -ckm -jIS -kZt -neq -roz -rMt -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(165,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -dVT -chQ -rbB -dsq -fmU -sqN -brR -wAi -uXB -oyz -hXY -xDX -jNp -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -qdj -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(166,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -iJD -huI -ofR -fWE -mdk -lYR -qvG -qvG -qVt -mJp -ohz -eNk -uas -utS -iAZ -cuM -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kdr -jpc -eTH -kdr -fdu -kKF -kKF -fdu -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(167,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -nyH -gTW -uNj -hWe -kWs -naj -dlc -uSr -uSr -uSr -mJp -eck -qRu -ibJ -jhz -itg -rRm -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kdr -vnK -uif -kdr -fdu -fdu -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(168,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rJg -pIc -pSh -iiN -fzZ -lzS -mJp -mJp -fqK -xGF -mJp -vwu -gcI -dIV -wvr -rIO -uWF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kdr -kdr -kdr -uif -bgn -kdr -rYN -fdu -fdu -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(169,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -epq -nlz -fqN -fwx -ggf -knp -wQX -vBA -vBA -vBA -mJp -tqO -kcu -hBV -ugt -nWv -ihh -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -kdr -qYm -kdr -dwS -bLE -kdr -rYN -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(170,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -nVK -bBR -hCc -cYP -xXK -hfg -sbS -sbS -bjE -mJp -wcR -qRu -kLZ -oqn -nsh -qSs -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -kdr -xcS -wai -dzx -wTF -kdr -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(171,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -shI -kVe -kSS -kBh -bDo -oiK -wcZ -vZO -qDX -aXo -trG -kAm -kSC -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -kdr -iWE -wSl -fBK -rXp -kdr -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(172,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -hCb -gJs -gWU -qcX -aLh -kXS -erU -erU -nim -iVK -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -kdr -hXu -uxf -dwU -sjB -kdr -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(173,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -wgu -xxB -alm -cwm -kQM -dVA -flh -tYg -pXI -fdu -fdu -fdu -fdu -fdu -fdu -hdM -hdM -hdM -hdM -kdr -tBF -kdr -xSw -baJ -kdr -kdr -kdr -kdr -kdr -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(174,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -acA -jcC -vTm -tMF -nFg -nFg -tAr -avT -fdu -fdu -fdu -fdu -rYN -hdM -hdM -rxh -whb -rxh -oWw -sFK -hdM -okL -mBZ -aon -aon -aon -cvd -kdr -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(175,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -aRL -xQu -ayi -ayi -aRL -hYF -hoK -hoK -auJ -aRL -aRL -ijl -lmh -nje -nje -izm -xCX -hdM -pyF -pyF -pyF -pyF -pyF -pUv -kdr -rYN -rYN -rYN -rYN -rYN -kdr -kdr -kdr -kdr -rYN -rYN -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(176,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -aRL -wRC -uHL -aks -ktD -obo -hjt -hjt -hjt -wVO -aRL -cEm -dZP -dZP -dZP -dZP -ydU -hdM -pyF -pyF -pyF -pyF -pyF -pUv -kdr -kdr -kdr -kdr -kdr -kdr -kdr -fBK -gFv -kdr -rYN -rYN -rYN -fdu -fdu -kKF -fdu -kKF -kKF -kKF -kKF -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(177,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -aRL -tEK -cHY -jUK -nFS -obG -mWr -tZA -fue -oEw -bPu -wgC -nQK -onM -taE -taE -faO -hdM -pyF -pyF -pyF -pyF -pyF -ckT -agq -aon -aon -hDW -aon -aon -vLT -jLB -smP -kdr -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(178,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -aRL -nai -muA -kPc -ktD -jRW -doD -ydi -doD -xEY -doD -uPF -dZP -rfK -dZP -dZP -gEN -hdM -pyF -pyF -pyF -pyF -pyF -oEV -kdr -kdr -kdr -kdr -kdr -kdr -kdr -xZf -knW -kdr -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(179,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -aRL -aRL -aRL -aRL -aRL -ePP -jeY -gHD -dUb -auH -oDP -hjj -dZP -lpm -dZP -dZP -rwJ -hdM -pyF -pyF -pyF -pyF -pyF -oEV -kdr -rYN -rYN -rYN -rYN -rYN -kdr -kdr -kdr -kdr -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(180,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -rYN -aRL -lbq -pnd -tnR -tbq -eCC -wKu -kUp -xWf -bYA -oOx -wBw -adw -iDv -hdM -fiq -vtL -fZC -gbr -gbr -tjC -kdr -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -rYN -fdu -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(181,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -rYN -rYN -aRL -nQq -iyy -oRn -erD -tue -gvi -aRL -hdM -xsZ -uMf -xsZ -drT -smJ -drT -aEX -kdr -kdr -kdr -kdr -kdr -kdr -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(182,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -aRL -aRL -aRL -aRL -aRL -aRL -aRL -aRL -hdM -gWq -goU -eOD -drT -dTB -mRo -vAe -drT -rYN -rYN -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(183,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -mSJ -lBP -ofd -vQF -jvo -hdM -iAd -bFh -oGv -drT -riQ -seu -tMI -drT -rYN -rYN -rYN -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(184,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fPR -iFB -smI -tjU -akw -kUx -gaU -fvW -nSp -aab -dTB -ums -wmQ -drT -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(185,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -ngh -rzo -pDq -fci -fPi -mKq -bFh -hZD -xkM -pMi -lrH -cTb -agH -qmt -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(186,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -nki -hdM -hdM -hdM -hdM -lbw -ylk -xkM -wlU -hjy -dTB -oSL -nwC -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(187,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -bBz -otl -qnc -ktC -jvo -hdM -bFh -bFh -rZN -bUD -xjW -bbn -mYV -oFP -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(188,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -ybn -pcC -wEk -eql -akw -pRb -nSl -xwZ -cZC -drT -luj -jpH -pFW -drT -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(189,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -bMn -kYn -oXN -saz -fPi -mKq -jdl -tqw -bUp -lMS -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(190,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -nki -hdM -hdM -hdM -hdM -iDv -dmH -cZC -pBR -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(191,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -sOQ -cGy -wtO -oqJ -jvo -hdM -vTz -bFh -eNG -pBR -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(192,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -iMe -axX -aQz -ooZ -akw -vdL -meU -bFh -cZC -pBR -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -sFL -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(193,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fQf -xiX -mIp -mGo -fPi -mKq -sjb -jSi -bsK -jXT -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(194,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -wUn -lhL -lhL -vrf -hdM -hdM -hdM -hdM -hdM -ngC -hst -ngC -hdM -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(195,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -kKF -fdu -fdu -fdu -cCl -gSu -dgu -wNi -jNx -qUV -nAF -jcE -giv -aNR -ceK -eJV -hdM -hdM -hdM -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(196,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -dqa -hfz -bsc -lyj -uzY -uzY -hIF -jLm -bFh -bFh -tDE -nAz -uBk -cHJ -hdM -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(197,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -keV -lhL -lhL -vrf -hdM -hdM -aJC -rxg -cnf -eeX -sYU -eeX -cnf -qCY -hdM -rYN -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(198,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -mHu -fUA -gCU -dcQ -dcQ -dcQ -egb -ckH -bIo -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(199,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -xih -rDM -tBg -mJd -hdM -qxT -fuf -oYx -tBg -vne -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(200,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -oHb -tSj -gBy -fdu -hdM -fdu -mHu -aot -mHu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(201,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -hdM -fdu -mHu -aot -mHu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(202,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -hdM -fdu -mHu -aot -tCe -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(203,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -hdM -fdu -mHu -ckH -rfr -lhL -mJd -fdu -fdu -cuB -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(204,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -yaa -fdu -mHu -pcf -rKY -lIr -nwO -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(205,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -eQw -fdu -mHu -jAf -rtX -lhL -mJd -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(206,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -liL -fdu -fdu -xTf -fdu -mHu -akw -mHu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(207,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -hdM -fdu -mHu -akw -mHu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(208,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -nki -fdu -eQw -akw -eQw -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(209,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -cta -jAf -oHb -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(210,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(211,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(212,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(213,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(214,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(215,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(216,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(217,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(218,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(219,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(220,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(221,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(222,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(223,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(224,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(225,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(226,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(227,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(228,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(229,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(230,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(231,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(232,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(233,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(234,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(235,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(236,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(237,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(238,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(239,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(240,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(241,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(242,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(243,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(244,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(245,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(246,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(247,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(248,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(249,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(250,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(251,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(252,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(253,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(254,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} -(255,1,1) = {" -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -fdu -"} diff --git a/maps/aurora/code/aurora.dm b/maps/aurora/code/aurora.dm deleted file mode 100644 index d7438ac8266..00000000000 --- a/maps/aurora/code/aurora.dm +++ /dev/null @@ -1,111 +0,0 @@ -/datum/map/aurora - name = "Aurora" - full_name = "NSS Aurora" - description = "You're aboard the NSS Aurora, a state-of-the-art station specializing in phoron research and acquisition. \ - It is staffed by NanoTrasen personnel and contractors from competing megacorporations. \ - Orbiting at the very edge of the Tau Ceti system, approximately 12 light-years away from Sol, \ - it is under the joint administration of the Republic of Biesel and the trans-stellar corporate conglomerate NanoTrasen." - path = "aurora" - - lobby_icons = list('icons/misc/titlescreens/aurora/nss_aurora.dmi', 'icons/misc/titlescreens/aurora/synthetics.dmi', 'icons/misc/titlescreens/aurora/tajara.dmi', 'icons/misc/titlescreens/aurora/vaurca.dmi') - lobby_transitions = 10 SECONDS - - station_levels = list(2, 3, 4, 5, 6, 7) - admin_levels = list(1) - contact_levels = list(3, 4, 5, 6, 7) - player_levels = list(2, 3, 4, 5, 6, 7, 8) - restricted_levels = list() - accessible_z_levels = list("2" = 60, "6" = 20, "7" = 20) - base_turf_by_z = list( - "1" = /turf/space, - "2" = /turf/space, - "3" = /turf/unsimulated/floor/asteroid/ash/rocky, - "4" = /turf/unsimulated/floor/asteroid/ash/rocky, - "5" = /turf/unsimulated/floor/asteroid/ash/rocky, - "6" = /turf/unsimulated/floor/asteroid/ash, - "7" = /turf/space, - "8" = /turf/space - ) - - station_name = "NSS Aurora" - station_short = "Aurora" - dock_name = "NTCC Odin" - dock_short = "Odin" - boss_name = "Central Command" - boss_short = "CentCom" - company_name = "NanoTrasen" - company_short = "NT" - - command_spawn_enabled = TRUE - command_spawn_message = "Welcome to the Odin! Simply proceed down and to the right to board the shuttle to your workplace!" - - station_networks = list( - NETWORK_CIVILIAN_MAIN, - NETWORK_CIVILIAN_SURFACE, - NETWORK_COMMAND, - NETWORK_REACTOR, - NETWORK_ENGINEERING, - NETWORK_ENGINEERING_OUTPOST, - NETWORK_STATION, - NETWORK_MEDICAL, - NETWORK_MINE, - NETWORK_RESEARCH, - NETWORK_RESEARCH_OUTPOST, - NETWORK_ROBOTS, - NETWORK_PRISON, - NETWORK_SECURITY, - NETWORK_SERVICE, - NETWORK_SUPPLY - ) - - shuttle_docked_message = "The scheduled crew transfer shuttle to %dock% has docked with the station. It will depart in approximately %ETA%." - shuttle_leaving_dock = "The crew transfer shuttle has left the station. Estimate %ETA% until the shuttle docks at %dock%." - shuttle_called_message = "A crew transfer to %dock% has been scheduled. The shuttle has been called. It will arrive in approximately %ETA%." - shuttle_recall_message = "The scheduled crew transfer has been cancelled." - emergency_shuttle_docked_message = "The emergency shuttle has docked with the station. You have approximately %ETA% to board the emergency shuttle." - emergency_shuttle_leaving_dock = "The emergency shuttle has left the station. Estimate %ETA% until the shuttle docks at %dock%." - emergency_shuttle_recall_message = "The emergency shuttle has been recalled." - emergency_shuttle_called_message = "An emergency evacuation shuttle has been called. It will arrive in approximately %ETA%." - - evac_controller_type = /datum/evacuation_controller/shuttle - - map_shuttles = list( - /datum/shuttle/autodock/ferry/escape_pod/pod/escape_pod1, - /datum/shuttle/autodock/ferry/escape_pod/pod/escape_pod2, - /datum/shuttle/autodock/ferry/escape_pod/pod/escape_pod3, - /datum/shuttle/autodock/ferry/emergency/aurora, - /datum/shuttle/autodock/ferry/arrival/aurora, - /datum/shuttle/autodock/ferry/supply/aurora, - /datum/shuttle/autodock/ferry/merchant_aurora, - /datum/shuttle/autodock/ferry/autoreturn/ccia, - /datum/shuttle/autodock/ferry/specops/ert_aurora, - /datum/shuttle/autodock/multi/antag/skipjack_aurora, - /datum/shuttle/autodock/multi/antag/burglar_aurora, - /datum/shuttle/autodock/multi/antag/merc_aurora, - /datum/shuttle/autodock/multi/legion, - /datum/shuttle/autodock/multi/research_aurora, - /datum/shuttle/autodock/multi/distress, - /datum/shuttle/autodock/multi/merc_aurora_elite - ) - - warehouse_basearea = /area/quartermaster/storage - -/datum/map/aurora/generate_asteroid() - // Create the chasms. - new /datum/random_map/automata/cave_system/chasms(null,0,0,3,255,255) - new /datum/random_map/automata/cave_system(null,0,0,3,255,255) - new /datum/random_map/automata/cave_system/chasms(null,0,0,4,255,255) - new /datum/random_map/automata/cave_system(null,0,0,4,255,255) - new /datum/random_map/automata/cave_system/chasms(null,0,0,5,255,255) - new /datum/random_map/automata/cave_system/high_yield(null,0,0,5,255,255) - new /datum/random_map/automata/cave_system/chasms/surface(null,0,0,6,255,255) - - // Create the deep mining ore distribution map. - new /datum/random_map/noise/ore(null, 0, 0, 5, 64, 64) - new /datum/random_map/noise/ore(null, 0, 0, 4, 64, 64) - new /datum/random_map/noise/ore(null, 0, 0, 3, 64, 64) - -/datum/map/aurora/finalize_load() - // generate an empty space Z - world.maxz++ - SEND_GLOBAL_SIGNAL(COMSIG_GLOB_NEW_Z, world.maxz) diff --git a/maps/aurora/code/aurora_holodeck.dm b/maps/aurora/code/aurora_holodeck.dm deleted file mode 100644 index dcb973f3d4c..00000000000 --- a/maps/aurora/code/aurora_holodeck.dm +++ /dev/null @@ -1,94 +0,0 @@ -/datum/map/aurora - holodeck_programs = list( - "emptycourt" = new /datum/holodeck_program(/area/holodeck/source_emptycourt, - list('sound/music/THUNDERDOME.ogg') - ), - "boxingcourt" = new /datum/holodeck_program(/area/holodeck/source_boxingcourt, - list('sound/music/THUNDERDOME.ogg') - ), - "basketball" = new /datum/holodeck_program(/area/holodeck/source_basketball, - list('sound/music/THUNDERDOME.ogg') - ), - "thunderdomecourt" = new /datum/holodeck_program(/area/holodeck/source_thunderdomecourt, - list('sound/music/THUNDERDOME.ogg') - ), - "beach" = new /datum/holodeck_program(/area/holodeck/source_beach), - "desert" = new /datum/holodeck_program(/area/holodeck/source_desert, - list( - 'sound/effects/wind/wind_2_1.ogg', - 'sound/effects/wind/wind_2_2.ogg', - 'sound/effects/wind/wind_3_1.ogg', - 'sound/effects/wind/wind_4_1.ogg', - 'sound/effects/wind/wind_4_2.ogg', - 'sound/effects/wind/wind_5_1.ogg' - ) - ), - "snowfield" = new /datum/holodeck_program(/area/holodeck/source_snowfield, - list( - 'sound/effects/wind/wind_2_1.ogg', - 'sound/effects/wind/wind_2_2.ogg', - 'sound/effects/wind/wind_3_1.ogg', - 'sound/effects/wind/wind_4_1.ogg', - 'sound/effects/wind/wind_4_2.ogg', - 'sound/effects/wind/wind_5_1.ogg' - ) - ), - "space" = new /datum/holodeck_program(/area/holodeck/source_space, - list( - 'sound/ambience/space/space_serithi.ogg', - 'sound/ambience/space/space1.ogg' - ) - ), - "picnicarea" = new /datum/holodeck_program(/area/holodeck/source_picnicarea, - list('sound/music/lobby/title2.ogg') - ), - "dininghall" = new /datum/holodeck_program(/area/holodeck/source_dininghall, - list('sound/music/lobby/title2.ogg') - ), - "theatre" = new /datum/holodeck_program(/area/holodeck/source_theatre), - "meetinghall" = new /datum/holodeck_program(/area/holodeck/source_meetinghall), - "courtroom" = new /datum/holodeck_program(/area/holodeck/source_courtroom, - list('sound/music/lobby/traitor.ogg') - ), - "burntest" = new /datum/holodeck_program(/area/holodeck/source_burntest, list()), - "wildlifecarp" = new /datum/holodeck_program(/area/holodeck/source_wildlife, list()), - "chapel" = new /datum/holodeck_program(/area/holodeck/source_chapel, - list( - 'sound/ambience/chapel/chapel1.ogg', - 'sound/ambience/chapel/chapel2.ogg', - 'sound/ambience/chapel/chapel3.ogg', - 'sound/ambience/chapel/chapel4.ogg' - ) - ), - "gym" = new /datum/holodeck_program(/area/holodeck/source_gym), - "battlemonsters" = new /datum/holodeck_program(/area/holodeck/source_battlemonsters, - list( - 'sound/music/battlemonsters_theme.ogg' - ), - FALSE - ), - "turnoff" = new /datum/holodeck_program(/area/holodeck/source_plating) - ) - - holodeck_supported_programs = list( - "Empty Court" = "emptycourt", - "Basketball Court" = "basketball", - "Thunderdome Court" = "thunderdomecourt", - "Boxing Ring" = "boxingcourt", - "Beach" = "beach", - "Desert" = "desert", - "Space" = "space", - "Picnic Area" = "picnicarea", - "Dining Hall" = "dininghall", - "Snow Field" = "snowfield", - "Theatre" = "theatre", - "Meeting Hall" = "meetinghall", - "Courtroom" = "courtroom", - "Chapel" = "chapel", - "Xavier Trasen Memorial Gymnasium" = "gym", - "Battle Monsters Duelling Arena" = "battlemonsters" - ) - holodeck_restricted_programs = list( - "Atmospheric Burn Simulation" = "burntest", - "Wildlife Simulation" = "wildlifecarp" - ) diff --git a/maps/aurora/code/aurora_lifts.dm b/maps/aurora/code/aurora_lifts.dm deleted file mode 100644 index 3e039c9840b..00000000000 --- a/maps/aurora/code/aurora_lifts.dm +++ /dev/null @@ -1,345 +0,0 @@ -/obj/turbolift_map_holder/aurora - depth = 2 - lift_size_x = 4 - lift_size_y = 4 - clear_objects = 0 - -//Main Lift -/obj/turbolift_map_holder/aurora/civilian - name = "Aurora lift placeholder - Main" - dir = WEST - - depth = 3 - lift_size_x = 4 - lift_size_y = 4 - - areas_to_use = list( - /area/turbolift/main_station, - /area/turbolift/main_mid, - /area/turbolift/main_arrivals - ) - -/obj/turbolift_map_holder/aurora/civilian_aux - name = "Aurora lift placeholder - Aux" - dir = WEST - - depth = 3 - lift_size_x = 4 - lift_size_y = 4 - - areas_to_use = list( - /area/turbolift/main_station_aux, - /area/turbolift/main_mid_aux, - /area/turbolift/main_arrivals_aux - ) - -/area/turbolift/main_arrivals - name = "Civilian Lift - Arrivals" - lift_announce_str = "Arriving at the Surface Level. Facilities on this floor include: Blue, Red and Yellow Docks, Cryogenics Storage, Cargo Bay, Primary Tool Storage, Recreational Facilities." - - lift_floor_label = "Surface Lvl." - lift_floor_name = "Surface Lvl." - -/area/turbolift/main_arrivals_aux - name = "Civilian Lift - Arrivals" - lift_announce_str = "Arriving at the Surface Level. Facilities on this floor include: Blue, Red and Yellow Docks, Cryogenics Storage, Cargo Bay, Primary Tool Storage, Recreational Facilities." - - lift_floor_label = "Surface Lvl." - lift_floor_name = "Surface Lvl." - -/area/turbolift/main_station - name = "Civilian Lift - Main" - lift_announce_str = "Arriving at the Main Level. Facilities on this floor include: Engineering, Medical, Security, Science, Command departments, Cargo Office, Chapel, Bar, Kitchen." - - lift_floor_label = "Main Lvl." - lift_floor_name = "Main Lvl." - - base_turf = /turf/simulated/floor/plating - -/area/turbolift/main_station_aux - name = "Civilian Lift - Main" - lift_announce_str = "Arriving at the Main Level. Facilities on this floor include: Engineering, Medical, Security, Science, Command departments, Cargo Office, Chapel, Bar, Kitchen." - - lift_floor_label = "Main Lvl." - lift_floor_name = "Main Lvl." - - base_turf = /turf/simulated/floor/plating - -/area/turbolift/main_mid - name = "Civilian Lift - Mid Level" - lift_announce_str = "Arriving at (Unknown). Facilities on this floor include: (Unknown)." - - lift_floor_label = "Under construction" - lift_floor_name = "Under construction" - -/area/turbolift/main_mid_aux - name = "Civilian Lift - Mid Level" - lift_announce_str = "Arriving at (Unknown). Facilities on this floor include: (Unknown)." - - lift_floor_label = "Under construction" - lift_floor_name = "Under construction" - -//Security -/obj/turbolift_map_holder/aurora/security - name = "Aurora lift placeholder - Security" - dir = SOUTH - - depth = 2 - - areas_to_use = list( - /area/turbolift/security_maintenance, - /area/turbolift/security_station - ) - -/area/turbolift/security_station - name = "Station - By Security" - lift_announce_str = "Arriving at the station level, by the Security department." - - lift_floor_label = "Security Main" - lift_floor_name = "Security Main" - -/area/turbolift/security_maintenance - name = "Maintenance - Below Security" - lift_announce_str = "Arriving at the maintenance level, below the Security department." - base_turf = /turf/simulated/floor/plating - - lift_floor_label = "Lower Sec" - lift_floor_name = "Lower Sec" - -//Research -/obj/turbolift_map_holder/aurora/research - name = "Aurora lift placeholder - Research" - dir = NORTH - - lift_size_x = 4 - lift_size_y = 4 - depth = 2 - - areas_to_use = list( - /area/turbolift/research_maintenance, - /area/turbolift/research_station - ) - -/area/turbolift/research_station - name = "Station - By Research" - lift_announce_str = "Arriving at the Research Main Level. Facilities in this floor include: Research and Development, Robotics, Telescience, Miscellaneous Research, Conference Room." - - lift_floor_label = "Main Level (Research)" - lift_floor_name = "Main Level (Research)" - -/area/turbolift/research_maintenance - name = "Maintenance - Below Research" - lift_announce_str = "Arriving at the Research Sub-Level. Facilities in this floor include: Xenoarchaeology, Toxins, Bomb Range, Test Range, Xenobiology, Xenobotany." - base_turf = /turf/simulated/floor/plating - - lift_floor_label = "Sub-Level (Research)" - lift_floor_name = "Sub-Level (Research)" - -//Engineering -/obj/turbolift_map_holder/aurora/engineering - name = "Aurora lift placeholder - Engineering" - dir = SOUTH - - lift_size_x = 5 - lift_size_y = 4 - depth = 2 - - areas_to_use = list( - /area/turbolift/engineering_maintenance, - /area/turbolift/engineering_station - ) - -/area/turbolift/engineering_station - name = "Station - By Engineering" - lift_announce_str = "Arriving at the Engineering Main Level. Facilities in this floor include: Engine Bay, Main Storage, Hard Storage, Atmospherics, Monitoring Room, Lobby." - - lift_floor_label = "Main Level (Engineering)" - lift_floor_name = "Main Level (Engineering)" - -/area/turbolift/engineering_maintenance - name = "Maintenance - Below Engineering" - lift_announce_str = "Arriving at the Engineering Sub-Level. Reminder: Stop located in Maintenance. Facilities in this floor include: Secondary Engine Bay, Break Room, Storage, Washroom." - - lift_floor_label = "Sub-Level (Engineering)" - lift_floor_name = "Sub-Level (Engineering)" - - base_turf = /turf/simulated/floor/plating - -//Cargo -/obj/turbolift_map_holder/aurora/cargo - name = "Aurora lift placeholder - Cargo" - dir = EAST - - lift_size_x = 5 - lift_size_y = 5 - depth = 3 - - areas_to_use = list( - /area/turbolift/cargo_station, - /area/turbolift/cargo_mid, - /area/turbolift/cargo_deliverys - ) - -/area/turbolift/cargo_station - name = "Station - By Cargo" - lift_announce_str = "Arriving at the Cargo Main Level. Facilities in this floor include: Cargo Office, Warehouse, Sorting Office, Resource Processing, Mining Station." - - lift_floor_label = "Main Level (Cargo)" - lift_floor_name = "Main Level (Cargo)" - - base_turf = /turf/simulated/floor/plating - -/area/turbolift/cargo_deliverys - name = "Arrivals - Cargo" - lift_announce_str = "Arriving at the Cargo Surface Level. Facilities in this floor include: Cargo Shuttle Dock, Cargo Bay." - - lift_floor_label = "Surface Level (Cargo)" - lift_floor_name = "Surface Level (Cargo)" - -/area/turbolift/cargo_mid - name = "Arrivals - Cargo" - lift_announce_str = "Arriving at (Unknown). Facilities in this floor include: (Unknown)." - - lift_floor_label = "Under Construction" - lift_floor_name = "Under Construction" - - -//Medical -/obj/turbolift_map_holder/aurora/medical - name = "Aurora lift placeholder - Medical" - dir = WEST - - lift_size_x = 4 - lift_size_y = 4 - depth = 3 - - areas_to_use = list( - /area/turbolift/medical_sub, - /area/turbolift/medical_station, - /area/turbolift/medical_interstitial - ) - -/area/turbolift/medical_station - name = "Medical Lift - Main" - lift_announce_str = "Arriving at the Medical Main Level. Facilities in this floor include: Lobby, Chemistry, Intensive Care Unit, General Treatment Unit, Surgery Wing, Consultation Wing." - - lift_floor_label = "Main Level (Medical)" - lift_floor_name = "Main Level (Medical)" - -/area/turbolift/medical_sub - name = "Medical Lift - Sub" - lift_announce_str = "Arriving at the Medical Sub-Level. Facilities in this floor include: Virology, Supervised Living Center, Long-term Morgue, Staff Wing, Briefing Room." - - lift_floor_label = "Sub-Level (Medical)" - lift_floor_name = "Sub-Level (Medical)" - - base_turf = /turf/simulated/floor/plating - -/area/turbolift/medical_interstitial - name = "Medical Lift - Interstitial" - lift_announce_str = "Arriving at the Medical Upper-Level. Facilities in this floor include: Psychiatry Wing, Psychiatrist's Office, Therapy Ward." - - lift_floor_label = "Upper-Level (Medical)" - lift_floor_name = "Upper-Level (Medical)" - -//AI Access -/obj/turbolift_map_holder/aurora/aiaccess - name = "Aurora lift placeholder - AI Access" - dir = NORTH - - lift_size_x = 4 - lift_size_y = 4 - depth = 2 - - areas_to_use = list( - /area/turbolift/ai_sub, - /area/turbolift/ai_station - ) - -/area/turbolift/ai_station - name = "AI Access Lift - Main" - lift_announce_str = "Arriving at the Command Main Level. Facilities in this floor include: Bridge, Command Dormitories, Command Recreational Area." - - lift_floor_label = "Main Level (Command)" - lift_floor_name = "Main Level (Command)" - -/area/turbolift/ai_sub - name = "AI Access Lift - Lower" - lift_announce_str = "Arriving at the Command Sub-Level. Facilities in this floor include: Messaging Server, Cyborg Charging Station, Artificial Intelligence Wing." - - lift_floor_label = "Sub-Level (Command)" - lift_floor_name = "Sub-Level (Command)" - - base_turf = /turf/simulated/floor/plating - - - -//Vault -/obj/turbolift_map_holder/aurora/vault - name = "Aurora lift placeholder - Vault" - dir = SOUTH - - lift_size_x = 4 - lift_size_y = 4 - depth = 2 - - areas_to_use = list( - /area/turbolift/vault_sub, - /area/turbolift/vault_station - ) - -/area/turbolift/vault_station - name = "Vault Access Lift - Main" - lift_announce_str = "Arriving at the Main Level. Facilities on this floor include: Engineering, Medical, Security, Science and Command departments, Kitchen, Bar, Cargo Office." - - lift_floor_label = "Main Lvl." - lift_floor_name = "Main Lvl." - - - -/area/turbolift/vault_sub - name = "Vault Access Lift - sub" - lift_announce_str = "Arriving at Vault Access. Facilities on this floor include: Vault. Alert: Secure Area ahead. Non-authorized personnel will be prosecuted." - - lift_floor_label = "Sub-Level (Vault)" - lift_floor_name = "Sub-Level (Vault)" - - base_turf = /turf/simulated/floor/plating - - -//Command -/obj/turbolift_map_holder/aurora/command - name = "Aurora lift placeholder - Command" - dir = NORTH - - lift_size_x = 4 - lift_size_y = 4 - depth = 3 - - areas_to_use = list( - /area/turbolift/command_sub, - /area/turbolift/command_mid, - /area/turbolift/command_station - ) - -/area/turbolift/command_station - name = "Command Lift - Main" - lift_announce_str = "Arriving at the Command Surface Level. Facilities in this floor include: Escape Pods, Meeting Room, Secure Docks." - - lift_floor_label = "Surface Level (Command)" - lift_floor_name = "Surface Level (Command)" - -/area/turbolift/command_sub - name = "Command Lift - Sub" - lift_announce_str = "Arriving at the Command Main Level. Facilities in this floor include: Bridge, Command Dormitories, Command Recreational Area." - - lift_floor_label = "Main Level (Command)" - lift_floor_name = "Main Level (Command)" - - base_turf = /turf/simulated/floor/plating - -/area/turbolift/command_mid - name = "Command Lift - Mid" - lift_announce_str = "Arriving at the (Command Unknown). Facilities in this floor include: (Unknown)" - lift_floor_label = "Under Construction" - lift_floor_name = "Under Construction" diff --git a/maps/aurora/code/aurora_shuttles.dm b/maps/aurora/code/aurora_shuttles.dm deleted file mode 100644 index 594abdfe136..00000000000 --- a/maps/aurora/code/aurora_shuttles.dm +++ /dev/null @@ -1,562 +0,0 @@ -//Pods. Credit to Chinsky for this macro that saved me from hell. - -/datum/shuttle/autodock/ferry/escape_pod/pod - category = /datum/shuttle/autodock/ferry/escape_pod/pod - sound_takeoff = 'sound/effects/rocket.ogg' - sound_landing = 'sound/effects/rocket_backwards.ogg' - warmup_time = 10 - -/obj/effect/shuttle_landmark/escape_pod/start - name = "Docked" - base_turf = /turf/simulated/floor/reinforced/airless - base_area = /area/mine/explored - -/obj/effect/shuttle_landmark/escape_pod/transit - name = "In transit" - base_turf = /turf/space/transit/east - -/obj/effect/shuttle_landmark/escape_pod/out - name = "Escaped" - base_turf = /turf/space/dynamic - -#define AURORA_ESCAPE_POD(NUMBER) \ -/datum/shuttle/autodock/ferry/escape_pod/pod/escape_pod##NUMBER { \ - name = "Escape Pod " + #NUMBER; \ - shuttle_area = /area/shuttle/escape_pod/pod##NUMBER; \ - location = 0; \ - dock_target = "escape_pod_" + #NUMBER; \ - arming_controller = "escape_pod_"+ #NUMBER +"_berth"; \ - waypoint_station = "escape_pod_"+ #NUMBER +"_start"; \ - landmark_transition = "escape_pod_"+ #NUMBER +"_interim"; \ - waypoint_offsite = "escape_pod_"+ #NUMBER +"_out"; \ -} \ -/obj/effect/shuttle_landmark/escape_pod/start/pod##NUMBER { \ - landmark_tag = "escape_pod_"+ #NUMBER +"_start"; \ - docking_controller = "escape_pod_" + #NUMBER +"_berth"; \ -} \ -/obj/effect/shuttle_landmark/escape_pod/out/pod##NUMBER { \ - landmark_tag = "escape_pod_"+ #NUMBER +"_out"; \ -} \ -/obj/effect/shuttle_landmark/escape_pod/transit/pod##NUMBER { \ - landmark_tag = "escape_pod_"+ #NUMBER +"_interim"; \ -} - -AURORA_ESCAPE_POD(1) -AURORA_ESCAPE_POD(2) -AURORA_ESCAPE_POD(3) -AURORA_ESCAPE_POD(4) - -//-// Transfer Shuttle //-// - -/datum/shuttle/autodock/ferry/emergency/aurora - name = "Escape Shuttle" - location = 1 - warmup_time = 10 - shuttle_area = /area/shuttle/escape - dock_target = "escape_shuttle" - waypoint_station = "nav_emergency_dock" - landmark_transition = "nav_emergency_interim" - waypoint_offsite = "nav_emergency_start" - -/obj/effect/shuttle_landmark/emergency/start - name = "Escape Shuttle Centcom Dock" - landmark_tag = "nav_emergency_start" - docking_controller = "centcom_dock" - base_turf = /turf/unsimulated/floor/plating - base_area = /area/centcom/evac - -/obj/effect/shuttle_landmark/emergency/interim - name = "In Transit" - landmark_tag = "nav_emergency_interim" - base_turf = /turf/space/transit/bluespace/south - -/obj/effect/shuttle_landmark/emergency/dock - name = "Escape Shuttle Dock" - landmark_tag = "nav_emergency_dock" - docking_controller = "escape_dock" - landmark_flags = SLANDMARK_FLAG_AUTOSET - -//-// Arrival Shuttle //-// - -/datum/shuttle/autodock/ferry/arrival/aurora - name = "Arrival Shuttle" - location = 1 - warmup_time = 10 - shuttle_area = /area/shuttle/arrival - move_time = 60 - dock_target = "arrival_shuttle" - waypoint_station = "nav_arrival_dock" - landmark_transition = "nav_arrival_interim" - waypoint_offsite = "nav_arrival_start" - -/obj/effect/shuttle_landmark/arrival/start - name = "Arrival Shuttle Centcom Dock" - landmark_tag = "nav_arrival_start" - docking_controller = "centcom_setup" - base_turf = /turf/unsimulated/floor/plating - base_area = /area/centcom/spawning - -/obj/effect/shuttle_landmark/arrival/interim - name = "In Transit" - landmark_tag = "nav_arrival_interim" - base_turf = /turf/space/transit/bluespace/west - -/obj/effect/shuttle_landmark/arrival/dock - name = "Arrival Shuttle Dock" - landmark_tag = "nav_arrival_dock" - docking_controller = "arrival_dock" - landmark_flags = SLANDMARK_FLAG_AUTOSET - -//-// Supply Shuttle //-// - -/datum/shuttle/autodock/ferry/supply/aurora - name = "Supply Shuttle" - location = 1 - shuttle_area = /area/supply/dock - dock_target = "supply_shuttle" - waypoint_station = "nav_supply_dock" - waypoint_offsite = "nav_supply_start" - -/obj/effect/shuttle_landmark/supply/start - name = "Supply Centcom Dock" - landmark_tag = "nav_supply_start" - base_turf = /turf/unsimulated/floor/plating - base_area = /area/centcom - -/obj/effect/shuttle_landmark/supply/dock - name = "Supply Shuttle Dock" - landmark_tag = "nav_supply_dock" - docking_controller = "cargo_bay" - landmark_flags = SLANDMARK_FLAG_AUTOSET - -//-// Merchant Shuttle //-// - -/datum/shuttle/autodock/ferry/merchant_aurora - name = "ICV Enterprise" - location = 1 - warmup_time = 10 - shuttle_area = /area/shuttle/merchant - move_time = 20 - dock_target = "merchant_shuttle" - waypoint_station = "nav_merchant_dock" - landmark_transition = "nav_merchant_interim" - waypoint_offsite = "nav_merchant_start" - -/obj/effect/shuttle_landmark/merchant/start - name = "Merchant Shuttle Base" - landmark_tag = "nav_merchant_start" - docking_controller = "merchant_station" - base_turf = /turf/space/dynamic - base_area = /area/template_noop - -/obj/effect/shuttle_landmark/merchant/interim - name = "In Transit" - landmark_tag = "nav_merchant_interim" - base_turf = /turf/space/transit/bluespace/west - -/obj/effect/shuttle_landmark/merchant/dock - name = "Second Deck Starboard Dock 1" - landmark_tag = "nav_merchant_dock" - docking_controller = "merchant_shuttle_dock" - base_turf = /turf/space - base_area = /area/space - -//-// CCIA Shuttle //-// - -/datum/shuttle/autodock/ferry/autoreturn/ccia - name = "SCC Shuttle" - location = 1 - warmup_time = 10 - shuttle_area = /area/shuttle/transport1 - dock_target = "centcom_shuttle" - waypoint_station = "nav_ccia_dock" - waypoint_offsite = "nav_ccia_start" - category = /datum/shuttle/autodock/ferry/autoreturn - -/obj/effect/shuttle_landmark/ccia/start - name = "Agent Shuttle Base" - landmark_tag = "nav_ccia_start" - docking_controller = "centcom_shuttle_bay" - base_turf = /turf/unsimulated/floor/plating - base_area = /area/centcom/ferry - -/obj/effect/shuttle_landmark/ccia/dock - name = "Second Deck Starboard Dock 2" - landmark_tag = "nav_ccia_dock" - docking_controller = "centcom_shuttle_dock_airlock" - landmark_flags = SLANDMARK_FLAG_AUTOSET - -//-// ERT Shuttle (the NT one) //-// - -/datum/shuttle/autodock/ferry/specops/ert_aurora - name = "Phoenix Shuttle" - location = 1 - warmup_time = 10 - shuttle_area = /area/shuttle/specops - dock_target = "specops_shuttle_port" - waypoint_station = "nav_horizon_dock_deck_3_port_5" - waypoint_offsite = "nav_ert_start" - -/obj/effect/shuttle_landmark/ert/start - name = "Phoenix Base" - landmark_tag = "nav_ert_start" - docking_controller = "specops_centcom_dock" - base_turf = /turf/unsimulated/floor/plating - base_area = /area/centcom/specops - -/obj/effect/shuttle_landmark/ert/dock - name = "Third Deck Port Dock 3" - landmark_tag = "nav_horizon_dock_deck_3_port_5" - docking_controller = "specops_dock_airlock" - special_dock_targets = list("Phoenix Shuttle" = "specops_shuttle_fore") - landmark_flags = SLANDMARK_FLAG_AUTOSET - -//-// Burglar Shuttle //-// - -/datum/shuttle/autodock/multi/antag/burglar_aurora - name = "Water Bear" - current_location = "nav_burglar_start" - landmark_transition = "nav_burglar_interim" - dock_target = "burglar_shuttle" - warmup_time = 10 - move_time = 75 - shuttle_area = /area/shuttle/burglar - destination_tags = list( - "nav_burglar_start", - "nav_burglar_surface", - "nav_burglar_under", - "nav_burglar_caverns", - "nav_burglar_blue" - ) - - announcer = "NDV Icarus" - arrival_message = "Attention, we just tracked a small target bypassing our defensive perimeter. Can't fire on it without hitting the station - you've got incoming visitors, like it or not." - departure_message = "Attention, your guests are pulling away - moving too fast for us to draw a bead on them. Looks like they're heading out of the system at a rapid clip." - -/obj/effect/shuttle_landmark/burglar/start - name = "Hideout" - landmark_tag = "nav_burglar_start" - docking_controller = "burglar_hideout" - base_turf = /turf/unsimulated/floor/plating - base_area = /area/antag/burglar - -/obj/effect/shuttle_landmark/burglar/interim - name = "In Transit" - landmark_tag = "nav_burglar_interim" - base_turf = /turf/space/transit/north - -/obj/effect/shuttle_landmark/burglar/surface - name = "Exposed Hull, Surface Aft of Cargo" - landmark_tag = "nav_burglar_surface" - landmark_flags = SLANDMARK_FLAG_AUTOSET - -/obj/effect/shuttle_landmark/burglar/under - name = "Under the Station, By Radiators" - landmark_tag = "nav_burglar_under" - base_turf = /turf/space - landmark_flags = SLANDMARK_FLAG_AUTOSET - -/obj/effect/shuttle_landmark/burglar/caverns - name = "Caverns, Fore of Mining" - landmark_tag = "nav_burglar_caverns" - landmark_flags = SLANDMARK_FLAG_AUTOSET - -/obj/effect/shuttle_landmark/burglar/blue - name = "Blue Dock" - landmark_tag = "nav_burglar_blue" - landmark_flags = SLANDMARK_FLAG_AUTOSET - docking_controller = "distress_shuttle_dock" - -//-// Raider Skipjack //-// - -/datum/shuttle/autodock/multi/antag/skipjack_aurora - name = "Skipjack" - current_location = "nav_skipjack_start" - landmark_transition = "nav_skipjack_interim" - dock_target = "raider_east_control" - warmup_time = 10 - move_time = 75 - shuttle_area = /area/shuttle/skipjack - destination_tags = list( - "nav_skipjack_start", - "nav_skipjack_surface", - "nav_skipjack_under", - "nav_skipjack_caverns", - "nav_skipjack_interstitial", - "nav_skipjack_toxins" - ) - - announcer = "NDV Icarus" - arrival_message = "Attention, we just tracked a small target bypassing our defensive perimeter. Can't fire on it without hitting the station - you've got incoming visitors, like it or not." - departure_message = "Attention, your guests are pulling away - moving too fast for us to draw a bead on them. Looks like they're heading out of the system at a rapid clip." - -/obj/effect/shuttle_landmark/skipjack/start - name = "Raider Hideout" - landmark_tag = "nav_skipjack_start" - docking_controller = "pirate_hideout" - base_turf = /turf/space/dynamic - base_area = /area/template_noop - -/obj/effect/shuttle_landmark/skipjack/interim - name = "In Transit" - landmark_tag = "nav_skipjack_interim" - base_turf = /turf/space/transit/north - -/obj/effect/shuttle_landmark/skipjack/surface - name = "Surface, Aft of Cargo" - landmark_tag = "nav_skipjack_surface" - landmark_flags = SLANDMARK_FLAG_AUTOSET - -/obj/effect/shuttle_landmark/skipjack/under - name = "Under the Station, By Radiators" - landmark_tag = "nav_skipjack_under" - landmark_flags = SLANDMARK_FLAG_AUTOSET - base_turf = /turf/space/dynamic - -/obj/effect/shuttle_landmark/skipjack/caverns - name = "Caverns, Aft of Mining" - landmark_tag = "nav_skipjack_caverns" - landmark_flags = SLANDMARK_FLAG_AUTOSET - -/obj/effect/shuttle_landmark/skipjack/interstitial - name = "Interstitial, Exposed Hull by Medical" - landmark_tag = "nav_skipjack_interstitial" - landmark_flags = SLANDMARK_FLAG_AUTOSET - -/obj/effect/shuttle_landmark/skipjack/toxins - name = "Caverns, By Bombrange" - landmark_tag = "nav_skipjack_toxins" - landmark_flags = SLANDMARK_FLAG_AUTOSET - -//-// Mercenary Shuttle //-// - -/datum/shuttle/autodock/multi/antag/merc_aurora - name = "ICV Raskolnikov" - current_location = "nav_merc_start" - landmark_transition = "nav_merc_interim" - dock_target = "merc_shuttle" - warmup_time = 10 - move_time = 75 - shuttle_area = /area/shuttle/mercenary - destination_tags = list( - "nav_merc_dock", - "nav_merc_start", - "nav_merc_surface", - "nav_merc_under", - "nav_merc_caverns" - ) - - announcer = "NDV Icarus" - arrival_message = "Attention, you have a large signature approaching the station - looks unarmed to surface scans. We're too far out to intercept - brace for visitors." - departure_message = "Attention, your visitors are on their way out of the system, burning delta-v like it's nothing. Good riddance." - -/obj/effect/shuttle_landmark/merc/start - name = "Mercenary Base" - landmark_tag = "nav_merc_start" - docking_controller = "merc_base" - base_turf = /turf/space/dynamic - base_area = /area/template_noop - -/obj/effect/shuttle_landmark/merc/interim - name = "In Transit" - landmark_tag = "nav_merc_interim" - base_turf = /turf/space/transit/north - -/obj/effect/shuttle_landmark/merc/dock - name = "Yellow Dock" - landmark_tag = "nav_merc_dock" - docking_controller = "nuke_shuttle_dock_airlock" - landmark_flags = SLANDMARK_FLAG_AUTOSET - -/obj/effect/shuttle_landmark/merc/surface - name = "Surface, Aft of Command" - landmark_tag = "nav_merc_surface" - landmark_flags = SLANDMARK_FLAG_AUTOSET - -/obj/effect/shuttle_landmark/merc/under - name = "Under the Station, At Radiators" - landmark_tag = "nav_merc_under" - landmark_flags = SLANDMARK_FLAG_AUTOSET - base_turf = /turf/space/dynamic - -/obj/effect/shuttle_landmark/merc/caverns - name = "Caverns, Fore of Security" - landmark_tag = "nav_merc_caverns" - landmark_flags = SLANDMARK_FLAG_AUTOSET - -//-// Merc Elite Shuttle //-// - -/datum/shuttle/autodock/multi/merc_aurora_elite - name = "Merc Elite" - current_location = "nav_mercelite_start" - warmup_time = 10 - shuttle_area = /area/shuttle/syndicate_elite - dock_target = "elite_shuttle_starboard" - destination_tags = list( - "nav_mercelite_start", - "nav_mercelite_command", - "nav_mercelite_merchant", - "nav_mercelite_yellow", - "nav_mercelite_green" - ) - -/obj/effect/shuttle_landmark/merc_elite/start - name = "Shuttle Hangar" - landmark_tag = "nav_mercelite_start" - docking_controller = "elite_shuttle_origin" - base_turf = /turf/unsimulated/floor/plating - base_area = /area/antag/mercenary - -/obj/effect/shuttle_landmark/merc_elite/command - name = "Command Surface - Maintenance" - landmark_tag = "nav_mercelite_command" - docking_controller = "command_surface_airlock" - landmark_flags = SLANDMARK_FLAG_AUTOSET - -/obj/effect/shuttle_landmark/merc_elite/merchant - name = "Merchant Dock" - landmark_tag = "nav_mercelite_merchant" - docking_controller = "merchant_shuttle_dock" - special_dock_targets = list("Merc Elite" = "elite_shuttle_port") - landmark_flags = SLANDMARK_FLAG_AUTOSET - -/obj/effect/shuttle_landmark/merc_elite/yellow - name = "Yellow Dock" - landmark_tag = "nav_mercelite_yellow" - docking_controller = "nuke_shuttle_dock_airlock" - landmark_flags = SLANDMARK_FLAG_AUTOSET - -/obj/effect/shuttle_landmark/merc_elite/green - name = "Emergency Services Dock" - landmark_tag = "nav_mercelite_green" - docking_controller = "green_dock_west" - landmark_flags = SLANDMARK_FLAG_AUTOSET - -//-// TCFL Dropship //-// - -/datum/shuttle/autodock/multi/legion - name = "Legion Shuttle" - current_location = "nav_legion_start" - warmup_time = 10 - move_time = 75 - ceiling_type = /turf/simulated/shuttle_roof/legion - shuttle_area = /area/shuttle/legion - dock_target = "legion_shuttle" - landmark_transition = "nav_legion_interim" - destination_tags = list( - "nav_legion_start", - "nav_legion_green", - "nav_legion_merchant", - "nav_legion_medical" - ) - -/obj/effect/shuttle_landmark/legion/start - name = "BLV The Tower" - landmark_tag = "nav_legion_start" - docking_controller = "legion_hangar" - base_turf = /turf/unsimulated/floor/plating - base_area = /area/centcom/legion/hangar5 - -/obj/effect/shuttle_landmark/legion/interim - name = "In Transit" - landmark_tag = "nav_legion_interim" - base_turf = /turf/space/transit/bluespace/west - -/obj/effect/shuttle_landmark/legion/green - name = "Third Deck Port Dock 1" - landmark_tag = "nav_legion_green" - docking_controller = "legion_shuttle_dock" - landmark_flags = SLANDMARK_FLAG_AUTOSET - -/obj/effect/shuttle_landmark/legion/merchant - name = "Merchant Dock" - landmark_tag = "nav_legion_merchant" - docking_controller = "merchant_shuttle_dock" - special_dock_targets = list("Legion Shuttle" = "legion_shuttle_aft_airlock") - landmark_flags = SLANDMARK_FLAG_AUTOSET - -/obj/effect/shuttle_landmark/legion/medical - name = "External Airlock by Medical" - landmark_tag = "nav_legion_medical" - landmark_flags = SLANDMARK_FLAG_AUTOSET - -//-// Research Shuttle //-// - -/datum/shuttle/autodock/multi/research_aurora - name = "Research Shuttle" - current_location = "nav_research_dock" - warmup_time = 10 - move_time = 60 - shuttle_area = /area/shuttle/research - dock_target = "science_shuttle" - landmark_transition = "nav_research_interim" - destination_tags = list( - "nav_research_dock", - "nav_research_yellow", - "nav_research_away" - ) - -/obj/effect/shuttle_landmark/research/start - name = "Research Dock" - landmark_tag = "nav_research_dock" - docking_controller = "science_bridge" - base_turf = /turf/unsimulated/floor/asteroid/ash - base_area = /area/mine/explored - -/obj/effect/shuttle_landmark/research/yellow - name = "Yellow Dock" - landmark_tag = "nav_research_yellow" - docking_controller = "yellow_shuttle_dock_airlock" - landmark_flags = SLANDMARK_FLAG_AUTOSET - -/obj/effect/shuttle_landmark/research/interim - name = "In Transit" - landmark_tag = "nav_research_interim" - base_turf = /turf/space/transit/north - -/obj/effect/shuttle_landmark/research/dock - name = "Away Site" - landmark_tag = "nav_research_away" - landmark_flags = SLANDMARK_FLAG_AUTOSET - -//-// Distress Team Shuttle //-// - -/datum/shuttle/autodock/multi/distress - name = "Distress Shuttle" - current_location = "nav_distress_away" - warmup_time = 10 - move_time = 45 - dock_target = "distress_shuttle_aft" - shuttle_area = /area/shuttle/distress - landmark_transition = "nav_distress_interim" - destination_tags = list( - "nav_distress_away", - "nav_distress_green", - "nav_distress_blue" - ) - -/obj/effect/shuttle_landmark/distress/start - name = "Distress Preparation Wing" - landmark_tag = "nav_distress_away" - docking_controller = "distress_shuttle_origin" - base_turf = /turf/unsimulated/floor/plating - base_area = /area/centcom/distress_prep - -/obj/effect/shuttle_landmark/distress/interim - name = "In Transit" - landmark_tag = "nav_distress_interim" - base_turf = /turf/space/transit/bluespace/west - -/obj/effect/shuttle_landmark/distress/green - name = "Emergency Services Dock" - landmark_tag = "nav_distress_green" - docking_controller = "green_dock_west" - special_dock_targets = list("Distress Shuttle" = "distress_shuttle_fore") - landmark_flags = SLANDMARK_FLAG_AUTOSET - -/obj/effect/shuttle_landmark/distress/blue - name = "First Deck Port Hangar Bay 2b" - landmark_tag = "nav_distress_blue" - special_dock_targets = list("Distress Shuttle" = "distress_shuttle_fore") - landmark_flags = SLANDMARK_FLAG_AUTOSET - base_turf = /turf/simulated/floor/plating diff --git a/maps/aurora/code/aurora_unittest.dm b/maps/aurora/code/aurora_unittest.dm deleted file mode 100644 index 74ddac3bc33..00000000000 --- a/maps/aurora/code/aurora_unittest.dm +++ /dev/null @@ -1,65 +0,0 @@ -/datum/map/aurora - - // This is formatted strangely because it fails the indentation test if it's formatted properly. - // ¯\_(ツ)_/¯ - - ut_environ_exempt_areas = list(/area/space - ,/area/solar - ,/area/shuttle - ,/area/holodeck - ,/area/supply/station - ,/area/tdome - ,/area/centcom - ,/area/antag - ,/area/prison - ,/area/supply/dock - ,/area/turbolift - ,/area/mine - ) - ut_apc_exempt_areas = list(/area/construction - ,/area/medical/genetics - ) - ut_atmos_exempt_areas = list(/area/maintenance - ,/area/storage - ,/area/engineering/atmos/storage - ,/area/rnd/test_area - ,/area/construction - ,/area/server - ,/area/security/nuke_storage - ,/area/tcommsat/chamber - ,/area/bridge/aibunker - ,/area/engineering/cooling - ,/area/outpost/research/emergency_storage - ,/area/bridge/selfdestruct - ,/area/medical/cryo - ,/area/medical/patient_c - ,/area/security/penal_colony - ) - ut_fire_exempt_areas = list( - /area/maintenance, - /area/rnd/isolation_a, - /area/rnd/isolation_b, - /area/rnd/isolation_c, - /area/rnd/test_area, - /area/rnd/xenobiology/cells, - /area/security/penal_colony, - /area/turret_protected/tcomsat - ) - -/datum/unit_test/zas_area_test/aurora - map_path = "aurora" -/datum/unit_test/zas_area_test/aurora/arrival_maint - name = "ZAS: Arrival Maintenance" - area_path = /area/maintenance/arrivals - -/datum/unit_test/zas_area_test/aurora/emergency_shuttle - name = "ZAS: Emergency Shuttle" - area_path = /area/shuttle/escape - -/datum/unit_test/zas_area_test/aurora/zas_area_test - name = "ZAS: Cargo Bay" - area_path = /area/quartermaster/storage - -/datum/unit_test/zas_area_test/aurora/cargo_maint - name = "ZAS: Cargo Maintenance" - area_path = /area/maintenance/cargo diff --git a/maps/event/generic_dock/code/generic_dock.dm b/maps/event/generic_dock/code/generic_dock.dm index 9089cb7d0aa..4b5d2da9580 100644 --- a/maps/event/generic_dock/code/generic_dock.dm +++ b/maps/event/generic_dock/code/generic_dock.dm @@ -24,7 +24,3 @@ company_short = "NT" use_overmap = FALSE - - map_shuttles = list( - /datum/shuttle/autodock/ferry/arrival/aurora - ) diff --git a/maps/runtime/code/runtime.dm b/maps/runtime/code/runtime.dm index 93c351ff0c7..589c1583e75 100644 --- a/maps/runtime/code/runtime.dm +++ b/maps/runtime/code/runtime.dm @@ -49,3 +49,20 @@ map_shuttles = list(/datum/shuttle/autodock/overmap/runtime) warehouse_basearea = /area/storage/primary + + +/area/turbolift/main_station + name = "Civilian Lift - Main" + lift_announce_str = "Arriving at the Main Level. Facilities on this floor include: Engineering, Medical, Security, Science, Command departments, Cargo Office, Chapel, Bar, Kitchen." + + lift_floor_label = "Main Lvl." + lift_floor_name = "Main Lvl." + + base_turf = /turf/simulated/floor/plating + +/area/turbolift/main_mid + name = "Civilian Lift - Mid Level" + lift_announce_str = "Arriving at (Unknown). Facilities on this floor include: (Unknown)." + + lift_floor_label = "Under construction" + lift_floor_name = "Under construction"